Files
metabuilder/fakemui/icons/Done.tsx
2025-12-30 14:09:12 +00:00

9 lines
192 B
TypeScript

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