main

mattermost/focalboard

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

check.tsx

TLDR

This file exports a functional component called CheckIcon that renders an SVG check mark icon.

Methods (if applicable)

N/A

Classes (if applicable)

N/A

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

import React from 'react'

import './check.scss'

export default function CheckIcon(): JSX.Element {
    return (
        <svg
            xmlns='http://www.w3.org/2000/svg'
            className='CheckIcon Icon'
            viewBox='0 0 100 100'
        >
            <polyline points='20,60 40,80 80,40'/>
        </svg>
    )
}