Files
actual/packages/component-library/src/icons/v0/Delete.tsx
2025-03-06 18:16:59 +00:00

23 lines
473 B
TypeScript

import * as React from 'react';
import type { SVGProps } from 'react';
export const SvgDelete = (props: SVGProps<SVGSVGElement>) => (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
style={{
color: 'inherit',
...props.style,
}}
>
<path
fill="none"
stroke="currentColor"
d="m2 2 20 20M22 2 2 22"
strokeLinecap="round"
strokeMiterlimit={10}
strokeWidth={4}
/>
</svg>
);