13 lines
328 B
TypeScript
13 lines
328 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="1.5"
|
|
d="m4.75 4.75 14.5 14.5m0-14.5-14.5 14.5"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|