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

7 lines
No EOL
334 B
TypeScript
Executable file

import React from 'react';
export const PlusIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={2} stroke="currentColor" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
</svg>
);