initial commit

This commit is contained in:
2023-04-04 20:58:26 +02:00
parent 1259264531
commit b7034a0205
23 changed files with 8661 additions and 427 deletions

View File

@@ -0,0 +1,17 @@
export const ChevronDown = () => {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
<g clipPath="url(#a)">
<path
fill="#BDC1C7"
d="M5.51 9.46a1 1 0 0 1 1.64-.77l5.36 4.48 5.37-4.32A1 1 0 0 1 19.3 9a1 1 0 0 1-.15 1.46l-6 4.83a1 1 0 0 1-1.27 0l-6-5a1 1 0 0 1-.36-.83Z"
/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
};