@generation/icons 1.1.8 → 1.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/folder-user-fill.svg +3 -0
- package/assets/timer-fill-mid.svg +10 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/packages/demo/package.json +1 -1
- package/packages/demo/src/components/Gallery/Gallery.jsx +4 -0
- package/src/Icons/FolderUserFill.jsx +17 -0
- package/src/Icons/TimerFillMid.jsx +24 -0
- package/src/Icons/index.js +2 -0
package/package.json
CHANGED
|
@@ -173,6 +173,7 @@ import {
|
|
|
173
173
|
FolderDescriptionFill,
|
|
174
174
|
FolderShared,
|
|
175
175
|
FolderUser,
|
|
176
|
+
FolderUserFill,
|
|
176
177
|
Forward,
|
|
177
178
|
GraduationCapFill,
|
|
178
179
|
GraduationCapFillOut,
|
|
@@ -330,6 +331,7 @@ import {
|
|
|
330
331
|
TimelineFill,
|
|
331
332
|
TimelineFillOut,
|
|
332
333
|
TimerFill,
|
|
334
|
+
TimerFillMid,
|
|
333
335
|
TimerFillOut,
|
|
334
336
|
Times,
|
|
335
337
|
TimesCircleFill,
|
|
@@ -545,6 +547,7 @@ const icons = {
|
|
|
545
547
|
FolderDescriptionFill,
|
|
546
548
|
FolderShared,
|
|
547
549
|
FolderUser,
|
|
550
|
+
FolderUserFill,
|
|
548
551
|
Forward,
|
|
549
552
|
GraduationCapFill,
|
|
550
553
|
GraduationCapFillOut,
|
|
@@ -702,6 +705,7 @@ const icons = {
|
|
|
702
705
|
TimelineFill,
|
|
703
706
|
TimelineFillOut,
|
|
704
707
|
TimerFill,
|
|
708
|
+
TimerFillMid,
|
|
705
709
|
TimerFillOut,
|
|
706
710
|
Times,
|
|
707
711
|
TimesCircleFill,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const FolderUserFill = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 20 16"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill="#000"
|
|
13
|
+
d="M18 2h-8L8 0H2C.9 0 .01.9.01 2L0 14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m4 8H9v-1c0-1.33 2.67-2 4-2s4 .67 4 2z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default FolderUserFill;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const TimerFillMid = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<g clipPath="url(#prefix__a)">
|
|
12
|
+
<path
|
|
13
|
+
fill="#000"
|
|
14
|
+
d="m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2zm10 14.5V20H8v-3.5l4-4z"
|
|
15
|
+
/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<clipPath id="prefix__a">
|
|
19
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
20
|
+
</clipPath>
|
|
21
|
+
</defs>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
export default TimerFillMid;
|
package/src/Icons/index.js
CHANGED
|
@@ -169,6 +169,7 @@ export { default as Flagged } from './Flagged';
|
|
|
169
169
|
export { default as FolderDescriptionFill } from './FolderDescriptionFill';
|
|
170
170
|
export { default as FolderShared } from './FolderShared';
|
|
171
171
|
export { default as FolderUser } from './FolderUser';
|
|
172
|
+
export { default as FolderUserFill } from './FolderUserFill';
|
|
172
173
|
export { default as Forward } from './Forward';
|
|
173
174
|
export { default as GraduationCapFill } from './GraduationCapFill';
|
|
174
175
|
export { default as GraduationCapFillOut } from './GraduationCapFillOut';
|
|
@@ -326,6 +327,7 @@ export { default as TimeFillOut } from './TimeFillOut';
|
|
|
326
327
|
export { default as TimelineFill } from './TimelineFill';
|
|
327
328
|
export { default as TimelineFillOut } from './TimelineFillOut';
|
|
328
329
|
export { default as TimerFill } from './TimerFill';
|
|
330
|
+
export { default as TimerFillMid } from './TimerFillMid';
|
|
329
331
|
export { default as TimerFillOut } from './TimerFillOut';
|
|
330
332
|
export { default as Times } from './Times';
|
|
331
333
|
export { default as TimesCircleFill } from './TimesCircleFill';
|