Files
metabuilder/fakemui/icons/Delete.tsx
2025-12-30 14:09:12 +00:00

13 lines
449 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Delete = (props: IconProps) => (
<Icon {...props}>
<path d="M216 56 L40 56" />
<path d="M104 104 L104 168" />
<path d="M152 104 L152 168" />
<path d="M200 56 L200 208 C200 217.9 191.9 226 182 226 L74 226 C64.1 226 56 217.9 56 208 L56 56" />
<path d="M168 56 L168 40 C168 31.2 160.8 24 152 24 L104 24 C95.2 24 88 31.2 88 40 L88 56" />
</Icon>
)