mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
13 lines
449 B
TypeScript
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>
|
|
)
|