Files
metabuilder/icons/react/fakemui/Validate.tsx
2026-03-09 22:30:41 +00:00

14 lines
310 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
/**
* Validate icon - represents validation/verification
*/
export const Validate = (props: IconProps) => (
<Icon {...props}>
<path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" />
</Icon>
)
export default Validate