mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
9 lines
193 B
TypeScript
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>
|
|
)
|