19 lines
408 B
TypeScript
19 lines
408 B
TypeScript
export function CancelIcon(props: JSX.IntrinsicElements['svg']) {
|
|
return (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
>
|
|
<path d="m6 18 6-6m0 0 6-6m-6 6L6 6m6 6 6 6" />
|
|
</svg>
|
|
);
|
|
}
|