@generation/icons 1.1.9 → 1.1.11
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/block-fill-out2.svg +10 -0
- package/assets/cancel-calendar.svg +10 -0
- package/assets/clipboard-check.svg +4 -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 +8 -0
- package/src/Icons/BlockFillOut2.jsx +20 -0
- package/src/Icons/CancelCalendar.jsx +20 -0
- package/src/Icons/ClipboardCheck.jsx +27 -0
- package/src/Icons/TimerFillMid.jsx +24 -0
- package/src/Icons/index.js +4 -0
package/package.json
CHANGED
|
@@ -56,6 +56,7 @@ import {
|
|
|
56
56
|
BellFillOut,
|
|
57
57
|
Biretta,
|
|
58
58
|
BlockFillOut,
|
|
59
|
+
BlockFillOut2,
|
|
59
60
|
Bold,
|
|
60
61
|
BookmarkFill,
|
|
61
62
|
BookmarkFillOut,
|
|
@@ -67,6 +68,7 @@ import {
|
|
|
67
68
|
Calendar2,
|
|
68
69
|
Calendar3,
|
|
69
70
|
Camera,
|
|
71
|
+
CancelCalendar,
|
|
70
72
|
CaretDown,
|
|
71
73
|
CaretDownCircle,
|
|
72
74
|
CaretUp,
|
|
@@ -84,6 +86,7 @@ import {
|
|
|
84
86
|
ChevronRight,
|
|
85
87
|
ChevronUp,
|
|
86
88
|
Circle,
|
|
89
|
+
ClipboardCheck,
|
|
87
90
|
Clock,
|
|
88
91
|
ClockDraft,
|
|
89
92
|
ClockFill,
|
|
@@ -331,6 +334,7 @@ import {
|
|
|
331
334
|
TimelineFill,
|
|
332
335
|
TimelineFillOut,
|
|
333
336
|
TimerFill,
|
|
337
|
+
TimerFillMid,
|
|
334
338
|
TimerFillOut,
|
|
335
339
|
Times,
|
|
336
340
|
TimesCircleFill,
|
|
@@ -429,6 +433,7 @@ const icons = {
|
|
|
429
433
|
BellFillOut,
|
|
430
434
|
Biretta,
|
|
431
435
|
BlockFillOut,
|
|
436
|
+
BlockFillOut2,
|
|
432
437
|
Bold,
|
|
433
438
|
BookmarkFill,
|
|
434
439
|
BookmarkFillOut,
|
|
@@ -440,6 +445,7 @@ const icons = {
|
|
|
440
445
|
Calendar2,
|
|
441
446
|
Calendar3,
|
|
442
447
|
Camera,
|
|
448
|
+
CancelCalendar,
|
|
443
449
|
CaretDown,
|
|
444
450
|
CaretDownCircle,
|
|
445
451
|
CaretUp,
|
|
@@ -457,6 +463,7 @@ const icons = {
|
|
|
457
463
|
ChevronRight,
|
|
458
464
|
ChevronUp,
|
|
459
465
|
Circle,
|
|
466
|
+
ClipboardCheck,
|
|
460
467
|
Clock,
|
|
461
468
|
ClockDraft,
|
|
462
469
|
ClockFill,
|
|
@@ -704,6 +711,7 @@ const icons = {
|
|
|
704
711
|
TimelineFill,
|
|
705
712
|
TimelineFillOut,
|
|
706
713
|
TimerFill,
|
|
714
|
+
TimerFillMid,
|
|
707
715
|
TimerFillOut,
|
|
708
716
|
Times,
|
|
709
717
|
TimesCircleFill,
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const BlockFillOut2 = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2M4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9A7.9 7.9 0 0 1 4 12m8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1A7.9 7.9 0 0 1 20 12c0 4.42-3.58 8-8 8"
|
|
13
|
+
style={{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
}}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
export default BlockFillOut2;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const CancelCalendar = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V9h14zM5 7V5h14v2zm3.23 9.41 1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z"
|
|
13
|
+
style={{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
}}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
export default CancelCalendar;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const ClipboardCheck = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M4.25 6h2v3h10V6h2v5h2V6c0-1.1-.9-2-2-2h-4.18c-.42-1.16-1.52-2-2.82-2s-2.4.84-2.82 2H4.25c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-2h-6zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"
|
|
13
|
+
style={{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
}}
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M20.25 12.5 14.76 18l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z"
|
|
20
|
+
style={{
|
|
21
|
+
fill: "currentColor",
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
}}
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
export default ClipboardCheck;
|
|
@@ -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
|
@@ -52,6 +52,7 @@ export { default as BellFill } from './BellFill';
|
|
|
52
52
|
export { default as BellFillOut } from './BellFillOut';
|
|
53
53
|
export { default as Biretta } from './Biretta';
|
|
54
54
|
export { default as BlockFillOut } from './BlockFillOut';
|
|
55
|
+
export { default as BlockFillOut2 } from './BlockFillOut2';
|
|
55
56
|
export { default as Bold } from './Bold';
|
|
56
57
|
export { default as BookmarkFill } from './BookmarkFill';
|
|
57
58
|
export { default as BookmarkFillOut } from './BookmarkFillOut';
|
|
@@ -63,6 +64,7 @@ export { default as Calendar } from './Calendar';
|
|
|
63
64
|
export { default as Calendar2 } from './Calendar2';
|
|
64
65
|
export { default as Calendar3 } from './Calendar3';
|
|
65
66
|
export { default as Camera } from './Camera';
|
|
67
|
+
export { default as CancelCalendar } from './CancelCalendar';
|
|
66
68
|
export { default as CaretDown } from './CaretDown';
|
|
67
69
|
export { default as CaretDownCircle } from './CaretDownCircle';
|
|
68
70
|
export { default as CaretUp } from './CaretUp';
|
|
@@ -80,6 +82,7 @@ export { default as ChevronLeft } from './ChevronLeft';
|
|
|
80
82
|
export { default as ChevronRight } from './ChevronRight';
|
|
81
83
|
export { default as ChevronUp } from './ChevronUp';
|
|
82
84
|
export { default as Circle } from './Circle';
|
|
85
|
+
export { default as ClipboardCheck } from './ClipboardCheck';
|
|
83
86
|
export { default as Clock } from './Clock';
|
|
84
87
|
export { default as ClockDraft } from './ClockDraft';
|
|
85
88
|
export { default as ClockFill } from './ClockFill';
|
|
@@ -327,6 +330,7 @@ export { default as TimeFillOut } from './TimeFillOut';
|
|
|
327
330
|
export { default as TimelineFill } from './TimelineFill';
|
|
328
331
|
export { default as TimelineFillOut } from './TimelineFillOut';
|
|
329
332
|
export { default as TimerFill } from './TimerFill';
|
|
333
|
+
export { default as TimerFillMid } from './TimerFillMid';
|
|
330
334
|
export { default as TimerFillOut } from './TimerFillOut';
|
|
331
335
|
export { default as Times } from './Times';
|
|
332
336
|
export { default as TimesCircleFill } from './TimesCircleFill';
|