Files
metabuilder/fakemui/icons/Close.tsx
2025-12-30 12:43:39 +00:00

8 lines
435 B
TypeScript

import { Icon, type IconProps } from './Icon'
export const Close = (props: IconProps) => (
<Icon {...props}>
<path d="M205.65686 194.34314a8.00035 8.00035 0 0 1-11.31372 11.31372L128 139.31371l-66.34314 66.34315a8.00035 8.00035 0 0 1-11.31372-11.31372L116.68629 128l-66.34315-66.34314a8.00035 8.00035 0 0 1 11.31372-11.31372L128 116.68629l66.34314-66.34315a8.00035 8.00035 0 0 1 11.31372 11.31372L139.31371 128Z" />
</Icon>
)