main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

checkIcon.tsx

TLDR

This file exports a React functional component called Check. It renders an icon from the CompassIcon component with the icon prop set to 'check'.

END

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

import React from 'react'

import CompassIcon from './compassIcon'

// TODO use this icon instead of check.tsx
export default function Check(): JSX.Element {
    return (
        <CompassIcon
            icon='check'
            className='CheckIconCompass'
        />
    )
}