13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
export function CancelIcon(props: JSX.IntrinsicElements["svg"]) {
|
|
return (
|
|
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeWidth="2"
|
|
d="m5 5 14 14m0-14L5 19"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|