Skip to content

Commit 3bc32a7

Browse files
committed
feat(icons): added download icon
1 parent 420a156 commit 3bc32a7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/icons/Download.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export * from './Check';
22
export * from './ChevronDown';
33
export * from './Circle';
44
export * from './Close';
5+
export * from './Download';
56
export * from './Error';
67
export * from './Hide';
78
export * from './Info';

0 commit comments

Comments
 (0)