@rokkit/icons 1.0.0-next.77 → 1.0.0-next.79

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.
Files changed (65) hide show
  1. package/lib/app/chars.json +1 -0
  2. package/lib/app/icons.json +11 -0
  3. package/lib/app/index.d.ts +8 -0
  4. package/lib/app/index.js +9 -0
  5. package/lib/app/index.mjs +6 -0
  6. package/lib/app/info.json +1 -0
  7. package/lib/app/metadata.json +1 -0
  8. package/lib/app/package.json +25 -0
  9. package/lib/app.json +1 -1
  10. package/lib/auth/chars.json +1 -0
  11. package/lib/auth/icons.json +47 -0
  12. package/lib/auth/index.d.ts +8 -0
  13. package/lib/auth/index.js +9 -0
  14. package/lib/auth/index.mjs +6 -0
  15. package/lib/auth/info.json +1 -0
  16. package/lib/auth/metadata.json +1 -0
  17. package/lib/auth/package.json +25 -0
  18. package/lib/auth.json +1 -1
  19. package/lib/base/chars.json +1 -0
  20. package/lib/base/icons.json +200 -0
  21. package/lib/base/index.d.ts +8 -0
  22. package/lib/base/index.js +9 -0
  23. package/lib/base/index.mjs +6 -0
  24. package/lib/base/info.json +1 -0
  25. package/lib/base/metadata.json +1 -0
  26. package/lib/base/package.json +25 -0
  27. package/lib/base.json +1 -1
  28. package/lib/components/chars.json +1 -0
  29. package/lib/components/icons.json +92 -0
  30. package/lib/components/index.d.ts +8 -0
  31. package/lib/components/index.js +9 -0
  32. package/lib/components/index.mjs +6 -0
  33. package/lib/components/info.json +1 -0
  34. package/lib/components/metadata.json +1 -0
  35. package/lib/components/package.json +25 -0
  36. package/lib/components.json +1 -1
  37. package/lib/light/chars.json +1 -0
  38. package/lib/light/icons.json +23 -0
  39. package/lib/light/index.d.ts +8 -0
  40. package/lib/light/index.js +9 -0
  41. package/lib/light/index.mjs +6 -0
  42. package/lib/light/info.json +1 -0
  43. package/lib/light/metadata.json +1 -0
  44. package/lib/light/package.json +25 -0
  45. package/lib/light.json +1 -1
  46. package/lib/solid/chars.json +1 -0
  47. package/lib/solid/icons.json +44 -0
  48. package/lib/solid/index.d.ts +8 -0
  49. package/lib/solid/index.js +9 -0
  50. package/lib/solid/index.mjs +6 -0
  51. package/lib/solid/info.json +1 -0
  52. package/lib/solid/metadata.json +1 -0
  53. package/lib/solid/package.json +25 -0
  54. package/lib/solid.json +1 -1
  55. package/lib/twotone/chars.json +1 -0
  56. package/lib/twotone/icons.json +20 -0
  57. package/lib/twotone/index.d.ts +8 -0
  58. package/lib/twotone/index.js +9 -0
  59. package/lib/twotone/index.mjs +6 -0
  60. package/lib/twotone/info.json +1 -0
  61. package/lib/twotone/metadata.json +1 -0
  62. package/lib/twotone/package.json +25 -0
  63. package/lib/twotone.json +1 -1
  64. package/package.json +1 -1
  65. package/src/convert.js +19 -1
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,11 @@
1
+ {
2
+ "prefix": "app",
3
+ "icons": {
4
+ "logout": {
5
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M9.002 7c.012-2.175.109-3.353.877-4.121C10.758 2 12.172 2 15 2h1c2.829 0 4.243 0 5.122.879C22 3.757 22 5.172 22 8v8c0 2.828 0 4.243-.878 5.121C20.242 22 18.829 22 16 22h-1c-2.828 0-4.242 0-5.121-.879-.768-.768-.865-1.946-.877-4.121\"/><path stroke-linejoin=\"round\" d=\"M15 12H2m0 0 3.5-3M2 12l3.5 3\"/></g>",
6
+ "width": 24,
7
+ "height": 24
8
+ }
9
+ },
10
+ "lastModified": 1707054238
11
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/app",
3
+ "description": "app icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
package/lib/app.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "app",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054238,
4
4
  "icons": {
5
5
  "logout": {
6
6
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M9.002 7c.012-2.175.109-3.353.877-4.121C10.758 2 12.172 2 15 2h1c2.829 0 4.243 0 5.122.879C22 3.757 22 5.172 22 8v8c0 2.828 0 4.243-.878 5.121C20.242 22 18.829 22 16 22h-1c-2.828 0-4.242 0-5.121-.879-.768-.768-.865-1.946-.877-4.121\"/><path stroke-linejoin=\"round\" d=\"M15 12H2m0 0 3.5-3M2 12l3.5 3\"/></g>",
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,47 @@
1
+ {
2
+ "prefix": "auth",
3
+ "icons": {
4
+ "apple": {
5
+ "body": "<path d=\"M18.576 12.726c.033 3.625 3.18 4.832 3.215 4.847-.027.085-.503 1.719-1.658 3.407-.999 1.46-2.035 2.913-3.667 2.943-1.604.03-2.12-.951-3.954-.951-1.833 0-2.406.921-3.924.98-1.576.06-2.776-1.577-3.782-3.031-2.057-2.974-3.63-8.404-1.519-12.07C4.336 7.032 6.21 5.88 8.244 5.85c1.547-.03 3.008 1.04 3.954 1.04.945 0 2.72-1.287 4.585-1.098.781.033 2.973.316 4.381 2.376-.113.07-2.616 1.527-2.588 4.558M15.56 3.825c.837-1.013 1.4-2.422 1.246-3.825-1.206.048-2.664.804-3.529 1.815-.775.897-1.453 2.331-1.27 3.706 1.344.104 2.717-.683 3.553-1.696\"/>"
6
+ },
7
+ "authy": {
8
+ "body": "<g fill=\"none\"><path fill=\"#F22E46\" d=\"M24 12c0 6.628-5.372 12-12 12S0 18.628 0 12 5.372 0 12 0s12 5.372 12 12\"/><path fill=\"#fff\" d=\"m10.971 9.458 2.877 2.877a1.065 1.065 0 001.506-1.506l-2.877-2.877a5.38 5.38 0 00-7.546-.053l-.026.027-.027.026-.051.056a5.38 5.38 0 00.104 7.49l2.878 2.877a1.065 1.065 0 001.506-1.506l-2.877-2.877a3.246 3.246 0 01-.026-4.56 3.246 3.246 0 014.559.027\"/><path fill=\"#F5B1B2\" d=\"M14.685 5.627a1.063 1.063 0 000 1.505l2.877 2.878a3.247 3.247 0 01.025 4.56 3.246 3.246 0 01-4.558-.027l-2.878-2.877a1.065 1.065 0 10-1.506 1.506l2.877 2.877a5.38 5.38 0 007.49.105l.056-.052q.014-.013.026-.027l.027-.027q.027-.026.05-.055a5.38 5.38 0 00-.102-7.49L16.19 5.627a1.064 1.064 0 00-1.506 0\"/></g>"
9
+ },
10
+ "azure": {
11
+ "body": "<g fill=\"none\"><path fill=\"url(#svgID0)\" d=\"M8.507 2.126h6.203L8.27 21.202a.99.99 0 01-.937.675H2.507a.987.987 0 01-.932-1.305l6-17.775a.99.99 0 01.937-.675z\"/><path fill=\"#0078D4\" d=\"M17.52 14.92H7.685a.456.456 0 00-.31.789l6.32 5.899c.183.17.424.266.675.267h5.57z\"/><path fill=\"url(#svgID1)\" d=\"M8.507 2.126a.98.98 0 00-.939.685L1.58 20.555a.987.987 0 00.93 1.32h4.95a1.06 1.06 0 00.813-.691l1.194-3.52 4.265 3.98c.18.148.404.23.636.231h5.55l-2.434-6.954H10.39l4.342-12.795z\"/><path fill=\"url(#svgID2)\" d=\"M16.43 2.797a.99.99 0 00-.937-.675H8.581a.99.99 0 01.936.675l6 17.775a.988.988 0 01-.935 1.303h6.912a.988.988 0 00.931-1.303z\"/><defs><linearGradient id=\"svgID0\" x1=\"9.25\" x2=\"3.355\" y1=\"3.61\" y2=\"21.584\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#114A8B\"/><stop offset=\"1\" stop-color=\"#0669BC\"/></linearGradient><linearGradient id=\"svgID1\" x1=\"12.434\" x2=\"11.242\" y1=\"12.725\" y2=\"13.042\" gradientUnits=\"userSpaceOnUse\"><stop stop-opacity=\".3\"/><stop offset=\".071\" stop-opacity=\".2\"/><stop offset=\".321\" stop-opacity=\".1\"/><stop offset=\".623\" stop-opacity=\".05\"/><stop offset=\"1\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"svgID2\" x1=\"13.914\" x2=\"20.648\" y1=\"2.886\" y2=\"20.488\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#3CCBF4\"/><stop offset=\"1\" stop-color=\"#2892DF\"/></linearGradient></defs></g>"
12
+ },
13
+ "email": {
14
+ "body": "<path fill=\"currentColor\" d=\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 4-8 5-8-5V6l8 5 8-5z\"/>"
15
+ },
16
+ "firebase": {
17
+ "body": "<g fill=\"none\"><path fill=\"#FFC24A\" d=\"m4.35 18.45.127-.178 6.015-11.41.013-.121-2.651-4.98a.492.492 0 00-.92.155z\"/><path fill=\"#FFA712\" d=\"m4.425 18.315.096-.187 5.953-11.292-2.645-5a.45.45 0 00-.85.154z\"/><path fill=\"#F4BD62\" d=\"m12.438 10.508 1.974-2.025-1.975-3.766a.509.509 0 00-.896 0l-1.055 2.011V6.9z\"/><path fill=\"#FFA50E\" d=\"m12.403 10.425 1.919-1.965-1.92-3.66a.441.441 0 00-.805-.035l-1.06 2.047-.032.104z\"/><path fill=\"#F6820C\" d=\"m4.352 18.45.057-.058.21-.084 7.695-7.667.097-.265-1.92-3.659z\"/><path fill=\"#FDE068\" d=\"m12.684 22.317 6.966-3.884-1.99-12.248a.477.477 0 00-.807-.26L4.35 18.45l6.925 3.866a1.45 1.45 0 001.408 0\"/><path fill=\"#FCCA3F\" d=\"M19.586 18.4 17.612 6.246a.417.417 0 00-.725-.265L4.425 18.427l6.848 3.825a1.44 1.44 0 001.398 0z\"/><path fill=\"#EEAB37\" d=\"M12.684 22.2a1.45 1.45 0 01-1.408 0l-6.869-3.808-.057.058 6.925 3.866a1.45 1.45 0 001.408 0l6.967-3.883-.017-.105z\"/></g>"
18
+ },
19
+ "github": {
20
+ "body": "<path fill=\"currentColor\" d=\"M12 0C5.373 0 0 5.509 0 12.304c0 5.436 3.438 10.048 8.206 11.675.6.114.82-.267.82-.592 0-.293-.01-1.263-.016-2.29-3.338.744-4.043-1.452-4.043-1.452-.546-1.422-1.332-1.8-1.332-1.8-1.089-.764.082-.749.082-.749 1.205.087 1.84 1.268 1.84 1.268 1.07 1.881 2.807 1.337 3.491 1.023.108-.795.42-1.338.762-1.645-2.665-.311-5.467-1.366-5.467-6.08 0-1.344.469-2.442 1.236-3.303-.124-.31-.535-1.562.117-3.256 0 0 1.007-.331 3.3 1.26A11.3 11.3 0 0112 5.95a11.3 11.3 0 013.006.414c2.29-1.592 3.297-1.261 3.297-1.261.653 1.694.242 2.946.118 3.256.77.861 1.235 1.959 1.235 3.302 0 4.726-2.808 5.766-5.48 6.071.43.382.814 1.13.814 2.279 0 1.646-.014 2.97-.014 3.376 0 .328.216.711.824.59 4.766-1.628 8.2-6.239 8.2-11.673C24 5.509 18.627 0 12 0M4.494 17.527c-.026.061-.12.08-.205.037-.087-.04-.136-.123-.108-.184.026-.063.12-.08.207-.039.087.04.137.125.106.186m.59.54c-.056.055-.168.03-.244-.057-.079-.086-.094-.2-.035-.255s.167-.03.246.056c.078.087.093.201.034.256m.406.691c-.074.052-.194.003-.268-.106-.074-.11-.074-.24.001-.293s.193-.006.268.103c.074.111.074.242-.001.296m.684.8c-.065.075-.205.055-.308-.047-.105-.1-.134-.24-.068-.314.067-.075.207-.054.31.047.105.099.137.24.066.314m.886.27c-.03.097-.164.14-.3.1-.136-.043-.225-.155-.197-.253.028-.097.163-.142.3-.099s.225.154.197.252m1.007.115c.003.101-.112.185-.255.187-.143.004-.26-.078-.26-.178 0-.103.112-.186.255-.189.143-.002.26.08.26.18m.99-.039c.016.1-.083.2-.224.228-.14.026-.269-.035-.286-.133-.018-.102.083-.203.222-.23.142-.025.27.034.287.135\"/>"
21
+ },
22
+ "google": {
23
+ "body": "<g fill=\"none\"><path fill=\"#4285F4\" d=\"M23.714 12.225c0-.984-.08-1.701-.252-2.445H12.234v4.438h6.59c-.133 1.102-.85 2.764-2.445 3.88l-.022.148 3.55 2.75.246.025c2.259-2.086 3.561-5.156 3.561-8.796\"/><path fill=\"#34A853\" d=\"M12.234 23.918c3.228 0 5.939-1.063 7.919-2.897l-3.774-2.923c-1.01.704-2.365 1.195-4.145 1.195-3.163 0-5.847-2.086-6.804-4.969l-.14.012-3.691 2.857-.049.134c1.967 3.906 6.006 6.59 10.684 6.59\"/><path fill=\"#FBBC05\" d=\"M5.43 14.324a7.4 7.4 0 01-.398-2.365c0-.824.146-1.621.385-2.365l-.007-.159-3.737-2.903-.123.059a12 12 0 00-1.275 5.368c0 1.927.465 3.747 1.275 5.368z\"/><path fill=\"#EB4335\" d=\"M12.234 4.624c2.245 0 3.76.97 4.624 1.78l3.375-3.295C18.16 1.183 15.463 0 12.233 0 7.557 0 3.518 2.684 1.55 6.59l3.867 3.004c.97-2.884 3.654-4.97 6.817-4.97\"/></g>"
24
+ },
25
+ "magic": {
26
+ "body": "<g fill=\"currentColor\"><path d=\"M10.427 13.573c.457.435.457 1.15 0 1.585a1.125 1.125 0 01-1.585 0 5.58 5.58 0 010-7.889l3.95-3.95a5.58 5.58 0 017.888 0 5.58 5.58 0 010 7.889l-1.662 1.662a7.7 7.7 0 00-.446-2.7l.524-.535a3.33 3.33 0 000-4.731 3.33 3.33 0 00-4.73 0l-3.94 3.938a3.327 3.327 0 000 4.731\"/><path d=\"M13.573 8.842a1.125 1.125 0 011.585 0 5.58 5.58 0 010 7.889l-3.95 3.95a5.58 5.58 0 01-7.889 0 5.58 5.58 0 010-7.889l1.663-1.662a7.8 7.8 0 00.446 2.711l-.524.524a3.327 3.327 0 000 4.731 3.327 3.327 0 004.73 0l3.94-3.938a3.33 3.33 0 000-4.731 1.085 1.085 0 010-1.585M17.063 9l-.645-1.418L15 6.938l1.418-.645.645-1.418.644 1.418 1.418.644-1.418.645z\"/></g>"
27
+ },
28
+ "microsoft": {
29
+ "body": "<g fill=\"none\"><path fill=\"#F1511B\" d=\"M11.406 11.406H0V0h11.406z\"/><path fill=\"#80CC28\" d=\"M24 11.406H12.594V0H24z\"/><path fill=\"#00ADEF\" d=\"M11.406 24H0V12.594h11.406z\"/><path fill=\"#FBBC09\" d=\"M24 24H12.594V12.594H24z\"/></g>"
30
+ },
31
+ "password": {
32
+ "body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 4h-2C6.229 4 4.343 4 3.172 5.172S2 8.229 2 12s0 5.657 1.172 6.828S6.229 20 10 20h2m3-16c3.114.01 4.765.108 5.828 1.172C22 6.343 22 8.229 22 12s0 5.657-1.172 6.828C19.765 19.892 18.114 19.99 15 20\"/><path fill=\"currentColor\" d=\"M9 12a1 1 0 11-2 0 1 1 0 012 0m4 0a1 1 0 11-2 0 1 1 0 012 0\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M15 2v20\"/></g>"
33
+ },
34
+ "phone": {
35
+ "body": "<path fill=\"currentColor\" d=\"m19.23 15.26-2.54-.29a1.99 1.99 0 00-1.64.57l-1.84 1.84a15.05 15.05 0 01-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52a2 2 0 00-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98\"/>"
36
+ },
37
+ "supabase": {
38
+ "body": "<g fill=\"none\"><g clip-path=\"url(#svgID2)\"><path fill=\"url(#svgID0)\" d=\"M14.017 23.597c-.613.772-1.856.348-1.87-.637L11.93 8.543h9.694c1.756 0 2.735 2.028 1.643 3.403z\"/><path fill=\"url(#svgID1)\" fill-opacity=\".2\" d=\"M14.017 23.597c-.613.772-1.856.348-1.87-.637L11.93 8.543h9.694c1.756 0 2.735 2.028 1.643 3.403z\"/><path fill=\"#3ECF8E\" d=\"M10.074.399c.613-.772 1.856-.35 1.871.636l.095 14.417H2.467c-1.756 0-2.735-2.028-1.643-3.403z\"/></g><defs><linearGradient id=\"svgID0\" x1=\"14.391\" x2=\"19.95\" y1=\"11.74\" y2=\"14.071\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#249361\"/><stop offset=\"1\" stop-color=\"#3ECF8E\"/></linearGradient><linearGradient id=\"svgID1\" x1=\"12.165\" x2=\"15.733\" y1=\"6.51\" y2=\"13.227\" gradientUnits=\"userSpaceOnUse\"><stop/><stop offset=\"1\" stop-opacity=\"0\"/></linearGradient><clipPath id=\"svgID2\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
39
+ },
40
+ "twitter": {
41
+ "body": "<path fill=\"#55ACEE\" d=\"M24 4.542a9.9 9.9 0 01-2.828.776 4.94 4.94 0 002.165-2.725 9.9 9.9 0 01-3.127 1.195 4.924 4.924 0 00-8.39 4.491A13.98 13.98 0 011.67 3.135a4.9 4.9 0 00-.666 2.475c0 1.708.87 3.215 2.19 4.098a4.9 4.9 0 01-2.23-.616v.062a4.93 4.93 0 003.95 4.829 4.9 4.9 0 01-2.224.084 4.93 4.93 0 004.6 3.42 9.88 9.88 0 01-6.115 2.107q-.597 0-1.175-.069a13.94 13.94 0 007.548 2.213c9.057 0 14.01-7.503 14.01-14.01q0-.32-.015-.637A10 10 0 0024 4.542\"/>"
42
+ }
43
+ },
44
+ "lastModified": 1707054238,
45
+ "width": 24,
46
+ "height": 24
47
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/auth",
3
+ "description": "auth icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
package/lib/auth.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "auth",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054238,
4
4
  "icons": {
5
5
  "apple": {
6
6
  "body": "<path d=\"M18.576 12.726c.033 3.625 3.18 4.832 3.215 4.847-.027.085-.503 1.719-1.658 3.407-.999 1.46-2.035 2.913-3.667 2.943-1.604.03-2.12-.951-3.954-.951-1.833 0-2.406.921-3.924.98-1.576.06-2.776-1.577-3.782-3.031-2.057-2.974-3.63-8.404-1.519-12.07C4.336 7.032 6.21 5.88 8.244 5.85c1.547-.03 3.008 1.04 3.954 1.04.945 0 2.72-1.287 4.585-1.098.781.033 2.973.316 4.381 2.376-.113.07-2.616 1.527-2.588 4.558M15.56 3.825c.837-1.013 1.4-2.422 1.246-3.825-1.206.048-2.664.804-3.529 1.815-.775.897-1.453 2.331-1.27 3.706 1.344.104 2.717-.683 3.553-1.696\"/>"
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,200 @@
1
+ {
2
+ "prefix": "base",
3
+ "icons": {
4
+ "accordion-closed": {
5
+ "body": "<path fill=\"currentColor\" d=\"M16.5 12 9 19.5l-1.05-1.05L14.4 12 7.95 5.55 9 4.5z\"/>"
6
+ },
7
+ "accordion-opened": {
8
+ "body": "<path fill=\"currentColor\" d=\"M12 16.5 4.5 9l1.05-1.05L12 14.4l6.45-6.45L19.5 9z\"/>"
9
+ },
10
+ "action-add": {
11
+ "body": "<g fill=\"currentColor\"><path d=\"M12 2a10 10 0 100 20 10 10 0 000-20m0 18a8 8 0 110-16.001A8 8 0 0112 20\"/><path d=\"M15 11h-2V9a1 1 0 00-2 0v2H9a1 1 0 000 2h2v2a1 1 0 002 0v-2h2a1 1 0 000-2\"/></g>"
12
+ },
13
+ "action-clear": {
14
+ "body": "<path fill=\"currentColor\" d=\"M6 19a2 2 0 002 2h8a2 2 0 002-2V7H6zM8 9h8v10H8zm7.5-5-1-1h-5l-1 1H5v2h14V4z\"/>"
15
+ },
16
+ "action-close": {
17
+ "body": "<g fill=\"currentColor\"><path d=\"M12 1.5C6.15 1.5 1.5 6.15 1.5 12S6.15 22.5 12 22.5 22.5 17.85 22.5 12 17.85 1.5 12 1.5M12 21c-4.95 0-9-4.05-9-9s4.05-9 9-9 9 4.05 9 9-4.05 9-9 9\"/><path d=\"M16.05 17.25 12 13.2l-4.05 4.05-1.2-1.2L10.8 12 6.75 7.95l1.2-1.2L12 10.8l4.05-4.05 1.2 1.2L13.2 12l4.05 4.05z\"/></g>"
18
+ },
19
+ "action-cross": {
20
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 11.067 5.974 5 5 5.98 10.98 12 5 18.02l.974.98L12 12.933 18.026 19l.974-.98L13.02 12 19 5.98 18.026 5z\" clip-rule=\"evenodd\"/>"
21
+ },
22
+ "action-remove": {
23
+ "body": "<g fill=\"currentColor\"><path d=\"M12 2a10 10 0 100 20 10 10 0 000-20m0 18a8 8 0 110-16 8 8 0 010 16\"/><path d=\"M15 11H9a1 1 0 000 2h6a1 1 0 000-2\"/></g>"
24
+ },
25
+ "action-search": {
26
+ "body": "<path fill=\"currentColor\" d=\"M10 2.75a7.25 7.25 0 015.63 11.819l4.9 4.9a.75.75 0 01-.976 1.134l-.084-.073-4.901-4.9A7.25 7.25 0 1110 2.75m0 1.5a5.75 5.75 0 100 11.5 5.75 5.75 0 000-11.5\"/>"
27
+ },
28
+ "action-sort-down": {
29
+ "body": "<path fill=\"currentColor\" d=\"m12 21-5.25-5.25L7.8 14.7l4.2 4.2 4.2-4.2 1.05 1.05z\"/>"
30
+ },
31
+ "action-sort-up": {
32
+ "body": "<path fill=\"currentColor\" d=\"m12 3 5.25 5.25L16.2 9.3 12 5.1 7.8 9.3 6.75 8.25z\"/>"
33
+ },
34
+ "arrow-down": {
35
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M18.78 11.22a.75.75 0 010 1.06l-6.25 6.25a.75.75 0 01-1.06 0l-6.25-6.25a.75.75 0 011.06-1.06l4.97 4.97V6.75a.75.75 0 111.5 0v9.44l4.97-4.97a.75.75 0 011.06 0\" clip-rule=\"evenodd\"/>"
36
+ },
37
+ "arrow-left": {
38
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M13.78 18.78a.75.75 0 01-1.06 0l-6.25-6.25a.75.75 0 010-1.06l6.25-6.25a.75.75 0 011.06 1.06l-4.97 4.97h9.44a.75.75 0 110 1.5H8.81l4.97 4.97a.75.75 0 010 1.06\" clip-rule=\"evenodd\"/>"
39
+ },
40
+ "arrow-right": {
41
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M11.22 18.78a.75.75 0 001.06 0l6.25-6.25a.75.75 0 000-1.06l-6.25-6.25a.75.75 0 00-1.06 1.06l4.97 4.97H6.75a.75.75 0 100 1.5h9.44l-4.97 4.97a.75.75 0 000 1.06\" clip-rule=\"evenodd\"/>"
42
+ },
43
+ "arrow-up": {
44
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M5.22 13.78a.75.75 0 010-1.06l6.25-6.25a.75.75 0 011.06 0l6.25 6.25a.75.75 0 01-1.06 1.06l-4.97-4.97v9.44a.75.75 0 11-1.5 0V8.81l-4.97 4.97a.75.75 0 01-1.06 0\" clip-rule=\"evenodd\"/>"
45
+ },
46
+ "badge-fail": {
47
+ "body": "<g fill=\"currentColor\"><path d=\"m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 013.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 010 4.272l-1.01 1.375a2.1 2.1 0 00-.384.929l-.259 1.687a3.61 3.61 0 01-3.021 3.02l-1.686.259a2.1 2.1 0 00-.929.384l-1.375 1.01a3.61 3.61 0 01-4.272 0l-1.375-1.01a2.1 2.1 0 00-.929-.384l-1.687-.259a3.61 3.61 0 01-3.02-3.021l-.259-1.686a2.1 2.1 0 00-.384-.929L1.2 14.136a3.61 3.61 0 010-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 013.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 014.272 0m-3.384 1.209-1.375 1.01a3.6 3.6 0 01-1.59.658l-1.686.258a2.11 2.11 0 00-1.766 1.766l-.258 1.686a3.6 3.6 0 01-.658 1.589l-1.01 1.376a2.11 2.11 0 000 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.6 3.6 0 011.589.658l1.376 1.01a2.11 2.11 0 002.496 0l1.375-1.01a3.6 3.6 0 011.59-.657l1.686-.26a2.11 2.11 0 001.766-1.765l.258-1.686a3.6 3.6 0 01.658-1.589l1.01-1.376a2.11 2.11 0 000-2.496l-1.01-1.375a3.6 3.6 0 01-.657-1.59l-.26-1.686a2.11 2.11 0 00-1.765-1.766l-1.686-.258a3.6 3.6 0 01-1.589-.658l-1.376-1.01a2.11 2.11 0 00-2.496 0\"/><path d=\"M9.036 7.976a.75.75 0 00-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 101.06 1.06L12 13.06l2.963 2.964a.75.75 0 001.061-1.06L13.061 12l2.963-2.964a.75.75 0 10-1.06-1.06L12 10.939z\"/></g>"
48
+ },
49
+ "badge-pass": {
50
+ "body": "<g fill=\"currentColor\"><path d=\"M17.03 9.78a.75.75 0 00-1.06-1.06l-5.47 5.47-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0z\"/><path d=\"m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 013.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 010 4.272l-1.01 1.375a2.1 2.1 0 00-.384.929l-.259 1.687a3.61 3.61 0 01-3.021 3.02l-1.686.259a2.1 2.1 0 00-.929.384l-1.375 1.01a3.61 3.61 0 01-4.272 0l-1.375-1.01a2.1 2.1 0 00-.929-.384l-1.687-.259a3.61 3.61 0 01-3.02-3.021l-.259-1.686a2.1 2.1 0 00-.384-.929L1.2 14.136a3.61 3.61 0 010-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 013.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 014.272 0m-3.384 1.209-1.375 1.01a3.6 3.6 0 01-1.59.658l-1.686.258a2.11 2.11 0 00-1.766 1.766l-.258 1.686a3.6 3.6 0 01-.658 1.589l-1.01 1.376a2.11 2.11 0 000 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.6 3.6 0 011.589.658l1.376 1.01a2.11 2.11 0 002.496 0l1.375-1.01a3.6 3.6 0 011.59-.657l1.686-.26a2.11 2.11 0 001.766-1.765l.258-1.686a3.6 3.6 0 01.658-1.589l1.01-1.376a2.11 2.11 0 000-2.496l-1.01-1.375a3.6 3.6 0 01-.657-1.59l-.26-1.686a2.11 2.11 0 00-1.765-1.766l-1.686-.258a3.6 3.6 0 01-1.589-.658l-1.376-1.01a2.11 2.11 0 00-2.496 0\"/></g>"
51
+ },
52
+ "badge-unknown": {
53
+ "body": "<g fill=\"currentColor\"><path d=\"m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 013.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 010 4.272l-1.01 1.375a2.1 2.1 0 00-.384.929l-.259 1.687a3.61 3.61 0 01-3.021 3.02l-1.686.259a2.1 2.1 0 00-.929.384l-1.375 1.01a3.61 3.61 0 01-4.272 0l-1.375-1.01a2.1 2.1 0 00-.929-.384l-1.687-.259a3.61 3.61 0 01-3.02-3.021l-.259-1.686a2.1 2.1 0 00-.384-.929L1.2 14.136a3.61 3.61 0 010-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 013.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 014.272 0m-3.384 1.209-1.375 1.01a3.6 3.6 0 01-1.59.658l-1.686.258a2.11 2.11 0 00-1.766 1.766l-.258 1.686a3.6 3.6 0 01-.658 1.589l-1.01 1.376a2.11 2.11 0 000 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.6 3.6 0 011.589.658l1.376 1.01a2.11 2.11 0 002.496 0l1.375-1.01a3.6 3.6 0 011.59-.657l1.686-.26a2.11 2.11 0 001.766-1.765l.258-1.686a3.6 3.6 0 01.658-1.589l1.01-1.376a2.11 2.11 0 000-2.496l-1.01-1.375a3.6 3.6 0 01-.657-1.59l-.26-1.686a2.11 2.11 0 00-1.765-1.766l-1.686-.258a3.6 3.6 0 01-1.589-.658l-1.376-1.01a2.11 2.11 0 00-2.496 0\"/><path d=\"M10.97 8.265a1.45 1.45 0 00-.487.57.75.75 0 01-1.341-.67c.2-.402.513-.826.997-1.148C10.627 6.69 11.244 6.5 12 6.5c.658 0 1.369.195 1.934.619a2.45 2.45 0 011.004 2.006c0 1.033-.513 1.72-1.027 2.215-.19.183-.399.358-.579.508l-.147.123q-.232.19-.435.409v1.37a.75.75 0 11-1.5 0v-1.473c0-.237.067-.504.247-.736.22-.28.486-.517.718-.714l.183-.153.001-.001c.172-.143.324-.27.47-.412.368-.355.569-.676.569-1.136a.95.95 0 00-.404-.806C12.766 8.118 12.384 8 12 8c-.494 0-.814.121-1.03.265M13 17a1 1 0 11-2 0 1 1 0 012 0\"/></g>"
54
+ },
55
+ "badge-warn": {
56
+ "body": "<g fill=\"currentColor\"><path d=\"m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 013.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 010 4.272l-1.01 1.375a2.1 2.1 0 00-.384.929l-.259 1.687a3.61 3.61 0 01-3.021 3.02l-1.686.259a2.1 2.1 0 00-.929.384l-1.375 1.01a3.61 3.61 0 01-4.272 0l-1.375-1.01a2.1 2.1 0 00-.929-.384l-1.687-.259a3.61 3.61 0 01-3.02-3.021l-.259-1.686a2.1 2.1 0 00-.384-.929L1.2 14.136a3.61 3.61 0 010-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 013.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 014.272 0m-3.384 1.209-1.375 1.01a3.6 3.6 0 01-1.59.658l-1.686.258a2.11 2.11 0 00-1.766 1.766l-.258 1.686a3.6 3.6 0 01-.658 1.589l-1.01 1.376a2.11 2.11 0 000 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.6 3.6 0 011.589.658l1.376 1.01a2.11 2.11 0 002.496 0l1.375-1.01a3.6 3.6 0 011.59-.657l1.686-.26a2.11 2.11 0 001.766-1.765l.258-1.686a3.6 3.6 0 01.658-1.589l1.01-1.376a2.11 2.11 0 000-2.496l-1.01-1.375a3.6 3.6 0 01-.657-1.59l-.26-1.686a2.11 2.11 0 00-1.765-1.766l-1.686-.258a3.6 3.6 0 01-1.589-.658l-1.376-1.01a2.11 2.11 0 00-2.496 0\"/><path d=\"M13 16a1 1 0 11-2 0 1 1 0 012 0m-.25-8.25a.75.75 0 10-1.5 0v4.5a.75.75 0 101.5 0z\"/></g>"
57
+ },
58
+ "checkbox-checked": {
59
+ "body": "<path fill=\"currentColor\" d=\"M6.25 3A3.25 3.25 0 003 6.25v11.5A3.25 3.25 0 006.25 21h11.5A3.25 3.25 0 0021 17.75V6.25A3.25 3.25 0 0017.75 3zM4.5 6.25c0-.966.784-1.75 1.75-1.75h11.5c.966 0 1.75.784 1.75 1.75v11.5a1.75 1.75 0 01-1.75 1.75H6.25a1.75 1.75 0 01-1.75-1.75zm12.78 3.03a.75.75 0 10-1.06-1.06l-6.223 6.216L7.78 12.22a.75.75 0 00-1.06 1.06l2.745 2.746a.75.75 0 001.06 0l6.754-6.745z\"/>"
60
+ },
61
+ "checkbox-unchecked": {
62
+ "body": "<path fill=\"currentColor\" d=\"M3 6.25A3.25 3.25 0 016.25 3h11.5A3.25 3.25 0 0121 6.25v11.5A3.25 3.25 0 0117.75 21H6.25A3.25 3.25 0 013 17.75zM6.25 4.5A1.75 1.75 0 004.5 6.25v11.5c0 .966.784 1.75 1.75 1.75h11.5a1.75 1.75 0 001.75-1.75V6.25a1.75 1.75 0 00-1.75-1.75z\"/>"
63
+ },
64
+ "checkbox-undefined": {
65
+ "body": "<path fill=\"currentColor\" d=\"M6.25 3A3.25 3.25 0 003 6.25v11.5A3.25 3.25 0 006.25 21h11.5A3.25 3.25 0 0021 17.75V6.25A3.25 3.25 0 0017.75 3zM4.5 6.25c0-.966.784-1.75 1.75-1.75h11.5c.966 0 1.75.784 1.75 1.75v11.5a1.75 1.75 0 01-1.75 1.75H6.25a1.75 1.75 0 01-1.75-1.75zM7.25 6C6.56 6 6 6.56 6 7.25v9.5c0 .69.56 1.25 1.25 1.25h9.5c.69 0 1.25-.56 1.25-1.25v-9.5C18 6.56 17.44 6 16.75 6z\"/>"
66
+ },
67
+ "checkbox-unknown": {
68
+ "body": "<path fill=\"currentColor\" d=\"M6.25 3A3.25 3.25 0 003 6.25v11.5A3.25 3.25 0 006.25 21h11.5A3.25 3.25 0 0021 17.75V6.25A3.25 3.25 0 0017.75 3zM4.5 6.25c0-.966.784-1.75 1.75-1.75h11.5c.966 0 1.75.784 1.75 1.75v11.5a1.75 1.75 0 01-1.75 1.75H6.25a1.75 1.75 0 01-1.75-1.75zM7.25 6C6.56 6 6 6.56 6 7.25v9.5c0 .69.56 1.25 1.25 1.25h9.5c.69 0 1.25-.56 1.25-1.25v-9.5C18 6.56 17.44 6 16.75 6z\"/>"
69
+ },
70
+ "folder-closed": {
71
+ "body": "<path fill=\"currentColor\" d=\"M4 20q-.824 0-1.412-.587A1.93 1.93 0 012 18V6q0-.824.588-1.412A1.92 1.92 0 014 4h5.175a1.98 1.98 0 011.4.575L12 6h8q.825 0 1.413.588Q22 7.175 22 8v10q0 .825-.587 1.413A1.93 1.93 0 0120 20z\"/>"
72
+ },
73
+ "folder-opened": {
74
+ "body": "<path fill=\"currentColor\" d=\"M4 20q-.824 0-1.412-.587A1.93 1.93 0 012 18V6q0-.824.588-1.412A1.92 1.92 0 014 4h5.175a1.98 1.98 0 011.4.575L12 6h8q.825 0 1.413.588Q22 7.175 22 8H6q-.824 0-1.412.587A1.93 1.93 0 004 10v8l1.975-6.575q.2-.65.738-1.038A2 2 0 017.9 10h12.9q1.025 0 1.613.812.587.813.312 1.763l-1.8 6q-.2.65-.737 1.038A2 2 0 0119 20z\"/>"
75
+ },
76
+ "format-center": {
77
+ "body": "<path fill=\"currentColor\" d=\"M4 5a1 1 0 000 2h16a1 1 0 100-2zm0 8a1 1 0 000 2h16a1 1 0 000-2zm2-3a1 1 0 011-1h10a1 1 0 110 2H7a1 1 0 01-1-1m1 7a1 1 0 000 2h10a1 1 0 000-2z\"/>"
78
+ },
79
+ "format-justify": {
80
+ "body": "<path fill=\"currentColor\" d=\"M4 5a1 1 0 000 2h16a1 1 0 100-2zm0 4a1 1 0 000 2h16a1 1 0 000-2zm-1 5a1 1 0 011-1h16a1 1 0 010 2H4a1 1 0 01-1-1m1 3a1 1 0 000 2h16a1 1 0 000-2z\"/>"
81
+ },
82
+ "format-left": {
83
+ "body": "<path fill=\"currentColor\" d=\"M4 5a1 1 0 000 2h16a1 1 0 100-2zm0 4a1 1 0 000 2h8a1 1 0 000-2zm-1 5a1 1 0 011-1h16a1 1 0 010 2H4a1 1 0 01-1-1m1 3a1 1 0 000 2h8a1 1 0 000-2z\"/>"
84
+ },
85
+ "format-right": {
86
+ "body": "<path fill=\"currentColor\" d=\"M20 5a1 1 0 110 2H4a1 1 0 010-2zm0 4a1 1 0 110 2h-8a1 1 0 010-2zm1 5a1 1 0 00-1-1H4a1 1 0 000 2h16a1 1 0 001-1m-1 3a1 1 0 010 2h-8a1 1 0 010-2z\"/>"
87
+ },
88
+ "heart-filled": {
89
+ "body": "<path fill=\"currentColor\" d=\"M21.633 6.647a6.1 6.1 0 00-1.334-1.94A6.22 6.22 0 0015.93 2.93 6.26 6.26 0 0012 4.315 6.26 6.26 0 008.07 2.93 6.22 6.22 0 003.7 4.706a6.06 6.06 0 00-1.825 4.33c0 .78.16 1.593.476 2.42.265.692.644 1.409 1.13 2.133.768 1.146 1.825 2.342 3.138 3.553a35 35 0 004.42 3.453l.556.356a.75.75 0 00.808 0l.556-.357a35.5 35.5 0 004.42-3.452c1.312-1.211 2.37-2.407 3.138-3.553.485-.724.867-1.441 1.13-2.133.316-.827.476-1.64.476-2.42a6 6 0 00-.49-2.39\"/>"
90
+ },
91
+ "heart-outlined": {
92
+ "body": "<path fill=\"currentColor\" d=\"M21.633 6.647a6.1 6.1 0 00-1.334-1.94A6.22 6.22 0 0015.93 2.93 6.26 6.26 0 0012 4.315 6.26 6.26 0 008.07 2.93 6.22 6.22 0 003.7 4.706a6.06 6.06 0 00-1.825 4.33c0 .78.16 1.593.476 2.42.265.692.644 1.409 1.13 2.133.768 1.146 1.825 2.342 3.138 3.553a35 35 0 004.42 3.453l.556.356a.75.75 0 00.808 0l.556-.357a35.5 35.5 0 004.42-3.452c1.312-1.211 2.37-2.407 3.138-3.553.485-.724.867-1.441 1.13-2.133.316-.827.476-1.64.476-2.42a6 6 0 00-.49-2.39M12 19.097S3.656 13.75 3.656 9.035c0-2.388 1.976-4.324 4.414-4.324 1.713 0 3.199.956 3.93 2.353a4.43 4.43 0 013.93-2.353c2.438 0 4.414 1.936 4.414 4.324 0 4.716-8.344 10.062-8.344 10.062\"/>"
93
+ },
94
+ "logout": {
95
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M9.002 7c.012-2.175.109-3.353.877-4.121C10.758 2 12.172 2 15 2h1c2.829 0 4.243 0 5.122.879C22 3.757 22 5.172 22 8v8c0 2.828 0 4.243-.878 5.121C20.242 22 18.829 22 16 22h-1c-2.828 0-4.242 0-5.121-.879-.768-.768-.865-1.946-.877-4.121\"/><path stroke-linejoin=\"round\" d=\"M15 12H2m0 0 3.5-3M2 12l3.5 3\"/></g>"
96
+ },
97
+ "menu": {
98
+ "body": "<path fill=\"currentColor\" d=\"M3 4.5h18V6H3zM3 18h18v1.5H3zm0-9h18v1.5H3zm0 4.5h18V15H3z\"/>"
99
+ },
100
+ "minus": {
101
+ "body": "<g fill=\"currentColor\"><path d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m1 15a1 1 0 01-1 1H6a1 1 0 01-1-1V6a1 1 0 011-1h12a1 1 0 011 1z\"/><path d=\"M15 11H9a1 1 0 000 2h6a1 1 0 000-2\"/></g>"
102
+ },
103
+ "mode-dark": {
104
+ "body": "<path fill=\"currentColor\" d=\"M10.127 4.06a11.306 11.306 0 008.695 13.646 8.34 8.34 0 01-5.981 2.543c-.104 0-.209.003-.314 0a8.32 8.32 0 01-2.4-16.188m1.108-1.811a1 1 0 00-.131.012 9.822 9.822 0 001.369 19.486c.122.004.245 0 .367 0a9.8 9.8 0 008.027-4.167.757.757 0 00-.587-1.173 9.81 9.81 0 01-8.362-13.123.76.76 0 00-.683-1.035\"/>"
105
+ },
106
+ "mode-light": {
107
+ "body": "<path fill=\"currentColor\" d=\"M12 9.004a3 3 0 110 6 3 3 0 010-6m0-1.5a4.5 4.5 0 100 9 4.5 4.5 0 000-9M4.046 5.11l1.061-1.06 2.63 2.629-1.062 1.06zM1.5 11.254h3.75v1.5H1.5zm2.545 7.644 2.63-2.629 1.06 1.06-2.628 2.63zm7.205-.144h1.5v3.75h-1.5zm5.015-1.425 1.06-1.06 2.63 2.629-1.06 1.06zm2.485-6.075h3.75v1.5h-3.75zm-2.485-4.576 2.63-2.63 1.06 1.061-2.63 2.63zM11.25 1.504h1.5v3.75h-1.5z\"/>"
108
+ },
109
+ "navigate-down": {
110
+ "body": "<path fill=\"currentColor\" d=\"M12 16.5 4.5 9l1.05-1.05L12 14.4l6.45-6.45L19.5 9z\"/>"
111
+ },
112
+ "navigate-left": {
113
+ "body": "<path fill=\"currentColor\" d=\"M7.5 12 15 4.5l1.05 1.05L9.6 12l6.45 6.45L15 19.5z\"/>"
114
+ },
115
+ "navigate-right": {
116
+ "body": "<path fill=\"currentColor\" d=\"M16.5 12 9 19.5l-1.05-1.05L14.4 12 7.95 5.55 9 4.5z\"/>"
117
+ },
118
+ "navigate-up": {
119
+ "body": "<path fill=\"currentColor\" d=\"m12 7.5 7.5 7.5-1.05 1.05L12 9.6l-6.45 6.45L4.5 15z\"/>"
120
+ },
121
+ "node-closed": {
122
+ "body": "<path fill=\"currentColor\" d=\"M16.5 12 9 19.5l-1.05-1.05L14.4 12 7.95 5.55 9 4.5z\"/>"
123
+ },
124
+ "node-opened": {
125
+ "body": "<path fill=\"currentColor\" d=\"M12 16.5 4.5 9l1.05-1.05L12 14.4l6.45-6.45L19.5 9z\"/>"
126
+ },
127
+ "palette": {
128
+ "body": "<path fill=\"currentColor\" d=\"M12 22a9.7 9.7 0 01-3.875-.788 10.1 10.1 0 01-3.187-2.15 10.1 10.1 0 01-2.15-3.187A9.7 9.7 0 012 12q0-2.075.812-3.9a10.1 10.1 0 012.201-3.175Q6.4 3.575 8.25 2.787A10 10 0 0112.2 2q2 0 3.775.688a9.9 9.9 0 013.112 1.9 9.1 9.1 0 012.125 2.875A8.3 8.3 0 0122 11.05q0 2.875-1.75 4.412Q18.5 17 16 17h-1.85q-.225 0-.312.125a.47.47 0 00-.088.275q0 .3.375.862t.375 1.288q0 1.25-.688 1.85T12 22m-5.5-9q.65 0 1.075-.425T8 11.5t-.425-1.075T6.5 10t-1.075.425T5 11.5t.425 1.075T6.5 13m3-4q.65 0 1.075-.425T11 7.5t-.425-1.075T9.5 6t-1.075.425T8 7.5t.425 1.075T9.5 9m5 0q.65 0 1.075-.425T16 7.5t-.425-1.075T14.5 6t-1.075.425T13 7.5t.425 1.075T14.5 9m3 4q.65 0 1.075-.425T19 11.5t-.425-1.075T17.5 10t-1.075.425T16 11.5t.425 1.075T17.5 13\"/>"
129
+ },
130
+ "plus": {
131
+ "body": "<g fill=\"currentColor\"><path d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m1 15a1 1 0 01-1 1H6a1 1 0 01-1-1V6a1 1 0 011-1h12a1 1 0 011 1z\"/><path d=\"M15 11h-2V9a1 1 0 00-2 0v2H9a1 1 0 000 2h2v2a1 1 0 002 0v-2h2a1 1 0 000-2\"/></g>"
132
+ },
133
+ "properties": {
134
+ "body": "<g fill=\"currentColor\"><path d=\"M8 16a2 2 0 11-4 0 2 2 0 014 0\"/><path fill-rule=\"evenodd\" d=\"M12 11c-.263 0-.5.198-.5.461V20.5a.5.5 0 001 0v-9.039c0-.263-.237-.461-.5-.461m-.5-3.5c0 .276.237.5.513.5a.49.49 0 00.487-.5v-4a.5.5 0 00-1 0zm6.5 9c-.263 0-.5.198-.5.461V20.5a.5.5 0 001 0v-3.539c0-.263-.237-.461-.5-.461m-.5-3.5c0 .276.237.5.513.5a.49.49 0 00.487-.5V3.5a.5.5 0 00-1 0zM6 19c-.263 0-.5.198-.5.461V20.5a.5.5 0 001 0v-1.039c0-.263-.237-.461-.5-.461m-.5-3.5c0 .276.237.5.513.5a.49.49 0 00.487-.5v-12a.5.5 0 10-1 0z\" clip-rule=\"evenodd\"/><path d=\"M14 8a2 2 0 11-4 0 2 2 0 014 0m6 5.5a2 2 0 11-4 0 2 2 0 014 0\"/></g>"
135
+ },
136
+ "radio-group": {
137
+ "body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M10.5 5.5h11m-11 3h11m-11 7h11m-11 3h11\"/><path fill=\"currentColor\" d=\"M5 4.375a2.625 2.625 0 100 5.25 2.625 2.625 0 000-5.25M2 7a3 3 0 116 0 3 3 0 01-6 0m3 11.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75M5 14a3 3 0 100 6 3 3 0 000-6m-2.625 3a2.625 2.625 0 115.25 0 2.625 2.625 0 01-5.25 0\"/></g>"
138
+ },
139
+ "radio-off": {
140
+ "body": "<path fill=\"currentColor\" d=\"M12 3.6a8.4 8.4 0 100 16.8 8.4 8.4 0 000-16.8M2.4 12a9.6 9.6 0 1119.2 0 9.6 9.6 0 01-19.2 0\"/>"
141
+ },
142
+ "radio-on": {
143
+ "body": "<path fill=\"currentColor\" d=\"M12 18a6 6 0 100-12 6 6 0 000 12m0-15.6a9.6 9.6 0 100 19.2 9.6 9.6 0 000-19.2M3.6 12a8.4 8.4 0 1116.8 0 8.4 8.4 0 01-16.8 0\"/>"
144
+ },
145
+ "rating-empty": {
146
+ "body": "<path fill=\"currentColor\" d=\"m12 4.89 2.07 4.185.345.75.75.113 4.62.667L16.5 13.83l-.562.547.135.75.787 4.598-4.132-2.168L12 17.25l-.697.367-4.133 2.138.75-4.597.135-.75-.555-.578-3.315-3.262 4.62-.668.75-.113.345-.75zm0-3.39L8.588 8.415.96 9.518l5.52 5.384L5.175 22.5 12 18.915l6.825 3.585-1.305-7.597 5.52-5.378-7.627-1.11z\"/>"
147
+ },
148
+ "rating-filled": {
149
+ "body": "<path fill=\"currentColor\" d=\"M12 1.5 8.588 8.415.96 9.518l5.52 5.384L5.175 22.5 12 18.915l6.825 3.585-1.305-7.597 5.52-5.378-7.627-1.11z\"/>"
150
+ },
151
+ "rating-half": {
152
+ "body": "<path fill=\"currentColor\" d=\"M8.588 8.415.96 9.525l5.52 5.377L5.175 22.5 12 18.915V1.5z\"/>"
153
+ },
154
+ "selector": {
155
+ "body": "<path fill=\"currentColor\" d=\"m12 21-5.25-5.25 1.058-1.057L12 18.878l4.192-4.185 1.058 1.057zm0-18 5.25 5.25-1.058 1.057L12 5.123 7.808 9.308 6.75 8.25z\"/>"
156
+ },
157
+ "selector-closed": {
158
+ "body": "<path fill=\"currentColor\" d=\"m12 21-5.25-5.25 1.058-1.057L12 18.878l4.192-4.185 1.058 1.057zm0-18 5.25 5.25-1.058 1.057L12 5.123 7.808 9.308 6.75 8.25z\"/>"
159
+ },
160
+ "selector-opened": {
161
+ "body": "<path fill=\"currentColor\" d=\"m12 21-5.25-5.25 1.058-1.057L12 18.878l4.192-4.185 1.058 1.057zm0-18 5.25 5.25-1.058 1.057L12 5.123 7.808 9.308 6.75 8.25z\"/>"
162
+ },
163
+ "state-error": {
164
+ "body": "<path fill=\"currentColor\" d=\"M12 1.5A10.436 10.436 0 001.5 12 10.435 10.435 0 0012 22.5 10.435 10.435 0 0022.5 12 10.436 10.436 0 0012 1.5m4.084 15.75L6.75 7.917 7.917 6.75l9.333 9.334z\"/>"
165
+ },
166
+ "state-info": {
167
+ "body": "<path fill=\"currentColor\" d=\"M12 2.25A9.75 9.75 0 1021.75 12 9.76 9.76 0 0012 2.25m-.375 4.5a1.125 1.125 0 110 2.25 1.125 1.125 0 010-2.25m1.125 10.5a1.5 1.5 0 01-1.5-1.5V12a.75.75 0 110-1.5 1.5 1.5 0 011.5 1.5v3.75a.75.75 0 110 1.5\"/>"
168
+ },
169
+ "state-success": {
170
+ "body": "<g fill=\"currentColor\"><path d=\"M17.28 9.28a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0z\"/><path d=\"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 1019 0 9.5 9.5 0 00-19 0\"/></g>"
171
+ },
172
+ "state-unknown": {
173
+ "body": "<path fill=\"currentColor\" d=\"M12 2.25A9.75 9.75 0 1021.75 12 9.76 9.76 0 0012 2.25M12 18a1.125 1.125 0 110-2.25A1.125 1.125 0 0112 18m.75-4.568v.068a.75.75 0 11-1.5 0v-.75A.75.75 0 0112 12c1.24 0 2.25-.844 2.25-1.875S13.24 8.25 12 8.25s-2.25.844-2.25 1.875v.375a.75.75 0 11-1.5 0v-.375c0-1.86 1.682-3.375 3.75-3.375s3.75 1.514 3.75 3.375c0 1.63-1.29 2.993-3 3.307\"/>"
174
+ },
175
+ "state-warning": {
176
+ "body": "<path fill=\"currentColor\" d=\"M22.2 17.633 14.002 3.396a2.322 2.322 0 00-4.004 0L1.8 17.633a2.2 2.2 0 000 2.224A2.28 2.28 0 003.802 21h16.397a2.28 2.28 0 002-1.143 2.2 2.2 0 00.001-2.224M11.25 9.75a.75.75 0 111.5 0v3.75a.75.75 0 11-1.5 0zM12 18a1.124 1.124 0 110-2.249A1.124 1.124 0 0112 18\"/>"
177
+ },
178
+ "swatch": {
179
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10 3a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2zm9.66 9.111c.731.256 1.27.924 1.334 1.727L21 19a2 2 0 01-1.85 1.995L19 21h-6v-2.23zM7.5 15a1.5 1.5 0 100 3 1.5 1.5 0 000-3m6.136-11a2 2 0 012.701-.117l.127.117L20 7.536a2 2 0 01.204 2.589L13 17.357V4.636z\" clip-rule=\"evenodd\"/>"
180
+ },
181
+ "themes": {
182
+ "body": "<path fill=\"currentColor\" d=\"M4 6a2 2 0 00-2 2v12c0 1.1.9 2 2 2h12a2 2 0 002-2H4zm16-4H8a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V4a2 2 0 00-2-2m-5 14H8V9h7zm5 0h-3V9h3zm0-9H8V4h12z\"/>"
183
+ },
184
+ "validity-failed": {
185
+ "body": "<path fill=\"currentColor\" d=\"M12 1.5A10.436 10.436 0 001.5 12 10.435 10.435 0 0012 22.5 10.435 10.435 0 0022.5 12 10.436 10.436 0 0012 1.5m4.084 15.75L6.75 7.917 7.917 6.75l9.333 9.334z\"/>"
186
+ },
187
+ "validity-passed": {
188
+ "body": "<path fill=\"currentColor\" d=\"M12 2.25A9.75 9.75 0 1021.75 12 9.76 9.76 0 0012 2.25m-.375 4.5a1.125 1.125 0 110 2.25 1.125 1.125 0 010-2.25m1.125 10.5a1.5 1.5 0 01-1.5-1.5V12a.75.75 0 110-1.5 1.5 1.5 0 011.5 1.5v3.75a.75.75 0 110 1.5\"/>"
189
+ },
190
+ "validity-unknown": {
191
+ "body": "<path fill=\"currentColor\" d=\"M12 2.25A9.75 9.75 0 1021.75 12 9.76 9.76 0 0012 2.25M12 18a1.125 1.125 0 110-2.25A1.125 1.125 0 0112 18m.75-4.568v.068a.75.75 0 11-1.5 0v-.75A.75.75 0 0112 12c1.24 0 2.25-.844 2.25-1.875S13.24 8.25 12 8.25s-2.25.844-2.25 1.875v.375a.75.75 0 11-1.5 0v-.375c0-1.86 1.682-3.375 3.75-3.375s3.75 1.514 3.75 3.375c0 1.63-1.29 2.993-3 3.307\"/>"
192
+ },
193
+ "validity-warning": {
194
+ "body": "<path fill=\"currentColor\" d=\"M22.2 17.633 14.002 3.396a2.322 2.322 0 00-4.004 0L1.8 17.633a2.2 2.2 0 000 2.224A2.28 2.28 0 003.802 21h16.397a2.28 2.28 0 002-1.143 2.2 2.2 0 00.001-2.224M11.25 9.75a.75.75 0 111.5 0v3.75a.75.75 0 11-1.5 0zM12 18a1.124 1.124 0 110-2.249A1.124 1.124 0 0112 18\"/>"
195
+ }
196
+ },
197
+ "lastModified": 1707054239,
198
+ "width": 24,
199
+ "height": 24
200
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/base",
3
+ "description": "base icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
package/lib/base.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "base",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054239,
4
4
  "icons": {
5
5
  "accordion-closed": {
6
6
  "body": "<path fill=\"currentColor\" d=\"M16.5 12 9 19.5l-1.05-1.05L14.4 12 7.95 5.55 9 4.5z\"/>"
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,92 @@
1
+ {
2
+ "prefix": "components",
3
+ "icons": {
4
+ "accordion": {
5
+ "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" d=\"M3 17a1 1 0 00-1 1v3a1 1 0 001 1h18a1 1 0 001-1v-3a1 1 0 00-1-1zm16.133 2.492L18 18.409l.668-.699 1.832 1.75-1.75 1.832-.7-.667z\" clip-rule=\"evenodd\"/><path fill-opacity=\".5\" d=\"M2 7h20v7.5a1 1 0 01-1 1H3a1 1 0 01-1-1z\"/><path fill-rule=\"evenodd\" d=\"M3 2a1 1 0 00-1 1v4h20V3a1 1 0 00-1-1zm15.8 2.383 1.084-1.133.698.668-1.75 1.832L17 4l.668-.7z\" clip-rule=\"evenodd\"/></g>"
6
+ },
7
+ "checkbox": {
8
+ "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" d=\"M11 9.5a.5.5 0 01.5-.5h11a.5.5 0 010 1h-11a.5.5 0 01-.5-.5m0 2.5a.5.5 0 01.5-.5h11a.5.5 0 010 1h-11a.5.5 0 01-.5-.5m.5 2a.5.5 0 000 1h11a.5.5 0 000-1z\" clip-rule=\"evenodd\"/><path d=\"M2.444 8A1.444 1.444 0 001 9.444v5.112A1.444 1.444 0 002.444 16h5.112A1.444 1.444 0 009 14.556V9.444A1.444 1.444 0 007.556 8zm-.777 1.444c0-.429.348-.777.777-.777h5.112c.429 0 .777.348.777.777v5.112a.78.78 0 01-.777.777H2.444a.78.78 0 01-.777-.777zm5.68 1.347a.333.333 0 10-.471-.471L4.11 13.083l-.986-.985a.333.333 0 00-.47.47l1.22 1.221a.333.333 0 00.47 0z\"/></g>"
9
+ },
10
+ "checkbox-group": {
11
+ "body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M10.5 5.5h11m-11 3h11m-11 7h11m-11 3h11\"/><path fill=\"currentColor\" d=\"M2 5.083A1.083 1.083 0 013.083 4h3.834A1.083 1.083 0 018 5.083v3.834A1.083 1.083 0 016.917 10H3.083A1.083 1.083 0 012 8.917zM3.083 4.5a.583.583 0 00-.583.583v3.834c0 .322.261.583.583.583h3.834a.583.583 0 00.583-.583V5.083a.583.583 0 00-.583-.583zm0 9.5A1.083 1.083 0 002 15.083v3.834A1.083 1.083 0 003.083 20h3.834A1.083 1.083 0 008 18.917v-3.834A1.083 1.083 0 006.917 14zM2.5 15.083c0-.322.261-.583.583-.583h3.834c.322 0 .583.261.583.583v3.834a.583.583 0 01-.583.583H3.083a.583.583 0 01-.583-.583zm4.26 1.01a.25.25 0 00-.077-.414.25.25 0 00-.276.061l-2.075 2.072-.739-.739a.25.25 0 00-.353.354l.915.915a.25.25 0 00.353 0z\"/></g>"
12
+ },
13
+ "input-array": {
14
+ "body": "<path fill=\"currentColor\" d=\"M4.11 17.91V7h2.523v.835H5.065v9.239h1.568v.835zm4.586-1.705a.74.74 0 01-.54-.226.74.74 0 01-.227-.541q0-.315.226-.542a.74.74 0 01.541-.226q.315 0 .542.226.225.226.225.541 0 .21-.106.384a.8.8 0 01-.277.281.73.73 0 01-.384.102m3.305.001a.74.74 0 01-.541-.226.74.74 0 01-.226-.541q0-.315.226-.542.225-.226.541-.226.315 0 .541.226t.226.541q0 .21-.106.384a.8.8 0 01-.277.281.73.73 0 01-.384.102m3.305.001a.74.74 0 01-.541-.226.74.74 0 01-.226-.541q0-.315.226-.542.225-.226.54-.226t.542.226.226.541q0 .21-.107.384a.8.8 0 01-.277.281.73.73 0 01-.383.102M19.889 7v10.91h-2.523v-.836h1.568V7.835h-1.568V7z\"/>"
15
+ },
16
+ "input-color": {
17
+ "body": "<rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" fill=\"currentColor\" fill-opacity=\".5\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/>"
18
+ },
19
+ "input-date": {
20
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17 8.2c0-.11.09-.2.2-.2h.6c.11 0 .2.09.2.2V9h1a1 1 0 011 1v5a1 1 0 01-1 1h-6a1 1 0 01-1-1v-5a1 1 0 011-1h1v-.8c0-.11.09-.2.2-.2h.6c.11 0 .2.09.2.2V9h2zM14 10v.8c0 .11.09.2.2.2h.6a.2.2 0 00.2-.2V10h2v.8c0 .11.09.2.2.2h.6a.2.2 0 00.2-.2V10h1v5h-6v-5z\" clip-rule=\"evenodd\"/></g>"
21
+ },
22
+ "input-email": {
23
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"M15.852 8A3.83 3.83 0 0012 11.853v.297A3.85 3.85 0 0015.851 16h2.074v-.592h-2.074a3.26 3.26 0 01-3.258-3.26v-.296a3.24 3.24 0 013.258-3.259 3.15 3.15 0 013.26 3.26c0 1.063-.415 1.48-1.085 1.48-.468 0-.693-.382-.693-.888v-2.37h-.593v.575a1.14 1.14 0 00-1.037-.575 1.623 1.623 0 00-1.63 1.611v.629a1.623 1.623 0 001.63 1.611 1.27 1.27 0 001.185-.729 1.29 1.29 0 001.159.73c.91 0 1.656-.593 1.656-2.075a3.77 3.77 0 00-3.851-3.851m.888 4.315a1.037 1.037 0 01-2.074 0v-.629a1.037 1.037 0 012.074 0z\"/></g>"
24
+ },
25
+ "input-file": {
26
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"M18.833 8h-4.666c-.31 0-.607.105-.825.293A.93.93 0 0013 9v6c0 .265.123.52.342.707.218.188.515.293.825.293h4.666c.31 0 .607-.105.825-.293A.93.93 0 0020 15V9a.93.93 0 00-.342-.707A1.27 1.27 0 0018.833 8m-2.625 3.354-.668.573a.32.32 0 01-.207.073.32.32 0 01-.206-.073.23.23 0 01-.086-.177c0-.066.031-.13.086-.177l1.167-1a.3.3 0 01.094-.054.33.33 0 01.318.054l1.167 1q.041.034.063.081a.22.22 0 010 .192.3.3 0 01-.063.081.3.3 0 01-.095.054.34.34 0 01-.223 0 .3.3 0 01-.095-.054l-.668-.573v1.896c0 .066-.031.13-.086.177a.32.32 0 01-.206.073.32.32 0 01-.206-.073.23.23 0 01-.086-.177z\"/></g>"
27
+ },
28
+ "input-number": {
29
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M16.202 15.307a.5.5 0 10.985.174l.266-1.508H19a.5.5 0 000-1h-1.371l.353-2H19.6a.5.5 0 000-1h-1.442l.244-1.386a.5.5 0 10-.985-.174l-.275 1.56h-1.984l.244-1.386a.5.5 0 10-.984-.174l-.275 1.56H12.6a.5.5 0 100 1h1.366l-.352 2H12a.5.5 0 100 1h1.437l-.235 1.334a.5.5 0 10.985.174l.266-1.508h1.984zm.411-2.334.353-2h-1.984l-.353 2z\" clip-rule=\"evenodd\"/></g>"
30
+ },
31
+ "input-object": {
32
+ "body": "<path fill=\"currentColor\" d=\"M3.138 12.472v-.529q.712 0 .993-.298.285-.298.286-.997V9.284q0-.588.11-1.018.116-.431.371-.712.255-.282.682-.418Q6.006 7 6.633 7v.835q-.495 0-.78.154a.86.86 0 00-.4.477q-.116.32-.116.818v1.705q0 .332-.09.605a1 1 0 01-.319.469q-.234.195-.669.302-.43.107-1.12.107m3.495 5.437q-.627 0-1.053-.136a1.5 1.5 0 01-.682-.418 1.7 1.7 0 01-.37-.712 4 4 0 01-.111-1.018v-1.364q0-.698-.286-.997-.28-.298-.993-.298v-.528q.69 0 1.121.106.435.107.67.303.234.196.319.468.09.273.09.606v1.704q0 .498.114.818a.86.86 0 00.401.473q.285.158.78.158zm-3.495-4.943v-1.023h1.006v1.023zm5.557 3.239a.74.74 0 01-.54-.226.74.74 0 01-.227-.541q0-.315.226-.542a.74.74 0 01.541-.226q.315 0 .542.226.225.226.225.541 0 .21-.106.384a.8.8 0 01-.277.281.73.73 0 01-.384.102m3.305.001a.74.74 0 01-.541-.226.74.74 0 01-.226-.541q0-.315.226-.542.225-.226.541-.226.315 0 .541.226t.226.541q0 .21-.106.384a.8.8 0 01-.277.281.73.73 0 01-.384.102m3.305.001a.74.74 0 01-.541-.226.74.74 0 01-.226-.541q0-.315.226-.542.225-.226.54-.226t.542.226.226.541q0 .21-.107.384a.8.8 0 01-.277.281.73.73 0 01-.383.102m5.554-3.766v.528q-.71 0-.997.298-.28.3-.281.997v1.364q0 .588-.115 1.018a1.65 1.65 0 01-.366.712q-.256.282-.682.418t-1.053.136v-.835q.494 0 .776-.158a.84.84 0 00.4-.473q.12-.32.12-.818v-1.704q0-.333.085-.606.09-.272.324-.468.234-.197.664-.303.435-.107 1.125-.107M17.366 7q.627 0 1.053.136t.681.418.367.712q.115.43.115 1.018v1.364q0 .699.281.997.285.298.997.298v.529q-.69 0-1.125-.107-.43-.107-.664-.303a1 1 0 01-.324-.468 2 2 0 01-.085-.605V9.284q0-.498-.12-.818a.84.84 0 00-.4-.477q-.282-.154-.776-.154zm3.494 4.943v1.023h-1.005v-1.023z\"/>"
33
+ },
34
+ "input-password": {
35
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"m6.605 14.09.057-1.562-1.321.838L5 12.77l1.392-.724L5 11.32l.34-.597 1.322.838L6.605 10h.682l-.057 1.563 1.321-.839.341.597-1.392.725 1.392.724-.34.597-1.322-.839.057 1.563zm5 0 .057-1.562-1.321.838L10 12.77l1.392-.724L10 11.32l.34-.597 1.322.838L11.605 10h.682l-.057 1.563 1.321-.839.341.597-1.392.725 1.392.724-.34.597-1.322-.839.057 1.563zm5 0 .057-1.562-1.321.838L15 12.77l1.392-.724L15 11.32l.34-.597 1.322.838L16.605 10h.682l-.057 1.563 1.321-.839.341.597-1.392.725 1.392.724-.34.597-1.322-.839.057 1.563z\"/></g>"
36
+ },
37
+ "input-tel": {
38
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"M6.352 13.36v-2.343h.397v2.344zm-.973-.972v-.398h2.343v.398zm4.354-2.074q.224.002.447.085.225.084.409.277.185.192.296.524.112.332.112.833 0 .485-.092.86-.09.375-.263.633a1.16 1.16 0 01-.416.39 1.1 1.1 0 01-.55.134q-.306 0-.545-.121a1.1 1.1 0 01-.39-.34 1.2 1.2 0 01-.194-.505h.433q.059.25.233.414a.66.66 0 00.463.161q.42 0 .664-.368.245-.367.245-1.038h-.028q-.1.15-.237.257a1.04 1.04 0 01-.658.226q-.313 0-.574-.155a1.2 1.2 0 01-.415-.428 1.25 1.25 0 01-.155-.625q0-.333.15-.61.15-.279.422-.444.274-.165.643-.16m0 .39a.75.75 0 00-.403.112.8.8 0 00-.283.299.84.84 0 00-.103.413q0 .228.1.414.101.185.275.295.175.108.4.108a.76.76 0 00.568-.248.9.9 0 00.172-.265.81.81 0 00-.04-.71.8.8 0 00-.281-.302.73.73 0 00-.405-.116m3.24-.34V14h-.44v-3.175h-.021l-.888.59v-.448l.91-.603zm2.616 1.622v.391H14v-.39zM17.683 14l.596-3.636h.356L18.038 14zm-1.655-1.008.057-.356h2.713l-.057.356zM16.405 14 17 10.364h.355L16.76 14zm-.164-2.273.057-.355h2.713l-.057.355z\"/></g>"
39
+ },
40
+ "input-text": {
41
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4.5 8.5A.5.5 0 015 8h3a.5.5 0 010 1H7v6h1a.5.5 0 010 1H5a.5.5 0 010-1h1V9H5a.5.5 0 01-.5-.5\" clip-rule=\"evenodd\"/></g>"
42
+ },
43
+ "input-text-area": {
44
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"20\" x=\"2\" y=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M5 5.95a.25.25 0 01.25-.25h1.5a.25.25 0 010 .5h-.505a.3.3 0 01.005.05v4.25h.5a.25.25 0 110 .5h-1.5a.25.25 0 110-.5h.5V6.25q0-.026.005-.05H5.25A.25.25 0 015 5.95\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M11.5 6.5h7m-7 3.5h7m-13 7h13m-13-3.5h13\"/></g>"
45
+ },
46
+ "input-textarea": {
47
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"20\" x=\"2\" y=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M5 5.95a.25.25 0 01.25-.25h1.5a.25.25 0 010 .5h-.505a.3.3 0 01.005.05v4.25h.5a.25.25 0 110 .5h-1.5a.25.25 0 110-.5h.5V6.25q0-.026.005-.05H5.25A.25.25 0 015 5.95\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M11.5 6.5h7m-7 3.5h7m-13 7h13m-13-3.5h13\"/></g>"
48
+ },
49
+ "input-time": {
50
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"M15.6 12.4V9.6h1v2.386l1.307 1.307L17.2 14z\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M20 12a4 4 0 11-8 0 4 4 0 018 0m-1 0a3 3 0 11-6 0 3 3 0 016 0\" clip-rule=\"evenodd\"/></g>"
51
+ },
52
+ "input-url": {
53
+ "body": "<g fill=\"none\"><rect width=\"20\" height=\"12\" x=\"2\" y=\"6\" stroke=\"currentColor\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"M5.42 12.166v1.64H5v-3.635h.42v1.335h.035a.77.77 0 01.287-.336q.194-.126.515-.126.28 0 .488.112.21.11.325.339.117.228.118.579v1.733h-.42v-1.705q0-.324-.168-.502-.167-.18-.464-.18a.8.8 0 00-.369.088.64.64 0 00-.256.253.8.8 0 00-.092.405M9.14 11.08v.355H7.727v-.356zm-1.001-.654h.419v2.6q0 .177.051.266.053.087.135.117a.5.5 0 00.176.028 1 1 0 00.114-.007l.07-.014.086.377a.9.9 0 01-.312.05.8.8 0 01-.349-.077.7.7 0 01-.28-.233.67.67 0 01-.11-.394zm2.818.654v.355H9.543v-.356zm-1.002-.654h.42v2.6q0 .177.05.266.054.087.136.117a.5.5 0 00.175.028 1 1 0 00.114-.007l.071-.014.085.377a.9.9 0 01-.312.05.8.8 0 01-.348-.077.7.7 0 01-.28-.233.67.67 0 01-.11-.394zm1.632 4.404v-3.75h.405v.433h.05q.045-.072.127-.181a.75.75 0 01.238-.2.86.86 0 01.423-.088q.345 0 .607.172.263.172.41.489.148.316.148.745 0 .435-.148.751-.147.316-.408.49a1.07 1.07 0 01-.602.173.9.9 0 01-.42-.087.8.8 0 01-.244-.201 3 3 0 01-.132-.188h-.035v1.441zm.412-2.387q0 .31.09.545t.265.368a.7.7 0 00.426.131.7.7 0 00.439-.138.85.85 0 00.266-.377q.09-.238.09-.529 0-.287-.088-.518a.8.8 0 00-.265-.368.7.7 0 00-.442-.136.7.7 0 00-.43.13.8.8 0 00-.262.358q-.09.228-.09.534m2.942 1.392a.3.3 0 01-.226-.094.3.3 0 01-.094-.225q0-.132.094-.226a.3.3 0 01.225-.094q.132 0 .226.094a.3.3 0 01.094.226.33.33 0 01-.16.277.3.3 0 01-.16.042m0-2.024a.3.3 0 01-.226-.094.3.3 0 01-.094-.226q0-.13.094-.225a.3.3 0 01.225-.094q.132 0 .226.094a.3.3 0 01.094.226.33.33 0 01-.16.277.3.3 0 01-.16.042M17.296 10l-1.172 4.354h-.383L16.913 10zm1.783 0-1.172 4.354h-.384L18.695 10z\"/></g>"
54
+ },
55
+ "list": {
56
+ "body": "<path fill=\"currentColor\" d=\"M2.91 7.5h18.18c.503 0 .91-.448.91-1v-3c0-.552-.407-1-.91-1H2.91c-.503 0-.91.448-.91 1v3c0 .552.407 1 .91 1m0 7h18.18c.503 0 .91-.448.91-1v-3c0-.552-.407-1-.91-1H2.91c-.503 0-.91.448-.91 1v3c0 .552.407 1 .91 1m0 7h18.18c.503 0 .91-.448.91-1v-3c0-.552-.407-1-.91-1H2.91c-.503 0-.91.448-.91 1v3c0 .552.407 1 .91 1\"/>"
57
+ },
58
+ "list-items": {
59
+ "body": "<path fill=\"currentColor\" d=\"M2.91 7.5h18.18c.503 0 .91-.448.91-1v-3c0-.552-.407-1-.91-1H2.91c-.503 0-.91.448-.91 1v3c0 .552.407 1 .91 1m0 7h18.18c.503 0 .91-.448.91-1v-3c0-.552-.407-1-.91-1H2.91c-.503 0-.91.448-.91 1v3c0 .552.407 1 .91 1m0 7h18.18c.503 0 .91-.448.91-1v-3c0-.552-.407-1-.91-1H2.91c-.503 0-.91.448-.91 1v3c0 .552.407 1 .91 1\"/>"
60
+ },
61
+ "nested-list": {
62
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M11 17a1 1 0 00-1 1v3a1 1 0 001 1h10a1 1 0 001-1v-3a1 1 0 00-1-1zm2.5 1.5a.5.5 0 00-1 0v.5H12a.5.5 0 000 1h.5v.5a.5.5 0 101 0V20h.5a.5.5 0 100-1h-.5zM7 9.5a1 1 0 00-1 1v3a1 1 0 001 1h14a1 1 0 001-1v-3a1 1 0 00-1-1zm1 2a.5.5 0 000 1h2a.5.5 0 000-1zM3 2a1 1 0 00-1 1v3a1 1 0 001 1h18a1 1 0 001-1V3a1 1 0 00-1-1zm1 2a.5.5 0 000 1h2a.5.5 0 000-1z\" clip-rule=\"evenodd\"/>"
63
+ },
64
+ "radio-group": {
65
+ "body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M10.5 5.5h11m-11 3h11m-11 7h11m-11 3h11\"/><path fill=\"currentColor\" d=\"M5 4.375a2.625 2.625 0 100 5.25 2.625 2.625 0 000-5.25M2 7a3 3 0 116 0 3 3 0 01-6 0m3 11.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75M5 14a3 3 0 100 6 3 3 0 000-6m-2.625 3a2.625 2.625 0 115.25 0 2.625 2.625 0 01-5.25 0\"/></g>"
66
+ },
67
+ "range": {
68
+ "body": "<g fill=\"currentColor\"><rect width=\"18\" height=\"2\" x=\"3\" y=\"11\" rx=\"1\"/><path d=\"m6.992 10-1.72-3.007 3.464.014zM17 14l1.732 3h-3.464z\"/></g>"
69
+ },
70
+ "rating": {
71
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m5.154 9-.975 1.976L2 11.29l1.577 1.538L3.204 15l1.95-1.024L7.104 15l-.373-2.17 1.578-1.537-2.18-.317zm7 0-.975 1.976L9 11.29l1.577 1.538L10.204 15l1.95-1.024L14.104 15l-.373-2.17 1.578-1.537-2.18-.317zm6.025 1.976L19.154 9l.975 1.976 2.18.317-1.578 1.536.373 2.171-1.95-1.024L17.204 15l.373-2.17L16 11.29z\" clip-rule=\"evenodd\"/>"
72
+ },
73
+ "select": {
74
+ "body": "<path fill=\"currentColor\" d=\"m12 21-5.25-5.25 1.058-1.057L12 18.878l4.192-4.185 1.058 1.057zm0-18 5.25 5.25-1.058 1.057L12 5.123 7.808 9.308 6.75 8.25z\"/>"
75
+ },
76
+ "split-view": {
77
+ "body": "<path fill=\"currentColor\" d=\"M6.286 2A4.286 4.286 0 002 6.286v11.428A4.286 4.286 0 006.286 22h11.428A4.285 4.285 0 0022 17.714V6.286A4.285 4.285 0 0017.714 2zm1.428 1.429V20.57H6.286a2.857 2.857 0 01-2.857-2.857V6.286a2.857 2.857 0 012.857-2.857zM9.143 20.57v-4.285H20.57v1.428a2.857 2.857 0 01-2.857 2.857zm11.428-5.714H9.143V3.43h8.571a2.857 2.857 0 012.857 2.857z\"/>"
78
+ },
79
+ "switch-button": {
80
+ "body": "<g fill=\"currentColor\"><path d=\"M4 7.5a3 3 0 013-3v-1a4 4 0 00-4 4zm3 3a3 3 0 01-3-3H3a4 4 0 004 4zm10 0H7v1h10zm3-3a3 3 0 01-3 3v1a4 4 0 004-4zm-3-3a3 3 0 013 3h1a4 4 0 00-4-4zm-10 0h10v-1H7zm-3 12a3 3 0 013-3v-1a4 4 0 00-4 4zm3 3a3 3 0 01-3-3H3a4 4 0 004 4zm10 0H7v1h10zm3-3a3 3 0 01-3 3v1a4 4 0 004-4zm-3-3a3 3 0 013 3h1a4 4 0 00-4-4zm-10 0h10v-1H7z\"/><path fill-rule=\"evenodd\" d=\"M17 9.5a2 2 0 100-4 2 2 0 000 4m-10 9a2 2 0 100-4 2 2 0 000 4\" clip-rule=\"evenodd\"/></g>"
81
+ },
82
+ "tabs": {
83
+ "body": "<path fill=\"currentColor\" d=\"m23.784 15.59-2.08-6.965a1.31 1.31 0 00-1.267-.937H19.5a.562.562 0 100 1.125h.938a.21.21 0 01.187.13l1.866 6.245h-3.32l-1.968-6.563a1.31 1.31 0 00-1.265-.937H15a.562.562 0 100 1.125h.938a.21.21 0 01.187.13l1.866 6.245h-3.32l-1.968-6.563a1.31 1.31 0 00-1.265-.937H3.561a1.31 1.31 0 00-1.265.937l-2.08 6.956a.562.562 0 00.534.731h22.5a.56.56 0 00.563-.562.4.4 0 00-.029-.16M3.375 8.945a.21.21 0 01.188-.132h7.874a.21.21 0 01.188.132l1.866 6.243H1.509z\"/>"
84
+ },
85
+ "tree": {
86
+ "body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M2.91 7h18.18c.503 0 .91-.448.91-1V3c0-.552-.407-1-.91-1H2.91C2.406 2 2 2.448 2 3v3c0 .552.407 1 .91 1m4.772 7.5h13.636c.377 0 .682-.448.682-1v-3c0-.552-.305-1-.682-1H7.682c-.377 0-.682.448-.682 1v3c0 .552.305 1 .682 1m0 7.5h13.636c.377 0 .682-.448.682-1v-3c0-.552-.305-1-.682-1H7.682C7.305 17 7 17.448 7 18v3c0 .552.305 1 .682 1\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M4.5 7v12.5m0 0h3\"/><path stroke=\"currentColor\" d=\"M4 12h3\"/></g>"
87
+ }
88
+ },
89
+ "lastModified": 1707054239,
90
+ "width": 24,
91
+ "height": 24
92
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/components",
3
+ "description": "components icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "components",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054239,
4
4
  "icons": {
5
5
  "accordion": {
6
6
  "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" d=\"M3 17a1 1 0 00-1 1v3a1 1 0 001 1h18a1 1 0 001-1v-3a1 1 0 00-1-1zm16.133 2.492L18 18.409l.668-.699 1.832 1.75-1.75 1.832-.7-.667z\" clip-rule=\"evenodd\"/><path fill-opacity=\".5\" d=\"M2 7h20v7.5a1 1 0 01-1 1H3a1 1 0 01-1-1z\"/><path fill-rule=\"evenodd\" d=\"M3 2a1 1 0 00-1 1v4h20V3a1 1 0 00-1-1zm15.8 2.383 1.084-1.133.698.668-1.75 1.832L17 4l.668-.7z\" clip-rule=\"evenodd\"/></g>"
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,23 @@
1
+ {
2
+ "prefix": "light",
3
+ "icons": {
4
+ "minus-circle": {
5
+ "body": "<g fill=\"currentColor\"><path d=\"M12 2a10 10 0 100 20 10 10 0 000-20m0 18a8 8 0 110-16 8 8 0 010 16\"/><path d=\"M15 11H9a1 1 0 000 2h6a1 1 0 000-2\"/></g>"
6
+ },
7
+ "state-error": {
8
+ "body": "<g fill=\"currentColor\"><path d=\"M6.75 7.916 7.916 6.75l9.334 9.333-1.167 1.167z\"/><path d=\"M12 1.5A10.436 10.436 0 001.5 12 10.435 10.435 0 0012 22.5 10.435 10.435 0 0022.5 12 10.436 10.436 0 0012 1.5M12 21a9 9 0 119-9 9.027 9.027 0 01-9 9\"/></g>"
9
+ },
10
+ "state-info": {
11
+ "body": "<path fill=\"currentColor\" d=\"M13.313 16.5a.563.563 0 01-.563.563 1.313 1.313 0 01-1.312-1.313V12a.187.187 0 00-.188-.187.562.562 0 110-1.126A1.313 1.313 0 0112.563 12v3.75a.19.19 0 00.187.188.563.563 0 01.563.562m-1.688-7.687a.938.938 0 100-1.876.938.938 0 000 1.875M21.563 12A9.562 9.562 0 1112 2.438 9.574 9.574 0 0121.563 12m-1.125 0A8.437 8.437 0 1012 20.438 8.447 8.447 0 0020.438 12\"/>"
12
+ },
13
+ "state-unknown": {
14
+ "body": "<path fill=\"currentColor\" d=\"M12.938 16.875a.937.937 0 11-1.875 0 .937.937 0 011.874 0M12 6.938c-1.969 0-3.562 1.43-3.562 3.187v.375a.562.562 0 101.124 0v-.375c0-1.137 1.094-2.062 2.438-2.062s2.438.925 2.438 2.062-1.094 2.063-2.438 2.063a.56.56 0 00-.562.562v.75a.562.562 0 101.124 0v-.227c1.698-.242 3-1.562 3-3.148 0-1.758-1.593-3.187-3.562-3.187M21.563 12A9.562 9.562 0 1112 2.438 9.574 9.574 0 0121.563 12m-1.125 0A8.437 8.437 0 1012 20.438 8.447 8.447 0 0020.438 12\"/>"
15
+ },
16
+ "state-warning": {
17
+ "body": "<path fill=\"currentColor\" d=\"m22.038 17.727-8.2-14.238a2.132 2.132 0 00-3.676 0l-8.2 14.238a2.02 2.02 0 000 2.036 2.1 2.1 0 001.84 1.05h16.397a2.1 2.1 0 001.837-1.05 2.02 2.02 0 00.002-2.036m-.976 1.473a.98.98 0 01-.864.488H3.802a.98.98 0 01-.864-.488.89.89 0 010-.911L11.137 4.05a1.007 1.007 0 011.726 0l8.2 14.238a.89.89 0 01-.001.911m-9.624-5.7V9.75a.562.562 0 111.125 0v3.75a.563.563 0 01-1.125 0m1.5 3.375a.938.938 0 11-1.876 0 .938.938 0 011.876 0\"/>"
18
+ }
19
+ },
20
+ "lastModified": 1707054238,
21
+ "width": 24,
22
+ "height": 24
23
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/light",
3
+ "description": "light icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
package/lib/light.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "light",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054238,
4
4
  "icons": {
5
5
  "minus-circle": {
6
6
  "body": "<g fill=\"currentColor\"><path d=\"M12 2a10 10 0 100 20 10 10 0 000-20m0 18a8 8 0 110-16 8 8 0 010 16\"/><path d=\"M15 11H9a1 1 0 000 2h6a1 1 0 000-2\"/></g>"
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,44 @@
1
+ {
2
+ "prefix": "solid",
3
+ "icons": {
4
+ "action-add": {
5
+ "body": "<path fill=\"currentColor\" d=\"M12 2a10 10 0 100 20 10 10 0 000-20m3 11h-2v2a1 1 0 01-2 0v-2H9a1 1 0 010-2h2V9a1 1 0 012 0v2h2a1 1 0 010 2\"/>"
6
+ },
7
+ "action-clear": {
8
+ "body": "<path fill=\"currentColor\" d=\"M19 4h-3.5l-1-1h-5l-1 1H5v2h14M6 19a2 2 0 002 2h8a2 2 0 002-2V7H6z\"/>"
9
+ },
10
+ "action-close": {
11
+ "body": "<path fill=\"currentColor\" d=\"M12 1.5C6.15 1.5 1.5 6.15 1.5 12S6.15 22.5 12 22.5 22.5 17.85 22.5 12 17.85 1.5 12 1.5m4.05 15.75L12 13.2l-4.05 4.05-1.2-1.2L10.8 12 6.75 7.95l1.2-1.2L12 10.8l4.05-4.05 1.2 1.2L13.2 12l4.05 4.05z\"/>"
12
+ },
13
+ "action-remove": {
14
+ "body": "<path fill=\"currentColor\" d=\"M12 2a10 10 0 100 20 10 10 0 000-20m3 11H9a1 1 0 010-2h6a1 1 0 010 2\"/>"
15
+ },
16
+ "action-search": {
17
+ "body": "<path fill=\"currentColor\" d=\"M10 2.5a7.5 7.5 0 015.964 12.048l4.743 4.745a1 1 0 01-1.32 1.497l-.094-.083-4.745-4.743A7.5 7.5 0 1110 2.5m0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11\"/>"
18
+ },
19
+ "minus": {
20
+ "body": "<path fill=\"currentColor\" d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m-3 10H9a1 1 0 010-2h6a1 1 0 010 2\"/>"
21
+ },
22
+ "minus-circle": {
23
+ "body": "<path fill=\"currentColor\" d=\"M12 2a10 10 0 100 20 10 10 0 000-20m3 11H9a1 1 0 010-2h6a1 1 0 010 2\"/>"
24
+ },
25
+ "mode-dark": {
26
+ "body": "<path fill=\"currentColor\" d=\"M9.822 2.238a9 9 0 0011.94 11.94C20.768 18.654 16.775 22 12 22 6.477 22 2 17.523 2 12c0-4.775 3.346-8.768 7.822-9.762\"/>"
27
+ },
28
+ "mode-light": {
29
+ "body": "<g fill=\"none\"><g clip-path=\"url(#svgID0)\"><path fill=\"currentColor\" d=\"M18.375 12A6.375 6.375 0 1112 5.625 6.384 6.384 0 0118.375 12M12 4.125a.75.75 0 00.75-.75V1.5a.75.75 0 10-1.5 0v1.875a.75.75 0 00.75.75M5.372 6.431a.76.76 0 001.06 0 .75.75 0 000-1.06l-1.323-1.33a.76.76 0 10-1.068 1.068zM4.125 12a.75.75 0 00-.75-.75H1.5a.75.75 0 100 1.5h1.875a.75.75 0 00.75-.75m1.247 5.569L4.04 18.89a.76.76 0 000 1.068.8.8 0 00.534.216c.2 0 .39-.078.534-.216l1.322-1.33a.75.75 0 00-1.06-1.06M12 19.875a.75.75 0 00-.75.75V22.5a.75.75 0 101.5 0v-1.875a.75.75 0 00-.75-.75m6.628-2.306a.75.75 0 00-1.06 1.06l1.323 1.33a.78.78 0 00.534.216.8.8 0 00.534-.216.76.76 0 000-1.068zM22.5 11.25h-1.875a.75.75 0 100 1.5H22.5a.75.75 0 100-1.5m-4.397-4.603a.73.73 0 00.525-.216L19.96 5.11a.76.76 0 00-1.068-1.068l-1.322 1.33a.75.75 0 00.245 1.223q.139.056.29.053\"/></g><defs><clipPath id=\"svgID0\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
30
+ },
31
+ "node-closed": {
32
+ "body": "<path fill=\"currentColor\" d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m-3 10h-2v2a1 1 0 01-2 0v-2H9a1 1 0 010-2h2V9a1 1 0 012 0v2h2a1 1 0 010 2\"/>"
33
+ },
34
+ "node-opened": {
35
+ "body": "<path fill=\"currentColor\" d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m-3 10H9a1 1 0 010-2h6a1 1 0 010 2\"/>"
36
+ },
37
+ "plus": {
38
+ "body": "<path fill=\"currentColor\" d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m-3 10h-2v2a1 1 0 01-2 0v-2H9a1 1 0 010-2h2V9a1 1 0 012 0v2h2a1 1 0 010 2\"/>"
39
+ }
40
+ },
41
+ "lastModified": 1707054238,
42
+ "width": 24,
43
+ "height": 24
44
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/solid",
3
+ "description": "solid icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
package/lib/solid.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "solid",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054238,
4
4
  "icons": {
5
5
  "action-add": {
6
6
  "body": "<path fill=\"currentColor\" d=\"M12 2a10 10 0 100 20 10 10 0 000-20m3 11h-2v2a1 1 0 01-2 0v-2H9a1 1 0 010-2h2V9a1 1 0 012 0v2h2a1 1 0 010 2\"/>"
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,20 @@
1
+ {
2
+ "prefix": "twotone",
3
+ "icons": {
4
+ "heart": {
5
+ "body": "<g fill=\"currentColor\"><path d=\"M21.633 6.647a6.1 6.1 0 00-1.334-1.94A6.22 6.22 0 0015.93 2.93 6.26 6.26 0 0012 4.315 6.26 6.26 0 008.07 2.93 6.22 6.22 0 003.7 4.706a6.06 6.06 0 00-1.825 4.33c0 .78.16 1.593.476 2.42.265.692.644 1.409 1.13 2.133.768 1.146 1.825 2.342 3.138 3.553a35 35 0 004.42 3.453l.556.356a.75.75 0 00.808 0l.556-.357a35.5 35.5 0 004.42-3.452c1.312-1.211 2.37-2.407 3.138-3.553.485-.724.867-1.441 1.13-2.133.316-.827.476-1.64.476-2.42a6 6 0 00-.49-2.39M12 19.097S3.656 13.75 3.656 9.035c0-2.388 1.976-4.324 4.414-4.324 1.713 0 3.199.956 3.93 2.353a4.43 4.43 0 013.93-2.353c2.438 0 4.414 1.936 4.414 4.324 0 4.716-8.344 10.062-8.344 10.062\"/><path fill-opacity=\".15\" d=\"M15.93 4.71A4.43 4.43 0 0012 7.064a4.43 4.43 0 00-3.93-2.353c-2.438 0-4.414 1.936-4.414 4.324C3.656 13.751 12 19.097 12 19.097s8.344-5.346 8.344-10.062c0-2.388-1.976-4.324-4.414-4.324\"/></g>"
6
+ },
7
+ "state-info": {
8
+ "body": "<g fill=\"currentColor\"><path d=\"M21 12a9 9 0 11-17.999 0A9 9 0 0121 12\" opacity=\".2\"/><path d=\"M13.5 16.5a.75.75 0 01-.75.75 1.5 1.5 0 01-1.5-1.5V12a.75.75 0 110-1.5 1.5 1.5 0 011.5 1.5v3.75a.75.75 0 01.75.75m8.25-4.5A9.75 9.75 0 1112 2.25 9.76 9.76 0 0121.75 12m-1.5 0A8.25 8.25 0 1012 20.25 8.26 8.26 0 0020.25 12m-8.625-3a1.125 1.125 0 100-2.25 1.125 1.125 0 000 2.25\"/></g>"
9
+ },
10
+ "state-unknown": {
11
+ "body": "<g fill=\"currentColor\"><path d=\"M21 12a9 9 0 11-17.999 0A9 9 0 0121 12\" opacity=\".2\"/><path d=\"M13.125 16.875a1.125 1.125 0 11-2.25 0 1.125 1.125 0 012.25 0M12 6.75c-2.068 0-3.75 1.514-3.75 3.375v.375a.75.75 0 101.5 0v-.375c0-1.031 1.01-1.875 2.25-1.875s2.25.844 2.25 1.875S13.24 12 12 12a.75.75 0 00-.75.75v.75a.75.75 0 101.5 0v-.068c1.71-.314 3-1.678 3-3.307 0-1.86-1.682-3.375-3.75-3.375M21.75 12A9.75 9.75 0 1112 2.25 9.76 9.76 0 0121.75 12m-1.5 0A8.25 8.25 0 1012 20.25 8.26 8.26 0 0020.25 12\"/></g>"
12
+ },
13
+ "state-warning": {
14
+ "body": "<g fill=\"currentColor\"><path d=\"M20.2 20.25H3.8c-1.183 0-1.925-1.239-1.35-2.242l8.199-14.237c.59-1.032 2.111-1.032 2.702 0l8.2 14.237c.574 1.003-.168 2.242-1.352 2.242\" opacity=\".2\"/><path d=\"M22.2 17.633 14.002 3.396a2.322 2.322 0 00-4.004 0L1.8 17.633a2.2 2.2 0 000 2.224A2.28 2.28 0 003.802 21h16.397a2.28 2.28 0 002-1.143 2.2 2.2 0 00.001-2.224m-1.3 1.473a.8.8 0 01-.701.394H3.802a.8.8 0 01-.702-.394.71.71 0 010-.724l8.2-14.237a.82.82 0 011.406 0l8.199 14.237a.71.71 0 01-.004.724M11.25 13.5V9.75a.75.75 0 111.5 0v3.75a.75.75 0 11-1.5 0m1.875 3.375a1.125 1.125 0 11-2.25 0 1.125 1.125 0 012.25 0\"/></g>"
15
+ }
16
+ },
17
+ "lastModified": 1707054238,
18
+ "width": 24,
19
+ "height": 24
20
+ }
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
4
+
5
+ export declare const icons: IconifyJSON
6
+ export declare const info: IconifyInfo
7
+ export declare const metadata: IconifyMetaData
8
+ export declare const chars: IconifyChars
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json')
2
+ const info = {}
3
+ const metadata = {}
4
+ const chars = {}
5
+
6
+ exports.icons = icons
7
+ exports.info = info
8
+ exports.metadata = metadata
9
+ exports.chars = chars
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' assert { type: 'json' }
2
+
3
+ const info = {}
4
+ const metadata = {}
5
+ const chars = {}
6
+ export { icons, info, metadata, chars }
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rokkit/twotone",
3
+ "description": "twotone icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
+ "homepage": "https://github.com/jerrythomas/rokkit",
10
+ "exports": {
11
+ "./*": "./*",
12
+ ".": {
13
+ "types": "./index.d.ts",
14
+ "require": "./index.js",
15
+ "import": "./index.mjs"
16
+ },
17
+ "./icons.json": "./icons.json"
18
+ },
19
+ "iconSet": {
20
+ "icons": "icons.json"
21
+ },
22
+ "dependencies": {
23
+ "@iconify/types": "*"
24
+ }
25
+ }
package/lib/twotone.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "twotone",
3
- "lastModified": 1707049494,
3
+ "lastModified": 1707054238,
4
4
  "icons": {
5
5
  "heart": {
6
6
  "body": "<g fill=\"currentColor\"><path d=\"M21.633 6.647a6.1 6.1 0 00-1.334-1.94A6.22 6.22 0 0015.93 2.93 6.26 6.26 0 0012 4.315 6.26 6.26 0 008.07 2.93 6.22 6.22 0 003.7 4.706a6.06 6.06 0 00-1.825 4.33c0 .78.16 1.593.476 2.42.265.692.644 1.409 1.13 2.133.768 1.146 1.825 2.342 3.138 3.553a35 35 0 004.42 3.453l.556.356a.75.75 0 00.808 0l.556-.357a35.5 35.5 0 004.42-3.452c1.312-1.211 2.37-2.407 3.138-3.553.485-.724.867-1.441 1.13-2.133.316-.827.476-1.64.476-2.42a6 6 0 00-.49-2.39M12 19.097S3.656 13.75 3.656 9.035c0-2.388 1.976-4.324 4.414-4.324 1.713 0 3.199.956 3.93 2.353a4.43 4.43 0 013.93-2.353c2.438 0 4.414 1.936 4.414 4.324 0 4.716-8.344 10.062-8.344 10.062\"/><path fill-opacity=\".15\" d=\"M15.93 4.71A4.43 4.43 0 0012 7.064a4.43 4.43 0 00-3.93-2.353c-2.438 0-4.414 1.936-4.414 4.324C3.656 13.751 12 19.097 12 19.097s8.344-5.346 8.344-10.062c0-2.388-1.976-4.324-4.414-4.324\"/></g>"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rokkit/icons",
3
- "version": "1.0.0-next.77",
3
+ "version": "1.0.0-next.79",
4
4
  "description": "A minimal icon set for use in applications.",
5
5
  "author": "Jerry Thomas <me@jerrythomas.name>",
6
6
  "license": "MIT",
package/src/convert.js CHANGED
@@ -1,4 +1,11 @@
1
- import { importDirectory, cleanupSVG, runSVGO, parseColors, isEmptyColor } from '@iconify/tools'
1
+ import {
2
+ importDirectory,
3
+ cleanupSVG,
4
+ runSVGO,
5
+ parseColors,
6
+ isEmptyColor,
7
+ exportJSONPackage
8
+ } from '@iconify/tools'
2
9
  import fs from 'fs'
3
10
 
4
11
  export async function convert(folder, prefix, color = false) {
@@ -11,6 +18,17 @@ export async function convert(folder, prefix, color = false) {
11
18
  // Export
12
19
  const collection = JSON.stringify(iconSet.export(), null, 2)
13
20
  fs.writeFileSync(`./lib/${prefix}.json`, collection, 'utf8')
21
+ const target = `./lib/${iconSet.prefix}`
22
+ await exportJSONPackage(iconSet, {
23
+ target,
24
+ package: {
25
+ name: `@rokkit/${iconSet.prefix}`,
26
+ version: '1.0.0',
27
+ bugs: 'https://github.com/jerrythomas/rokkit/issues',
28
+ homepage: 'https://github.com/jerrythomas/rokkit'
29
+ },
30
+ cleanup: true
31
+ })
14
32
  }
15
33
 
16
34
  async function processIcons(iconSet, color) {