@caidentity/testicon 2.2.28 → 2.2.30
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/README.md +1 -1
- package/package.json +1 -1
- package/src/Icon.tsx +49 -6
- package/src/icons/manifest.json +3 -11
- package/src/icons/manifest.ts +3 -11
- package/src/icons.tsx +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/src/Icon.tsx
CHANGED
|
@@ -25,13 +25,56 @@ export interface IconProps extends SVGProps<SVGSVGElement> {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
const iconRegistry = {
|
|
28
|
-
"frame": {
|
|
29
|
-
"svg": "<g transform=\"translate(-
|
|
30
|
-
"viewBox": "0 0
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
"
|
|
28
|
+
"test frame": {
|
|
29
|
+
"svg": "<g transform=\"translate(-588, -218)\"><path d=\"M 8 -90 L 29 -90 Q 37 -90 37 -82 L 37 -63 Q 37 -55 29 -55 L 8 -55 Q 0 -55 0 -63 L 0 -82 Q 0 -90 8 -90 Z\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"butt\" strokeLinejoin=\"miter\" transform=\"translate(601,326)\" />\n<path d=\"M 0 0\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(613,233)\" />\n<path d=\"M 0 0 L -11 19 L -1 24 L 11 16 Z\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(639,235)\" />\n<path d=\"M 12.6471 4 L 10 -1\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(608,239)\" />\n<path d=\"M 14 1 L 13 -2\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(606,249)\" />\n<path d=\"M 0 0 L 15 8 L 15 24 L 13 34 L 2 33\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(639,232)\" />\n<path d=\"M 0 0 L 1 13 L 19 16 L 16 7 L 16 7\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(611,262)\" />\n<path d=\"M 0 0 L 1 13 L 19 16 L 17.25 10.75\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(623,242)\" />\n<path d=\"M 0 0 L -1 80 L 49 105 L 108 68 L 113 5 L 100.931 -0.931\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2142,344)\" />\n<path d=\"M 0 0 Q 0 101 0 139 Q -5 172 56 167 L 140 167 L 140 94\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1927,405)\" /></g>",
|
|
30
|
+
"viewBox": "0 0 64 64",
|
|
31
|
+
"animation": {
|
|
32
|
+
"duration": 1000,
|
|
33
|
+
"loop": true,
|
|
34
|
+
"autoplay": false,
|
|
35
|
+
"keyframes": [
|
|
36
|
+
{
|
|
37
|
+
"id": "reveal_start",
|
|
38
|
+
"time": 0,
|
|
39
|
+
"properties": {
|
|
40
|
+
"path_wyhsf97": {
|
|
41
|
+
"shapeId": "path_wyhsf97",
|
|
42
|
+
"property": "strokeDashoffset",
|
|
43
|
+
"value": 1000
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"easing": "linear"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "reveal_mid",
|
|
50
|
+
"time": 0.5,
|
|
51
|
+
"properties": {
|
|
52
|
+
"path_wyhsf97": {
|
|
53
|
+
"shapeId": "path_wyhsf97",
|
|
54
|
+
"property": "strokeDashoffset",
|
|
55
|
+
"value": 500
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"easing": "linear"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "reveal_end",
|
|
62
|
+
"time": 1,
|
|
63
|
+
"properties": {
|
|
64
|
+
"path_wyhsf97": {
|
|
65
|
+
"shapeId": "path_wyhsf97",
|
|
66
|
+
"property": "strokeDashoffset",
|
|
67
|
+
"value": 0
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"easing": "linear"
|
|
71
|
+
}
|
|
72
|
+
]
|
|
34
73
|
}
|
|
74
|
+
},
|
|
75
|
+
"frame": {
|
|
76
|
+
"svg": "<g transform=\"translate(-1546, -192)\"><path d=\"M 8 -90 L 29 -90 Q 37 -90 37 -82 L 37 -63 Q 37 -55 29 -55 L 8 -55 Q 0 -55 0 -63 L 0 -82 Q 0 -90 8 -90 Z\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"butt\" strokeLinejoin=\"miter\" transform=\"translate(601,326)\" />\n<path d=\"M 0 0\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(613,233)\" />\n<path d=\"M 0 0 L -11 19 L -1 24 L 11 16 Z\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(639,235)\" />\n<path d=\"M 12.6471 4 L 10 -1\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(608,239)\" />\n<path d=\"M 14 1 L 13 -2\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(606,249)\" />\n<path d=\"M 0 0 L 15 8 L 15 24 L 13 34 L 2 33\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(639,232)\" />\n<path d=\"M 0 0 L 1 13 L 19 16 L 16 7 L 16 7\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(611,262)\" />\n<path d=\"M 0 0 L 1 13 L 19 16 L 15 4 L 15 4\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(598,262)\" />\n<path d=\"M 0 0 L 1 13 L 19 16 L 17.25 10.75\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(623,242)\" />\n<path d=\"M 0 0 L -37 88 L 12.833 107.5\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1884,314)\" />\n<path d=\"M 0 0 L -14.2955 34\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2026,269)\" />\n<path d=\"M 0 0 L -35 83.243\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2126,264)\" />\n<path d=\"M -21.4432 51 L -25.16 59.84\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2026,269)\" />\n<path d=\"M 0 0 L -12.728 30.272\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2039,318)\" />\n<path d=\"M -25.6478 61 L -33.6364 80\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2039,318)\" />\n<path d=\"M 0 0 L -21.8873 52.0563\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2073,342)\" />\n<path d=\"M -26.9091 64 L -37 88 L 101 142 L 159 193 L -12 240\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2113,350)\" />\n<path d=\"M -34 89.174 L 101 142 L 159 193 L -12 240\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2126,264)\" />\n<path d=\"M 0 0 L 0 61 L 21 72 L 80 71 L 77 13\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2110,478)\" />\n<path d=\"M 0 0 L -1 80 L 49 105 L 108 68 L 113 5 L 100.931 -0.931\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2142,344)\" />\n<path d=\"M 82.474 -10 L -119 -109\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2142,344)\" />\n<path d=\"M 40 71.678 L 80 71 L 77 13\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(2034,453)\" />\n<path d=\"M 0 0 L 0 142 L 92 228 L 148 221.6774\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1698,394)\" />\n<path d=\"M 168 219.4194 L 216 214\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1698,394)\" />\n<path d=\"M 0 0 L 0 142 L 92 228 L 134 223.258\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1667,456)\" />\n<path d=\"M 171.038 219.076 L 216 214\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1692,480)\" />\n<path d=\"M 157 220.661 L 216 214\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1705,501)\" />\n<path d=\"M 159 220.435 L 216 214\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1667,456)\" />\n<path d=\"M 0 0 Q 0 101 0 139 Q -5 172 56 167 L 140 167 L 140 94\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1927,405)\" />\n<path d=\"M 0 0 L 0 139 L 57 170 L 98.034 168.517\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1922,447)\" />\n<path d=\"M 116.944 167.833 L 140 167 L 140 94\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1922,447)\" /></g>",
|
|
77
|
+
"viewBox": "0 0 800 600"
|
|
35
78
|
}
|
|
36
79
|
}
|
|
37
80
|
|
package/src/icons/manifest.json
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
3
|
"id": "frame-ugsm68m-1765604797950",
|
|
4
|
-
"name": "
|
|
5
|
-
"component": "frame",
|
|
4
|
+
"name": "test frame",
|
|
5
|
+
"component": "test frame",
|
|
6
6
|
"width": 64,
|
|
7
7
|
"height": 64,
|
|
8
8
|
"viewBox": "0 0 64 64",
|
|
9
|
-
"duotoneLayers": 2,
|
|
10
|
-
"duotoneAssignments": {
|
|
11
|
-
"path_3xjqebq": "duotone1"
|
|
12
|
-
},
|
|
13
9
|
"animation": {
|
|
14
10
|
"duration": 1000,
|
|
15
11
|
"loop": true,
|
|
@@ -60,10 +56,6 @@
|
|
|
60
56
|
"component": "frame",
|
|
61
57
|
"width": 800,
|
|
62
58
|
"height": 600,
|
|
63
|
-
"viewBox": "0 0 800 600"
|
|
64
|
-
"duotoneLayers": 2,
|
|
65
|
-
"duotoneAssignments": {
|
|
66
|
-
"path_3xjqebq": "duotone1"
|
|
67
|
-
}
|
|
59
|
+
"viewBox": "0 0 800 600"
|
|
68
60
|
}
|
|
69
61
|
]
|
package/src/icons/manifest.ts
CHANGED
|
@@ -22,15 +22,11 @@ export type IconManifestEntry = {
|
|
|
22
22
|
export const iconsManifest: IconManifestEntry[] = [
|
|
23
23
|
{
|
|
24
24
|
"id": "frame-ugsm68m-1765604797950",
|
|
25
|
-
"name": "
|
|
26
|
-
"component": "frame",
|
|
25
|
+
"name": "test frame",
|
|
26
|
+
"component": "test frame",
|
|
27
27
|
"width": 64,
|
|
28
28
|
"height": 64,
|
|
29
29
|
"viewBox": "0 0 64 64",
|
|
30
|
-
"duotoneLayers": 2,
|
|
31
|
-
"duotoneAssignments": {
|
|
32
|
-
"path_3xjqebq": "duotone1"
|
|
33
|
-
},
|
|
34
30
|
"animation": {
|
|
35
31
|
"duration": 1000,
|
|
36
32
|
"loop": true,
|
|
@@ -81,10 +77,6 @@ export const iconsManifest: IconManifestEntry[] = [
|
|
|
81
77
|
"component": "frame",
|
|
82
78
|
"width": 800,
|
|
83
79
|
"height": 600,
|
|
84
|
-
"viewBox": "0 0 800 600"
|
|
85
|
-
"duotoneLayers": 2,
|
|
86
|
-
"duotoneAssignments": {
|
|
87
|
-
"path_3xjqebq": "duotone1"
|
|
88
|
-
}
|
|
80
|
+
"viewBox": "0 0 800 600"
|
|
89
81
|
}
|
|
90
82
|
] as IconManifestEntry[]
|