mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Metrics = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M3 3v18h18" />
|
|
<path d="M18 9l-5 5-4-4-3 3" />
|
|
</Icon>
|
|
)
|