Files
Frontend-Internal-Developer…/frontend/src/app/components/icons/arrowDown.jsx
2026-03-02 15:33:21 +08:00

29 lines
505 B
JavaScript

const ArrowDownIcon = ({
width = 18,
height = 18,
color = "#4C4F6B",
...props
}) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={width}
height={height}
viewBox="0 0 18 18"
fill="none"
{...props}
>
<path
d="M1.55859 5.2793L9.00047 12.7212L16.4423 5.2793"
stroke={color}
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default ArrowDownIcon;