We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420a156 commit 3bc32a7Copy full SHA for 3bc32a7
src/icons/Download.tsx
@@ -0,0 +1,9 @@
1
+import React, { SVGProps } from 'react';
2
+
3
+export function Download(props: SVGProps<SVGSVGElement>) {
4
+ return (
5
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" {...props}>
6
+ <path d="M19 9L15 9 15 3 9 3 9 9 5 9 12 17zM4 19H20V21H4z" />
7
+ </svg>
8
+ );
9
+}
src/icons/index.ts
@@ -2,6 +2,7 @@ export * from './Check';
export * from './ChevronDown';
export * from './Circle';
export * from './Close';
+export * from './Download';
export * from './Error';
export * from './Hide';
export * from './Info';
0 commit comments