Add components

This commit is contained in:
Laux Dev
2026-03-02 15:33:21 +08:00
parent f16b78834c
commit 1023990822
20 changed files with 1234 additions and 164 deletions

View 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;