mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
14 lines
310 B
TypeScript
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
|