Update dependencies and import paths
This commit is contained in:
21
src/icons/Download.tsx
Normal file
21
src/icons/Download.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user