Files
stream.graff.tech-new/client/src/components/icons/XMarkIcon.tsx
T

16 lines
327 B
TypeScript

function XMarkIcon() {
return (
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5 15 15 5M5 5l10 10"
stroke="currentColor"
strokeWidth={1.2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
export default XMarkIcon;