@invopop/ui-icons 0.0.85 → 0.0.86
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 +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,8 @@ Upload generated code to the repository to ensure it can be used directly by Go.
|
|
|
18
18
|
|
|
19
19
|
The icons are automatically built and published to npm when changes are pushed to the `themes/` folder.
|
|
20
20
|
|
|
21
|
+
To preview the icons locally, you can `npm run build:icons` and then `netlify dev` to open a preview server.
|
|
22
|
+
|
|
21
23
|
#### Installation
|
|
22
24
|
|
|
23
25
|
```bash
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export const Activity = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M5.428 3.4c.25-.698 1.194-.73 1.516-.114L7 3.417l2.795 8.39 1.3-3.61.042-.102a1.39 1.39 0 0 1 1.265-.817h2.042a.5.5 0 1 1 0 1h-2.042a.39.39 0 0 0-.366.256l.001.001-1.464 4.067c-.267.743-1.323.729-1.573-.019l-2.796-8.39-1.3 3.612a1.39 1.39 0 0 1-1.306.918H1.556a.5.5 0 0 1 0-1h2.042a.39.39 0 0 0 .366-.257z" }] } };
|
|
1
2
|
export const AddCircle = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm0 1a6 6 0 1 0 0 12A6 6 0 0 0 8 2Zm0 2.5a.5.5 0 0 1 .5.5v2.505H11a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V8.505H5a.5.5 0 1 1 0-1h2.5V5a.5.5 0 0 1 .5-.5Z" }] } };
|
|
2
3
|
export const Add = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M8 2.5a.5.5 0 0 1 .5.5v4.5H13a.5.5 0 0 1 0 1H8.5V13a.5.5 0 0 1-1 0V8.5H3a.5.5 0 0 1 0-1h4.5V3a.5.5 0 0 1 .5-.5Z" }] } };
|
|
3
4
|
export const Alert = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M8 15.005a7 7 0 1 1 0-14 7 7 0 0 1 0 14Zm.5-6v-5h-1v5h1Zm-.5 3a.75.75 0 1 0-.002-1.502A.75.75 0 0 0 8 12.005Z" }] } };
|
package/package.json
CHANGED