mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
23 lines
473 B
TypeScript
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>
|
|
);
|