33 lines
632 B
TypeScript
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;
|