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

8 lines
362 B
TypeScript
Executable file

import React from 'react';
export const ClockIcon: 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="M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
);