29 lines
505 B
JavaScript
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;
|