modcomms/frontend/components/icons/XIcon.tsx
2025-12-18 16:51:27 +00:00

7 lines
332 B
TypeScript
Executable file

import React from 'react';
export const XIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
);