Add components
This commit is contained in:
28
frontend/src/app/components/icons/arrowDown.jsx
Normal file
28
frontend/src/app/components/icons/arrowDown.jsx
Normal file
@@ -0,0 +1,28 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user