19 lines
444 B
TypeScript
19 lines
444 B
TypeScript
|
// 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>
|
||
|
)
|
||
|
}
|