commerce/site/components/icons/ChevronDown.tsx
2022-04-20 15:29:34 +05:00

21 lines
393 B
TypeScript

const ChevronDown = ({ ...props }) => {
return (
<svg
viewBox="0 0 24 24"
width="24"
height="24"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
shapeRendering="geometricPrecision"
{...props}
>
<path d="M6 9l6 6 6-6" />
</svg>
);
};
export default ChevronDown;