Files
metabuilder/fakemui/icons/Check.tsx

9 lines
193 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Check = (props: IconProps) => (
<Icon {...props}>
<polyline points="216 72 104 184 48 128" />
</Icon>
)