@generation/icons 1.1.10 → 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/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 +6 -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/index.js +3 -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,
|
|
@@ -430,6 +433,7 @@ const icons = {
|
|
|
430
433
|
BellFillOut,
|
|
431
434
|
Biretta,
|
|
432
435
|
BlockFillOut,
|
|
436
|
+
BlockFillOut2,
|
|
433
437
|
Bold,
|
|
434
438
|
BookmarkFill,
|
|
435
439
|
BookmarkFillOut,
|
|
@@ -441,6 +445,7 @@ const icons = {
|
|
|
441
445
|
Calendar2,
|
|
442
446
|
Calendar3,
|
|
443
447
|
Camera,
|
|
448
|
+
CancelCalendar,
|
|
444
449
|
CaretDown,
|
|
445
450
|
CaretDownCircle,
|
|
446
451
|
CaretUp,
|
|
@@ -458,6 +463,7 @@ const icons = {
|
|
|
458
463
|
ChevronRight,
|
|
459
464
|
ChevronUp,
|
|
460
465
|
Circle,
|
|
466
|
+
ClipboardCheck,
|
|
461
467
|
Clock,
|
|
462
468
|
ClockDraft,
|
|
463
469
|
ClockFill,
|
|
@@ -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;
|
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';
|