@caidentity/testicon 0.0.2 → 0.0.4

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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  React icon package generated from your Design Library objects.
4
4
 
5
- - Version: 0.0.2
5
+ - Version: 0.0.3
6
6
  - Install: `npm install @caidentity/testicon`
7
7
 
8
8
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caidentity/testicon",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Icons for @caidentity/testicon",
5
5
  "license": "MIT",
6
6
  "keywords": [
package/src/Icon.tsx CHANGED
@@ -8,7 +8,7 @@ export interface IconProps extends SVGProps<SVGSVGElement> {
8
8
 
9
9
  const iconRegistry = {
10
10
  "frame": {
11
- "svg": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"600\" viewBox=\"0 0 800 600\">\n<metadata><![CDATA[{\"pageId\":\"page-1\",\"viewMode\":\"frames\",\"frame\":{\"id\":\"frame-ugsm68m-1765604797950\",\"name\":\"Frame\",\"x\":317,\"y\":38,\"w\":800,\"h\":600,\"overflow\":\"hidden\"},\"shapeIds\":[\"path_wyhsf97\"]}]]></metadata>\n<g transform=\"translate(-317, -38)\"><g id=\"flattened_fills\"><path data-flattened=\"true\" fill=\"#000000\" fill-opacity=\"1\" stroke=\"none\" d=\"M 568 205 L 792 205 Q 800 205 800 213 L 800 377 Q 800 385 792 385 L 568 385 Q 560 385 560 377 L 560 213 Q 560 205 568 205 Z\" fillRule=\"nonzero\" /></g><path d=\"M 8 0 L 232 0 Q 240 0 240 8 L 240 172 Q 240 180 232 180 L 8 180 Q 0 180 0 172 L 0 8 Q 0 0 8 0 Z\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"butt\" strokeLinejoin=\"miter\" transform=\"translate(560,205)\" /></g>",
11
+ "svg": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"600\" viewBox=\"0 0 800 600\">\n<metadata><![CDATA[{\"pageId\":\"page-1\",\"viewMode\":\"frames\",\"frame\":{\"id\":\"frame-t8zz5m1-1765658197783\",\"name\":\"Frame\",\"x\":1487,\"y\":234,\"w\":800,\"h\":600,\"overflow\":\"hidden\"},\"shapeIds\":[\"path_wyhsf97\",\"path_ibwab03\"]}]]></metadata>\n<g transform=\"translate(-1487, -234)\"><path d=\"M 8 -90 L 422 -90 Q 430 -90 430 -82 L 430 172 Q 430 180 422 180 L 8 180 Q 0 180 0 172 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(747,440)\" />\n<path d=\"M 0 0 L 0 153 L 186 153 L 186 -7\" fill=\"none\" fill-opacity=\"0\" stroke=\"#000000\" stroke-opacity=\"1\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\" transform=\"translate(1762,551)\" /></g>",
12
12
  "viewBox": "0 0 800 600"
13
13
  }
14
14
  }
@@ -6,5 +6,13 @@
6
6
  "width": 800,
7
7
  "height": 600,
8
8
  "viewBox": "0 0 800 600"
9
+ },
10
+ {
11
+ "id": "frame-t8zz5m1-1765658197783",
12
+ "name": "Frame",
13
+ "component": "frame",
14
+ "width": 800,
15
+ "height": 600,
16
+ "viewBox": "0 0 800 600"
9
17
  }
10
18
  ]
@@ -17,5 +17,13 @@ export const iconsManifest: IconManifestEntry[] = [
17
17
  "width": 800,
18
18
  "height": 600,
19
19
  "viewBox": "0 0 800 600"
20
+ },
21
+ {
22
+ "id": "frame-t8zz5m1-1765658197783",
23
+ "name": "Frame",
24
+ "component": "frame",
25
+ "width": 800,
26
+ "height": 600,
27
+ "viewBox": "0 0 800 600"
20
28
  }
21
29
  ] as IconManifestEntry[]
package/src/icons.tsx CHANGED
@@ -1,5 +1,6 @@
1
1
  // Icon registry utilities
2
2
  export const iconNames = [
3
+ "frame",
3
4
  "frame"
4
5
  ] as const
5
6