Skip to content

Commit f7ec9d8

Browse files
committed
feat: add ExportOutlined icon component and update index exports
- Introduced a new ExportOutlined icon component for enhanced iconography options. - Updated the icon index file to include the new ExportOutlined export. - Modified the main index file to export the icon module, improving accessibility of icon components.
1 parent 1495335 commit f7ec9d8

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
export const ExportOutlined = () => (
2+
<svg
3+
width="1em"
4+
height="1em"
5+
viewBox="0 0 24 24"
6+
fill="none"
7+
xmlns="http://www.w3.org/2000/svg"
8+
data-icon="ExportOutlined"
9+
>
10+
<path
11+
d="M2 5a3 3 0 0 1 3-3h12a1 1 0 1 1 0 2H5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h12a1 1 0 1 1 0 2H5a3 3 0 0 1-3-3V5Z"
12+
fill="currentColor"
13+
></path>
14+
<path
15+
d="m19.086 11-2.793-2.793a1 1 0 0 1 1.414-1.414l4.5 4.5a1 1 0 0 1-.043 1.454l-4.5 4a1 1 0 0 1-1.328-1.494L18.87 13H9a1 1 0 1 1 0-2h10.086Z"
16+
fill="currentColor"
17+
></path>
18+
</svg>
19+
)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './ExportOutlined'

packages/component/src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,5 @@ export * from './RightBoldOutlined'
8181
export * from './DownBoldOutlined'
8282

8383
export * from './InstallElement'
84+
85+
export * from './icon'

0 commit comments

Comments
 (0)