@telia/teddy 0.0.3 → 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.
Files changed (108) hide show
  1. package/README.md +8 -10
  2. package/dist/assets/5161b177f001ea1a.svg +1080 -0
  3. package/dist/assets/badge.css +1 -0
  4. package/dist/assets/button.css +1 -1
  5. package/dist/assets/grid.css +1 -0
  6. package/dist/assets/heading.css +1 -0
  7. package/dist/assets/icon.css +1 -1
  8. package/dist/assets/input.css +1 -1
  9. package/dist/assets/label.css +1 -1
  10. package/dist/assets/link.css +1 -0
  11. package/dist/assets/main.css +1 -1
  12. package/dist/assets/navigation-menu.css +1 -0
  13. package/dist/assets/text-field.css +1 -1
  14. package/dist/assets/text-spacing.css +1 -0
  15. package/dist/assets/text.css +1 -1
  16. package/dist/assets/visually-hidden.css +1 -0
  17. package/dist/badge-CbHdlkcM.js +742 -0
  18. package/dist/components/accordion/accordion.d.ts +59 -0
  19. package/dist/components/accordion/accordion.js +24 -0
  20. package/dist/components/accordion/index.d.ts +2 -0
  21. package/dist/components/accordion/index.js +4 -0
  22. package/dist/components/badge/badge.d.ts +21 -0
  23. package/dist/components/badge/badge.js +24 -0
  24. package/dist/components/badge/index.d.ts +2 -0
  25. package/dist/components/badge/index.js +4 -0
  26. package/dist/components/button/button.d.ts +19 -20
  27. package/dist/components/button/button.js +82 -71
  28. package/dist/components/button/index.d.ts +1 -1
  29. package/dist/components/card/card.d.ts +68 -0
  30. package/dist/components/card/card.js +24 -0
  31. package/dist/components/card/index.d.ts +2 -0
  32. package/dist/components/card/index.js +4 -0
  33. package/dist/components/field-error-text/field-error-text.d.ts +4 -3
  34. package/dist/components/field-error-text/field-error-text.js +12 -12
  35. package/dist/components/grid/grid.d.ts +77 -0
  36. package/dist/components/grid/grid.js +393 -0
  37. package/dist/components/grid/index.d.ts +2 -0
  38. package/dist/components/grid/index.js +4 -0
  39. package/dist/components/heading/heading.d.ts +63 -0
  40. package/dist/components/heading/heading.js +53 -0
  41. package/dist/components/heading/index.d.ts +2 -0
  42. package/dist/components/heading/index.js +4 -0
  43. package/dist/components/helper-text/helper-text.d.ts +2 -1
  44. package/dist/components/helper-text/helper-text.js +7 -7
  45. package/dist/components/icon/icon.d.ts +13 -2
  46. package/dist/components/icon/icon.js +22 -22
  47. package/dist/components/icon/index.d.ts +2 -1
  48. package/dist/components/icon/index.js +1 -1
  49. package/dist/components/index.d.ts +10 -0
  50. package/dist/components/index.js +38 -21
  51. package/dist/components/input/input.d.ts +14 -23
  52. package/dist/components/input/input.js +72 -50
  53. package/dist/components/label/label.d.ts +3 -1
  54. package/dist/components/label/label.js +23 -51
  55. package/dist/components/link/index.d.ts +2 -0
  56. package/dist/components/link/index.js +4 -0
  57. package/dist/components/link/link.d.ts +49 -0
  58. package/dist/components/link/link.js +36 -0
  59. package/dist/components/navigation-menu/index.d.ts +2 -0
  60. package/dist/components/navigation-menu/index.js +4 -0
  61. package/dist/components/navigation-menu/navigation-menu.d.ts +126 -0
  62. package/dist/components/navigation-menu/navigation-menu.js +10 -0
  63. package/dist/components/spinner/spinner.d.ts +2 -1
  64. package/dist/components/spinner/spinner.js +5 -5
  65. package/dist/components/switch/index.d.ts +2 -0
  66. package/dist/components/switch/index.js +4 -0
  67. package/dist/components/switch/switch.d.ts +44 -0
  68. package/dist/components/switch/switch.js +23 -0
  69. package/dist/components/text/text.d.ts +15 -8
  70. package/dist/components/text/text.js +27 -41
  71. package/dist/components/text-field/text-field.d.ts +24 -24
  72. package/dist/components/text-field/text-field.js +102 -125
  73. package/dist/components/text-spacing/index.d.ts +2 -0
  74. package/dist/components/text-spacing/index.js +4 -0
  75. package/dist/components/text-spacing/text-spacing.d.ts +19 -0
  76. package/dist/components/text-spacing/text-spacing.js +17 -0
  77. package/dist/components/visually-hidden/index.d.ts +2 -0
  78. package/dist/components/visually-hidden/index.js +4 -0
  79. package/dist/components/visually-hidden/visually-hidden.d.ts +15 -0
  80. package/dist/components/visually-hidden/visually-hidden.js +24 -0
  81. package/dist/icons/category.d.ts +985 -0
  82. package/dist/icons/category.js +333 -0
  83. package/dist/icons/name.d.ts +1 -1
  84. package/dist/icons/name.js +250 -200
  85. package/dist/index-DM5e-Whg.js +43 -0
  86. package/dist/index-DpfSJps6.js +75 -0
  87. package/dist/main.d.ts +1 -0
  88. package/dist/main.js +53 -36
  89. package/dist/navigation-menu-BgN7IKev.js +1334 -0
  90. package/dist/tokens/spacing/variables.json.d.ts +34 -0
  91. package/dist/utils/action.d.ts +1 -1
  92. package/dist/utils/composeEventHandlers.d.ts +30 -0
  93. package/dist/utils/composeEventHandlers.js +9 -0
  94. package/dist/utils/composeRefs.d.ts +40 -0
  95. package/dist/utils/composeRefs.js +14 -0
  96. package/dist/utils/layout.d.ts +12 -0
  97. package/dist/utils/layout.js +11 -0
  98. package/package.json +23 -22
  99. package/dist/assets/f2a2f391a886d395.svg +0 -284
  100. package/dist/index-TI1xsy6a.js +0 -70
  101. package/dist/teams/index.d.ts +0 -0
  102. package/dist/teams/index.js +0 -1
  103. package/dist/teams/min-side/index.d.ts +0 -0
  104. package/dist/teams/min-side/index.js +0 -1
  105. package/dist/teams/webshop/index.d.ts +0 -0
  106. package/dist/teams/webshop/index.js +0 -1
  107. /package/dist/{teams/business/index.d.ts → components/text-field/tex-field-label.d.ts} +0 -0
  108. /package/dist/{teams/business/index.js → components/text-field/tex-field-label.js} +0 -0
@@ -0,0 +1,333 @@
1
+ const e = [
2
+ { category: "actions", name: "alarm-off" },
3
+ { category: "actions", name: "alarm-on" },
4
+ { category: "actions", name: "attachment" },
5
+ { category: "actions", name: "bookmark-filled" },
6
+ { category: "actions", name: "bookmark" },
7
+ { category: "actions", name: "copy-filled" },
8
+ { category: "actions", name: "copy" },
9
+ { category: "actions", name: "dislike" },
10
+ { category: "actions", name: "download" },
11
+ { category: "actions", name: "edit" },
12
+ { category: "actions", name: "filter" },
13
+ { category: "actions", name: "heart-filled" },
14
+ { category: "actions", name: "heart" },
15
+ { category: "actions", name: "invisible" },
16
+ { category: "actions", name: "like" },
17
+ { category: "actions", name: "lock-open" },
18
+ { category: "actions", name: "lock" },
19
+ { category: "actions", name: "login" },
20
+ { category: "actions", name: "logout" },
21
+ { category: "actions", name: "maximize" },
22
+ { category: "actions", name: "minimize" },
23
+ { category: "actions", name: "mute" },
24
+ { category: "actions", name: "password-invisible" },
25
+ { category: "actions", name: "password-visible" },
26
+ { category: "actions", name: "play-filled" },
27
+ { category: "actions", name: "play" },
28
+ { category: "actions", name: "remove-filled" },
29
+ { category: "actions", name: "remove" },
30
+ { category: "actions", name: "save" },
31
+ { category: "actions", name: "send" },
32
+ { category: "actions", name: "settings" },
33
+ { category: "actions", name: "share" },
34
+ { category: "actions", name: "shuffle" },
35
+ { category: "actions", name: "skip-back-10sec" },
36
+ { category: "actions", name: "skip-back-30sec" },
37
+ { category: "actions", name: "skip-forward-10sec" },
38
+ { category: "actions", name: "skip-forward-30sec" },
39
+ { category: "actions", name: "star-filled" },
40
+ { category: "actions", name: "star" },
41
+ { category: "actions", name: "switch-arrows" },
42
+ { category: "actions", name: "sync" },
43
+ { category: "actions", name: "tv-next" },
44
+ { category: "actions", name: "tv-pause" },
45
+ { category: "actions", name: "tv-previous" },
46
+ { category: "actions", name: "tv-stop" },
47
+ { category: "actions", name: "upload" },
48
+ { category: "actions", name: "visible" },
49
+ { category: "actions", name: "volume" },
50
+ { category: "actions", name: "zoom-out" },
51
+ { category: "actions", name: "zoom" },
52
+ { category: "buildings", name: "connected-building" },
53
+ { category: "buildings", name: "home" },
54
+ { category: "buildings", name: "hospital" },
55
+ { category: "buildings", name: "industry" },
56
+ { category: "buildings", name: "premises-datacenter" },
57
+ { category: "buildings", name: "premises-large" },
58
+ { category: "buildings", name: "premises-medium" },
59
+ { category: "buildings", name: "premises-small" },
60
+ { category: "buildings", name: "premises" },
61
+ { category: "buildings", name: "store" },
62
+ { category: "communication", name: "address-book" },
63
+ { category: "communication", name: "b2b-customer" },
64
+ { category: "communication", name: "care" },
65
+ { category: "communication", name: "chat-robot" },
66
+ { category: "communication", name: "chat" },
67
+ { category: "communication", name: "child-1" },
68
+ { category: "communication", name: "child-2" },
69
+ { category: "communication", name: "conversation" },
70
+ { category: "communication", name: "customer-dialogue" },
71
+ { category: "communication", name: "dsl-hub" },
72
+ { category: "communication", name: "email" },
73
+ { category: "communication", name: "end-user" },
74
+ { category: "communication", name: "handshake" },
75
+ { category: "communication", name: "headphones" },
76
+ { category: "communication", name: "letter" },
77
+ { category: "communication", name: "mms" },
78
+ { category: "communication", name: "new-contact" },
79
+ { category: "communication", name: "new-group" },
80
+ { category: "communication", name: "news" },
81
+ { category: "communication", name: "parental-guide" },
82
+ { category: "communication", name: "people-hub" },
83
+ { category: "communication", name: "people" },
84
+ { category: "communication", name: "portal" },
85
+ { category: "communication", name: "signature" },
86
+ { category: "communication", name: "smiley-happy" },
87
+ { category: "communication", name: "smiley-sad" },
88
+ { category: "communication", name: "sms" },
89
+ { category: "communication", name: "support" },
90
+ { category: "communication", name: "user-admin" },
91
+ { category: "communication", name: "vcard" },
92
+ { category: "communication", name: "voicemail" },
93
+ { category: "device", name: "battery" },
94
+ { category: "device", name: "bluetooth" },
95
+ { category: "device", name: "broadband" },
96
+ { category: "device", name: "broken-phone" },
97
+ { category: "device", name: "cast" },
98
+ { category: "device", name: "cloud-connect" },
99
+ { category: "device", name: "connected" },
100
+ { category: "device", name: "core-router" },
101
+ { category: "device", name: "daas-device" },
102
+ { category: "device", name: "data-transfer" },
103
+ { category: "device", name: "desktop" },
104
+ { category: "device", name: "devices" },
105
+ { category: "device", name: "esim-simcard" },
106
+ { category: "device", name: "esim" },
107
+ { category: "device", name: "face-id" },
108
+ { category: "device", name: "fiber" },
109
+ { category: "device", name: "fingerprint" },
110
+ { category: "device", name: "fiveg" },
111
+ { category: "device", name: "fourg" },
112
+ { category: "device", name: "home-installation" },
113
+ { category: "device", name: "industrial-iot" },
114
+ { category: "device", name: "internet" },
115
+ { category: "device", name: "it-service" },
116
+ { category: "device", name: "laptop" },
117
+ { category: "device", name: "mobile-broadband" },
118
+ { category: "device", name: "network" },
119
+ { category: "device", name: "phone-recycling" },
120
+ { category: "device", name: "phone-ringing" },
121
+ { category: "device", name: "phone" },
122
+ { category: "device", name: "rack" },
123
+ { category: "device", name: "refill-card" },
124
+ { category: "device", name: "remote-control" },
125
+ { category: "device", name: "repair" },
126
+ { category: "device", name: "roaming" },
127
+ { category: "device", name: "router" },
128
+ { category: "device", name: "secure-device" },
129
+ { category: "device", name: "sense-car" },
130
+ { category: "device", name: "server" },
131
+ { category: "device", name: "service-device" },
132
+ { category: "device", name: "service-supervision" },
133
+ { category: "device", name: "slow-wifi" },
134
+ { category: "device", name: "smart-wifi" },
135
+ { category: "device", name: "smartphone" },
136
+ { category: "device", name: "smartwatch" },
137
+ { category: "device", name: "tablet" },
138
+ { category: "device", name: "trade-phone" },
139
+ { category: "device", name: "tv" },
140
+ { category: "device", name: "usb" },
141
+ { category: "device", name: "voice-switch" },
142
+ { category: "device", name: "wallplug" },
143
+ { category: "device", name: "wireless-off" },
144
+ { category: "device", name: "wireless-weak" },
145
+ { category: "device", name: "wireless" },
146
+ { category: "device", name: "world-alert" },
147
+ { category: "device", name: "world-off" },
148
+ { category: "device", name: "world-question" },
149
+ { category: "file", name: "bar-chart" },
150
+ { category: "file", name: "doc" },
151
+ { category: "file", name: "document-doc" },
152
+ { category: "file", name: "document-edit" },
153
+ { category: "file", name: "document-pdf" },
154
+ { category: "file", name: "document-ppt" },
155
+ { category: "file", name: "excel" },
156
+ { category: "file", name: "folder-copy" },
157
+ { category: "file", name: "folder-new" },
158
+ { category: "file", name: "folder" },
159
+ { category: "file", name: "gif" },
160
+ { category: "file", name: "graph" },
161
+ { category: "file", name: "media-content" },
162
+ { category: "file", name: "org-chart" },
163
+ { category: "file", name: "pie-chart" },
164
+ { category: "file", name: "print" },
165
+ { category: "file", name: "register" },
166
+ { category: "file", name: "report" },
167
+ { category: "file", name: "simcard" },
168
+ { category: "file", name: "spell-check" },
169
+ { category: "file", name: "summary" },
170
+ { category: "finance", name: "credit-card" },
171
+ { category: "finance", name: "euro" },
172
+ { category: "finance", name: "invoice" },
173
+ { category: "finance", name: "kontantkort" },
174
+ { category: "finance", name: "kr" },
175
+ { category: "finance", name: "late-payment" },
176
+ { category: "finance", name: "money-back-euro" },
177
+ { category: "finance", name: "money-back-kr" },
178
+ { category: "finance", name: "money-euro" },
179
+ { category: "finance", name: "money-kr" },
180
+ { category: "finance", name: "pay-monthly-euro" },
181
+ { category: "finance", name: "pay-monthly-kr" },
182
+ { category: "finance", name: "pay-once-euro" },
183
+ { category: "finance", name: "pay-once-kr" },
184
+ { category: "finance", name: "payment-success" },
185
+ { category: "finance", name: "savings" },
186
+ { category: "finance", name: "wallet" },
187
+ { category: "media", name: "airplay" },
188
+ { category: "media", name: "camera" },
189
+ { category: "media", name: "entertainment" },
190
+ { category: "media", name: "external" },
191
+ { category: "media", name: "film" },
192
+ { category: "media", name: "games" },
193
+ { category: "media", name: "image" },
194
+ { category: "media", name: "link" },
195
+ { category: "media", name: "megaphone" },
196
+ { category: "media", name: "microphone" },
197
+ { category: "media", name: "music" },
198
+ { category: "media", name: "player-settings" },
199
+ { category: "media", name: "record" },
200
+ { category: "media", name: "stream" },
201
+ { category: "media", name: "trailer" },
202
+ { category: "media", name: "video-conference" },
203
+ { category: "media", name: "video" },
204
+ { category: "other", name: "activity-level" },
205
+ { category: "other", name: "add" },
206
+ { category: "other", name: "ai-robot" },
207
+ { category: "other", name: "bag" },
208
+ { category: "other", name: "basketball" },
209
+ { category: "other", name: "blood-pressure" },
210
+ { category: "other", name: "bulb" },
211
+ { category: "other", name: "business-continuity" },
212
+ { category: "other", name: "business-intelligence" },
213
+ { category: "other", name: "calendar" },
214
+ { category: "other", name: "cart" },
215
+ { category: "other", name: "close-circle" },
216
+ { category: "other", name: "cloud" },
217
+ { category: "other", name: "coffee" },
218
+ { category: "other", name: "compass" },
219
+ { category: "other", name: "construction" },
220
+ { category: "other", name: "cookie" },
221
+ { category: "other", name: "delivery" },
222
+ { category: "other", name: "drone" },
223
+ { category: "other", name: "education" },
224
+ { category: "other", name: "efficiency" },
225
+ { category: "other", name: "environment" },
226
+ { category: "other", name: "facemask" },
227
+ { category: "other", name: "flag" },
228
+ { category: "other", name: "focus" },
229
+ { category: "other", name: "food" },
230
+ { category: "other", name: "fraud" },
231
+ { category: "other", name: "getting-started" },
232
+ { category: "other", name: "home-care" },
233
+ { category: "other", name: "infinite" },
234
+ { category: "other", name: "job-search" },
235
+ { category: "other", name: "key" },
236
+ { category: "other", name: "layers" },
237
+ { category: "other", name: "map" },
238
+ { category: "other", name: "measuring-health" },
239
+ { category: "other", name: "moisture" },
240
+ { category: "other", name: "offering" },
241
+ { category: "other", name: "offshore" },
242
+ { category: "other", name: "optimization" },
243
+ { category: "other", name: "pebble" },
244
+ { category: "other", name: "pet-dog" },
245
+ { category: "other", name: "pin" },
246
+ { category: "other", name: "plane" },
247
+ { category: "other", name: "plus-minus" },
248
+ { category: "other", name: "police" },
249
+ { category: "other", name: "power-grid" },
250
+ { category: "other", name: "present" },
251
+ { category: "other", name: "press-button" },
252
+ { category: "other", name: "price" },
253
+ { category: "other", name: "pulse" },
254
+ { category: "other", name: "radio" },
255
+ { category: "other", name: "recycle" },
256
+ { category: "other", name: "reservation" },
257
+ { category: "other", name: "reverse" },
258
+ { category: "other", name: "route" },
259
+ { category: "other", name: "ruler" },
260
+ { category: "other", name: "satellite" },
261
+ { category: "other", name: "secured-1" },
262
+ { category: "other", name: "secured-2" },
263
+ { category: "other", name: "security-camera" },
264
+ { category: "other", name: "shopping" },
265
+ { category: "other", name: "snowflake" },
266
+ { category: "other", name: "speedometer" },
267
+ { category: "other", name: "split" },
268
+ { category: "other", name: "spyware" },
269
+ { category: "other", name: "stop" },
270
+ { category: "other", name: "suitcase" },
271
+ { category: "other", name: "sustainability" },
272
+ { category: "other", name: "tag" },
273
+ { category: "other", name: "temperature" },
274
+ { category: "other", name: "thinking" },
275
+ { category: "other", name: "time" },
276
+ { category: "other", name: "train" },
277
+ { category: "other", name: "transfer" },
278
+ { category: "other", name: "undo" },
279
+ { category: "other", name: "wavelength" },
280
+ { category: "other", name: "weather" },
281
+ { category: "other", name: "world" },
282
+ { category: "social", name: "android" },
283
+ { category: "social", name: "apple" },
284
+ { category: "social", name: "bankid" },
285
+ { category: "social", name: "facebook" },
286
+ { category: "social", name: "instagram" },
287
+ { category: "social", name: "linkedin" },
288
+ { category: "social", name: "snapchat" },
289
+ { category: "social", name: "whatsapp" },
290
+ { category: "social", name: "windows" },
291
+ { category: "social", name: "x" },
292
+ { category: "social", name: "youtube" },
293
+ { category: "status", name: "alert-filled" },
294
+ { category: "status", name: "alert" },
295
+ { category: "status", name: "check-circle-filled" },
296
+ { category: "status", name: "check-circle" },
297
+ { category: "status", name: "error-filled" },
298
+ { category: "status", name: "error" },
299
+ { category: "status", name: "help" },
300
+ { category: "status", name: "info-filled" },
301
+ { category: "status", name: "info" },
302
+ { category: "status", name: "question-filled" },
303
+ { category: "status", name: "question" },
304
+ { category: "status", name: "warning" },
305
+ { category: "utility", name: "arrow-down" },
306
+ { category: "utility", name: "arrow-left" },
307
+ { category: "utility", name: "arrow-right" },
308
+ { category: "utility", name: "arrow-subdirectory" },
309
+ { category: "utility", name: "arrow-up" },
310
+ { category: "utility", name: "card-view" },
311
+ { category: "utility", name: "checkmark-bold" },
312
+ { category: "utility", name: "checkmark" },
313
+ { category: "utility", name: "chevron-down" },
314
+ { category: "utility", name: "chevron-left" },
315
+ { category: "utility", name: "chevron-right" },
316
+ { category: "utility", name: "chevron-up" },
317
+ { category: "utility", name: "close" },
318
+ { category: "utility", name: "grid-view" },
319
+ { category: "utility", name: "list-view" },
320
+ { category: "utility", name: "menu" },
321
+ { category: "utility", name: "minus-bold" },
322
+ { category: "utility", name: "minus" },
323
+ { category: "utility", name: "more-horizontal" },
324
+ { category: "utility", name: "more-vertical" },
325
+ { category: "utility", name: "plus" },
326
+ { category: "utility", name: "search" },
327
+ { category: "utility", name: "services" },
328
+ { category: "utility", name: "sorter" },
329
+ { category: "utility", name: "table-view" }
330
+ ];
331
+ export {
332
+ e as iconCategories
333
+ };
@@ -1,2 +1,2 @@
1
- export declare const iconNames: readonly ["activity-level", "add", "address-book", "ai-robot", "airplay", "alert-filled", "alert", "arrow-down", "arrow-left", "arrow-right", "arrow-subdirectory", "arrow-up", "attachment", "b2b-customer", "bag", "bar-chart", "basketball", "battery", "blood-pressure", "bluetooth", "broadband", "broken-phone", "bulb", "business-continuity", "business-intelligence", "calendar", "camera", "card-view", "care", "cast", "chat-robot", "chat", "check-circle-filled", "check-circle", "checkmark", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "child-2", "close-circle", "close", "cloud-connect", "cloud", "coffee", "compass", "connected-building", "connected", "construction", "conversation", "core-router", "credit-card", "customer-dialogue", "daas-device", "data-transfer", "delivery", "desktop", "devices", "dislike", "doc", "document-doc", "document-edit", "document-pdf", "document-ppt", "download", "drone", "dsl-hub", "edit", "education", "efficiency", "end-user", "entertainment", "environment", "error-filled", "error", "esim-simcard", "esim", "euro", "excel", "external", "face-id", "facemask", "fiber", "film", "filter", "fingerprint", "fiveg", "flag", "focus", "folder-copy", "folder-new", "folder", "food", "fourg", "fraud", "games", "getting-started", "GIF", "graph", "grid-view", "handshake", "headphones", "help", "home-care", "home-installation", "home", "hospital", "image", "industrial-iot", "industry", "infinite", "info-filled", "info", "internet", "invoice", "job-search", "key", "kontantkort", "laptop", "late-payment", "layers", "letter", "like", "link", "list-view", "lock-open", "lock", "login", "logout", "map", "measuring-health", "media-content", "megaphone", "menu", "microphone", "minus", "mms", "mobile-broadband", "moisture", "money-back", "money-krone", "money", "more-horizontal", "more-vertical", "music", "network", "new-contact", "new-group", "news", "offering", "offshore", "optimization", "org-chart", "pay-monthly", "pay-once", "payment-success", "people", "pet-dog", "phone-recycling", "phone-ringing", "phone", "pie-chart", "pin", "plane", "player-settings", "plus-minus", "plus", "police", "power-grid", "premises-datacenter", "premises-large", "premises-medium", "premises-small", "premises", "present", "press-button", "price", "print", "pulse", "question-filled", "question", "rack", "radio", "record", "recycle", "refill-card", "register", "remote-control", "repair", "report", "reservation", "reverse", "roaming", "route", "router", "ruler", "satellite", "save", "savings", "search", "secure-device", "secured-1", "secured-2", "security-camera", "send", "sense-car", "server", "service-device", "service-supervision", "services", "settings", "share", "shopping", "shuffle", "signature", "simcard", "skip-back-10sec", "skip-back-30sec", "skip-forward-10sec", "skip-forward-30sec", "slow-wifi", "smart-wifi", "smartphone", "smartwatch", "smiley-happy", "sms", "snowflake", "sorter", "speedometer", "spell-check", "split", "spyware", "stop", "store", "stream", "suitcase", "summary", "support", "sustainability", "switch", "sync", "table-view", "tablet", "tag", "temperature", "thinking", "time", "trade-phone", "trailer", "train", "transfer", "tv-next", "tv-pause", "tv-previous", "tv-stop", "tv", "undo", "upload", "usb", "user-admin", "vcard", "video-conference", "video", "voice-switch", "voicemail", "wallet", "wallplug", "warning", "wavelength", "weather", "wireless-off", "wireless", "world-alert", "world-off", "world-question", "world", "zoom-out", "zoom"];
1
+ export declare const iconNames: readonly ["alarm-off", "alarm-on", "attachment", "bookmark-filled", "bookmark", "copy-filled", "copy", "dislike", "download", "edit", "filter", "heart-filled", "heart", "invisible", "like", "lock-open", "lock", "login", "logout", "maximize", "minimize", "mute", "password-invisible", "password-visible", "play-filled", "play", "remove-filled", "remove", "save", "send", "settings", "share", "shuffle", "skip-back-10sec", "skip-back-30sec", "skip-forward-10sec", "skip-forward-30sec", "star-filled", "star", "switch-arrows", "sync", "tv-next", "tv-pause", "tv-previous", "tv-stop", "upload", "visible", "volume", "zoom-out", "zoom", "connected-building", "home", "hospital", "industry", "premises-datacenter", "premises-large", "premises-medium", "premises-small", "premises", "store", "address-book", "b2b-customer", "care", "chat-robot", "chat", "child-1", "child-2", "conversation", "customer-dialogue", "dsl-hub", "email", "end-user", "handshake", "headphones", "letter", "mms", "new-contact", "new-group", "news", "parental-guide", "people-hub", "people", "portal", "signature", "smiley-happy", "smiley-sad", "sms", "support", "user-admin", "vcard", "voicemail", "battery", "bluetooth", "broadband", "broken-phone", "cast", "cloud-connect", "connected", "core-router", "daas-device", "data-transfer", "desktop", "devices", "esim-simcard", "esim", "face-id", "fiber", "fingerprint", "fiveg", "fourg", "home-installation", "industrial-iot", "internet", "it-service", "laptop", "mobile-broadband", "network", "phone-recycling", "phone-ringing", "phone", "rack", "refill-card", "remote-control", "repair", "roaming", "router", "secure-device", "sense-car", "server", "service-device", "service-supervision", "slow-wifi", "smart-wifi", "smartphone", "smartwatch", "tablet", "trade-phone", "tv", "usb", "voice-switch", "wallplug", "wireless-off", "wireless-weak", "wireless", "world-alert", "world-off", "world-question", "bar-chart", "doc", "document-doc", "document-edit", "document-pdf", "document-ppt", "excel", "folder-copy", "folder-new", "folder", "gif", "graph", "media-content", "org-chart", "pie-chart", "print", "register", "report", "simcard", "spell-check", "summary", "credit-card", "euro", "invoice", "kontantkort", "kr", "late-payment", "money-back-euro", "money-back-kr", "money-euro", "money-kr", "pay-monthly-euro", "pay-monthly-kr", "pay-once-euro", "pay-once-kr", "payment-success", "savings", "wallet", "airplay", "camera", "entertainment", "external", "film", "games", "image", "link", "megaphone", "microphone", "music", "player-settings", "record", "stream", "trailer", "video-conference", "video", "activity-level", "add", "ai-robot", "bag", "basketball", "blood-pressure", "bulb", "business-continuity", "business-intelligence", "calendar", "cart", "close-circle", "cloud", "coffee", "compass", "construction", "cookie", "delivery", "drone", "education", "efficiency", "environment", "facemask", "flag", "focus", "food", "fraud", "getting-started", "home-care", "infinite", "job-search", "key", "layers", "map", "measuring-health", "moisture", "offering", "offshore", "optimization", "pebble", "pet-dog", "pin", "plane", "plus-minus", "police", "power-grid", "present", "press-button", "price", "pulse", "radio", "recycle", "reservation", "reverse", "route", "ruler", "satellite", "secured-1", "secured-2", "security-camera", "shopping", "snowflake", "speedometer", "split", "spyware", "stop", "suitcase", "sustainability", "tag", "temperature", "thinking", "time", "train", "transfer", "undo", "wavelength", "weather", "world", "android", "apple", "bankid", "facebook", "instagram", "linkedin", "snapchat", "whatsapp", "windows", "x", "youtube", "alert-filled", "alert", "check-circle-filled", "check-circle", "error-filled", "error", "help", "info-filled", "info", "question-filled", "question", "warning", "arrow-down", "arrow-left", "arrow-right", "arrow-subdirectory", "arrow-up", "card-view", "checkmark-bold", "checkmark", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "close", "grid-view", "list-view", "menu", "minus-bold", "minus", "more-horizontal", "more-vertical", "plus", "search", "services", "sorter", "table-view"];
2
2
  export type IconName = (typeof iconNames)[number];