mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
8 lines
435 B
TypeScript
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>
|
|
)
|