in src/components/Icons/download-icon.tsx [3:36]
export function DownloadIcon(props: any) {
return (
<span {...props}>
<svg width="1rem" height="1rem" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="download">
<path
id="Vector"
d="M2.5 9L2.5 13.5H13.5V9"
stroke="currentColor"
strokeWidth="1.2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
id="Vector_2"
d="M5 7L8 10L11 7"
stroke="currentColor"
strokeWidth="1.2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
id="Vector_3"
d="M8 10V2.49996"
stroke="currentColor"
strokeWidth="1.2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</svg>
</span>
);
}