main

mattermost/focalboard

Last updated at: 28/12/2023 01:34

checkIcon.tsx

TLDR

This file contains a single functional component called Check, which returns a CompassIcon component with the icon set to 'check' and the CSS class name set to 'CheckIconCompass'.

Methods (if applicable)

None

Classes (if applicable)

None

// 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'
        />
    )
}