Files
metabuilder/fakemui/icons/X.tsx

10 lines
235 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const X = (props: IconProps) => (
<Icon {...props}>
<line x1="200" y1="56" x2="56" y2="200" />
<line x1="200" y1="200" x2="56" y2="56" />
</Icon>
)