29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
interface IconProps {
|
|
className?: string;
|
|
}
|
|
|
|
function ChevronDownIcon({ className }: IconProps) {
|
|
return (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<g id="Icon/Chevron_Down">
|
|
<path
|
|
id="Vector 106 (Stroke)"
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M11.2929 16.7071C11.6834 17.0976 12.3166 17.0976 12.7071 16.7071L19.7071 9.70713C20.0976 9.31661 20.0976 8.68344 19.7071 8.29292C19.3165 7.90239 18.6834 7.90239 18.2928 8.29292L12 14.5858L5.70711 8.29292C5.31658 7.90239 4.68342 7.90239 4.29289 8.29292C3.90237 8.68344 3.90237 9.31661 4.29289 9.70713L11.2929 16.7071Z"
|
|
fill="white"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ChevronDownIcon;
|