Files
IRTH/client/src/components/icons/ChevronDownIcon.tsx
T
2024-06-14 13:54:55 +05:00

33 lines
632 B
TypeScript

interface ChevronDownIconProps {
className?: string;
width?: string;
height?: string;
}
const ChevronDownIcon = ({
className,
width = "24",
height = "24",
}: ChevronDownIconProps) => {
return (
<svg
className={`${!className ? "" : className}`}
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19 9.00002L12 16L5 9.00002"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default ChevronDownIcon;