page-assist/src/icons/Download.tsx
2024-02-23 23:25:17 +05:30

22 lines
500 B
TypeScript

type Props = {
className: string
}
export const Download: React.FC<Props> = ({ className }) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24"
className={className}>
<path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"></path>
<path d="M7 10L12 15 17 10"></path>
<path d="M12 15L12 3"></path>
</svg>
)
}