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

7 lines
No EOL
336 B
TypeScript
Executable file

import React from 'react';
export const ChevronDownIcon = (props: React.SVGProps<SVGSVGElement>) => (
<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="M19.5 8.25l-7.5 7.5-7.5-7.5" />
</svg>
);