@expcat/tigercat-core 2.0.0-preview.3 → 2.0.0-preview.5

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.
@@ -98,5 +98,140 @@ declare const iconNames: IconName[];
98
98
  * names so callers can fall back gracefully.
99
99
  */
100
100
  declare function getIconDefinition(name: string): IconDefinition | undefined;
101
+ declare const sortAscendingIcon: IconDefinition;
102
+ declare const sortDescendingIcon: IconDefinition;
103
+ declare const listIcon: IconDefinition;
104
+ declare const gridIcon: IconDefinition;
105
+ declare const fullscreenIcon: IconDefinition;
106
+ declare const fullscreenExitIcon: IconDefinition;
107
+ declare const zoomInIcon: IconDefinition;
108
+ declare const zoomOutIcon: IconDefinition;
109
+ declare const shareIcon: IconDefinition;
110
+ declare const sendIcon: IconDefinition;
111
+ declare const printIcon: IconDefinition;
112
+ declare const paperclipIcon: IconDefinition;
113
+ declare const unlockIcon: IconDefinition;
114
+ declare const keyIcon: IconDefinition;
115
+ declare const banIcon: IconDefinition;
116
+ declare const shieldCheckIcon: IconDefinition;
117
+ declare const flagIcon: IconDefinition;
118
+ declare const bookmarkIcon: IconDefinition;
119
+ declare const tagIcon: IconDefinition;
120
+ declare const archiveIcon: IconDefinition;
121
+ declare const inboxIcon: IconDefinition;
122
+ declare const boltIcon: IconDefinition;
123
+ declare const chatIcon: IconDefinition;
124
+ declare const videoIcon: IconDefinition;
125
+ declare const cameraIcon: IconDefinition;
126
+ declare const microphoneIcon: IconDefinition;
127
+ declare const volumeUpIcon: IconDefinition;
128
+ declare const volumeOffIcon: IconDefinition;
129
+ declare const playIcon: IconDefinition;
130
+ declare const pauseIcon: IconDefinition;
131
+ declare const stopIcon: IconDefinition;
132
+ declare const musicIcon: IconDefinition;
133
+ declare const helpCircleIcon: IconDefinition;
134
+ declare const exclamationCircleIcon: IconDefinition;
135
+ declare const thumbsUpIcon: IconDefinition;
136
+ declare const thumbsDownIcon: IconDefinition;
137
+ declare const sparklesIcon: IconDefinition;
138
+ declare const cartIcon: IconDefinition;
139
+ declare const creditCardIcon: IconDefinition;
140
+ declare const giftIcon: IconDefinition;
141
+ declare const currencyDollarIcon: IconDefinition;
142
+ declare const walletIcon: IconDefinition;
143
+ declare const chartBarIcon: IconDefinition;
144
+ declare const chartPieIcon: IconDefinition;
145
+ declare const databaseIcon: IconDefinition;
146
+ declare const serverIcon: IconDefinition;
147
+ declare const codeIcon: IconDefinition;
148
+ declare const terminalIcon: IconDefinition;
149
+ declare const globeIcon: IconDefinition;
150
+ declare const wifiIcon: IconDefinition;
151
+ declare const cloudIcon: IconDefinition;
152
+ declare const cloudUploadIcon: IconDefinition;
153
+ declare const cloudDownloadIcon: IconDefinition;
154
+ declare const cpuIcon: IconDefinition;
155
+ declare const sunIcon: IconDefinition;
156
+ declare const moonIcon: IconDefinition;
157
+ declare const translateIcon: IconDefinition;
158
+ declare const briefcaseIcon: IconDefinition;
159
+ declare const buildingIcon: IconDefinition;
160
+ declare const bookIcon: IconDefinition;
161
+ declare const truckIcon: IconDefinition;
162
+ declare const rocketIcon: IconDefinition;
163
+ /**
164
+ * All extended icon definitions keyed by kebab-case name. Importing this
165
+ * record bundles every glyph — use it for galleries and docs; import
166
+ * individual constants everywhere else.
167
+ */
168
+ declare const extendedIcons: {
169
+ 'sort-ascending': IconDefinition;
170
+ 'sort-descending': IconDefinition;
171
+ list: IconDefinition;
172
+ grid: IconDefinition;
173
+ fullscreen: IconDefinition;
174
+ 'fullscreen-exit': IconDefinition;
175
+ 'zoom-in': IconDefinition;
176
+ 'zoom-out': IconDefinition;
177
+ share: IconDefinition;
178
+ send: IconDefinition;
179
+ print: IconDefinition;
180
+ paperclip: IconDefinition;
181
+ unlock: IconDefinition;
182
+ key: IconDefinition;
183
+ ban: IconDefinition;
184
+ 'shield-check': IconDefinition;
185
+ flag: IconDefinition;
186
+ bookmark: IconDefinition;
187
+ tag: IconDefinition;
188
+ archive: IconDefinition;
189
+ inbox: IconDefinition;
190
+ bolt: IconDefinition;
191
+ chat: IconDefinition;
192
+ video: IconDefinition;
193
+ camera: IconDefinition;
194
+ microphone: IconDefinition;
195
+ 'volume-up': IconDefinition;
196
+ 'volume-off': IconDefinition;
197
+ play: IconDefinition;
198
+ pause: IconDefinition;
199
+ stop: IconDefinition;
200
+ music: IconDefinition;
201
+ 'help-circle': IconDefinition;
202
+ 'exclamation-circle': IconDefinition;
203
+ 'thumbs-up': IconDefinition;
204
+ 'thumbs-down': IconDefinition;
205
+ sparkles: IconDefinition;
206
+ cart: IconDefinition;
207
+ 'credit-card': IconDefinition;
208
+ gift: IconDefinition;
209
+ 'currency-dollar': IconDefinition;
210
+ wallet: IconDefinition;
211
+ 'chart-bar': IconDefinition;
212
+ 'chart-pie': IconDefinition;
213
+ database: IconDefinition;
214
+ server: IconDefinition;
215
+ code: IconDefinition;
216
+ terminal: IconDefinition;
217
+ globe: IconDefinition;
218
+ wifi: IconDefinition;
219
+ cloud: IconDefinition;
220
+ 'cloud-upload': IconDefinition;
221
+ 'cloud-download': IconDefinition;
222
+ cpu: IconDefinition;
223
+ sun: IconDefinition;
224
+ moon: IconDefinition;
225
+ translate: IconDefinition;
226
+ briefcase: IconDefinition;
227
+ building: IconDefinition;
228
+ book: IconDefinition;
229
+ truck: IconDefinition;
230
+ rocket: IconDefinition;
231
+ };
232
+ /**
233
+ * Union of all extended icon names (keys of {@link extendedIcons}).
234
+ */
235
+ type ExtendedIconName = keyof typeof extendedIcons;
101
236
 
102
- export { type IconDefinition, type IconName, type IconRenderMode, getIconDefinition, iconNames, iconRegistry };
237
+ export { type ExtendedIconName, type IconDefinition, type IconName, type IconRenderMode, archiveIcon, banIcon, boltIcon, bookIcon, bookmarkIcon, briefcaseIcon, buildingIcon, cameraIcon, cartIcon, chartBarIcon, chartPieIcon, chatIcon, cloudDownloadIcon, cloudIcon, cloudUploadIcon, codeIcon, cpuIcon, creditCardIcon, currencyDollarIcon, databaseIcon, exclamationCircleIcon, extendedIcons, flagIcon, fullscreenExitIcon, fullscreenIcon, getIconDefinition, giftIcon, globeIcon, gridIcon, helpCircleIcon, iconNames, iconRegistry, inboxIcon, keyIcon, listIcon, microphoneIcon, moonIcon, musicIcon, paperclipIcon, pauseIcon, playIcon, printIcon, rocketIcon, sendIcon, serverIcon, shareIcon, shieldCheckIcon, sortAscendingIcon, sortDescendingIcon, sparklesIcon, stopIcon, sunIcon, tagIcon, terminalIcon, thumbsDownIcon, thumbsUpIcon, translateIcon, truckIcon, unlockIcon, videoIcon, volumeOffIcon, volumeUpIcon, walletIcon, wifiIcon, zoomInIcon, zoomOutIcon };
@@ -13,6 +13,9 @@ var stroke24 = (...paths) => ({
13
13
  paths,
14
14
  mode: "stroke"
15
15
  });
16
+ var squares2x2 = stroke24(
17
+ "M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"
18
+ );
16
19
  var iconRegistry = {
17
20
  // --- Reused internal glyphs ---
18
21
  close: stroke24(closeIconPathD),
@@ -128,16 +131,326 @@ var iconRegistry = {
128
131
  users: stroke24(
129
132
  "M15 19.128a9.38 9.38 0 0 0 2.625.372 9.337 9.337 0 0 0 4.121-.952 4.125 4.125 0 0 0-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0Zm8.25 2.25a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z"
130
133
  ),
131
- dashboard: stroke24(
132
- "M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"
133
- )
134
+ dashboard: squares2x2
134
135
  };
135
136
  var iconNames = Object.keys(iconRegistry);
136
137
  function getIconDefinition(name) {
137
138
  return iconRegistry[name];
138
139
  }
140
+ var sortAscendingIcon = /* @__PURE__ */ stroke24(
141
+ "M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12"
142
+ );
143
+ var sortDescendingIcon = /* @__PURE__ */ stroke24(
144
+ "M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0-3.75-3.75M17.25 21 21 17.25"
145
+ );
146
+ var listIcon = /* @__PURE__ */ stroke24(
147
+ "M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0ZM3.75 12h.007v.008H3.75V12Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm-.375 5.25h.007v.008H3.75v-.008Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"
148
+ );
149
+ var gridIcon = squares2x2;
150
+ var fullscreenIcon = /* @__PURE__ */ stroke24(
151
+ "M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15"
152
+ );
153
+ var fullscreenExitIcon = /* @__PURE__ */ stroke24(
154
+ "M9 9V4.5M9 9H4.5M9 9 3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5 5.25 5.25"
155
+ );
156
+ var zoomInIcon = /* @__PURE__ */ stroke24(
157
+ "m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM10.5 7.5v6m3-3h-6"
158
+ );
159
+ var zoomOutIcon = /* @__PURE__ */ stroke24(
160
+ "m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM13.5 10.5h-6"
161
+ );
162
+ var shareIcon = /* @__PURE__ */ stroke24(
163
+ "M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186 9.566-5.314m-9.566 7.5 9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186 2.25 2.25 0 0 0-3.935-2.186Zm0-12.814a2.25 2.25 0 1 0 3.933-2.185 2.25 2.25 0 0 0-3.933 2.185Z"
164
+ );
165
+ var sendIcon = /* @__PURE__ */ stroke24(
166
+ "M6 12 3.269 3.125A59.769 59.769 0 0 1 21.485 12 59.768 59.768 0 0 1 3.27 20.875L5.999 12Zm0 0h7.5"
167
+ );
168
+ var printIcon = /* @__PURE__ */ stroke24(
169
+ "M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Zm-3 0h.008v.008H15V10.5Z"
170
+ );
171
+ var paperclipIcon = /* @__PURE__ */ stroke24(
172
+ "m18.375 12.739-7.693 7.693a4.5 4.5 0 0 1-6.364-6.364l10.94-10.94A3 3 0 1 1 19.5 7.372L8.552 18.32m.009-.01-.01.01m5.699-9.941-7.81 7.81a1.5 1.5 0 0 0 2.112 2.13"
173
+ );
174
+ var unlockIcon = /* @__PURE__ */ stroke24(
175
+ "M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"
176
+ );
177
+ var keyIcon = /* @__PURE__ */ stroke24(
178
+ "M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25Z"
179
+ );
180
+ var banIcon = /* @__PURE__ */ stroke24(
181
+ "M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636"
182
+ );
183
+ var shieldCheckIcon = /* @__PURE__ */ stroke24(
184
+ "M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z"
185
+ );
186
+ var flagIcon = /* @__PURE__ */ stroke24(
187
+ "M3 3v1.5M3 21v-6m0 0 2.77-.693a9 9 0 0 1 6.208.682l.108.054a9 9 0 0 0 6.086.71l3.114-.732a48.524 48.524 0 0 1-.005-10.499l-3.11.732a9 9 0 0 1-6.085-.711l-.108-.054a9 9 0 0 0-6.208-.682L3 4.5M3 15V4.5"
188
+ );
189
+ var bookmarkIcon = /* @__PURE__ */ stroke24(
190
+ "M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0Z"
191
+ );
192
+ var tagIcon = /* @__PURE__ */ stroke24(
193
+ "M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z",
194
+ "M6 6h.008v.008H6V6Z"
195
+ );
196
+ var archiveIcon = /* @__PURE__ */ stroke24(
197
+ "m20.25 7.5-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5M10 11.25h4M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"
198
+ );
199
+ var inboxIcon = /* @__PURE__ */ stroke24(
200
+ "M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859m-19.5.338V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 0 0-2.15-1.588H6.911a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661Z"
201
+ );
202
+ var boltIcon = /* @__PURE__ */ stroke24(
203
+ "m3.75 13.5 10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75Z"
204
+ );
205
+ var chatIcon = /* @__PURE__ */ stroke24(
206
+ "M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"
207
+ );
208
+ var videoIcon = /* @__PURE__ */ stroke24(
209
+ "m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z"
210
+ );
211
+ var cameraIcon = /* @__PURE__ */ stroke24(
212
+ "M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23c-.38.054-.757.112-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a47.865 47.865 0 0 0-1.134-.175 2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.192 2.192 0 0 0-1.736-1.039 48.774 48.774 0 0 0-5.232 0 2.192 2.192 0 0 0-1.736 1.039l-.821 1.316Z",
213
+ "M16.5 12.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM18.75 10.5h.008v.008h-.008V10.5Z"
214
+ );
215
+ var microphoneIcon = /* @__PURE__ */ stroke24(
216
+ "M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3Z"
217
+ );
218
+ var volumeUpIcon = /* @__PURE__ */ stroke24(
219
+ "M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"
220
+ );
221
+ var volumeOffIcon = /* @__PURE__ */ stroke24(
222
+ "M17.25 9.75 19.5 12m0 0 2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6 4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"
223
+ );
224
+ var playIcon = /* @__PURE__ */ stroke24(
225
+ "M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z"
226
+ );
227
+ var pauseIcon = /* @__PURE__ */ stroke24("M15.75 5.25v13.5m-7.5-13.5v13.5");
228
+ var stopIcon = /* @__PURE__ */ stroke24(
229
+ "M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-9Z"
230
+ );
231
+ var musicIcon = /* @__PURE__ */ stroke24(
232
+ "m9 9 10.5-3m0 6.553v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 1 1-.99-3.467l2.31-.66a2.25 2.25 0 0 0 1.632-2.163Zm0 0V2.25L9 5.25v10.303m0 0v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 0 1-.99-3.467l2.31-.66A2.25 2.25 0 0 0 9 15.553Z"
233
+ );
234
+ var helpCircleIcon = /* @__PURE__ */ stroke24(
235
+ "M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"
236
+ );
237
+ var exclamationCircleIcon = /* @__PURE__ */ stroke24(
238
+ "M12 9v3.75m9-.75a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 3.75h.008v.008H12v-.008Z"
239
+ );
240
+ var thumbsUpIcon = /* @__PURE__ */ stroke24(
241
+ "M6.633 10.25c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V2.75a.75.75 0 0 1 .75-.75 2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282m0 0h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23H5.904m10.598-9.75H14.25M5.904 18.5c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 0 1-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 9.953 4.167 9.5 5 9.5h1.053c.472 0 .745.556.5.96a8.958 8.958 0 0 0-1.302 4.665c0 1.194.232 2.333.654 3.375Z"
242
+ );
243
+ var thumbsDownIcon = /* @__PURE__ */ stroke24(
244
+ "M7.498 15.25H4.372c-1.026 0-1.945-.694-2.054-1.715a12.137 12.137 0 0 1-.068-1.285c0-2.848.992-5.464 2.649-7.521C5.287 4.247 5.886 4 6.504 4h4.016a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23h1.294M7.498 15.25c.618 0 .991.724.725 1.282A7.471 7.471 0 0 0 7.5 19.75 2.25 2.25 0 0 0 9.75 22a.75.75 0 0 0 .75-.75v-.633c0-.573.11-1.14.322-1.672.304-.76.93-1.33 1.653-1.715a9.04 9.04 0 0 0 2.86-2.4c.498-.634 1.226-1.08 2.032-1.08h.384m-10.253 1.5H9.7m8.075-9.75c.01.05.027.1.05.148.593 1.2.925 2.55.925 3.977 0 1.487-.36 2.89-.999 4.125m.023-8.25c-.076-.365.183-.75.575-.75h.908c.889 0 1.713.518 1.972 1.368.339 1.11.521 2.287.521 3.507 0 1.553-.295 3.036-.831 4.398-.306.774-1.086 1.227-1.918 1.227h-1.053c-.472 0-.745-.556-.5-.96a8.95 8.95 0 0 0 .303-.54"
245
+ );
246
+ var sparklesIcon = /* @__PURE__ */ stroke24(
247
+ "M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"
248
+ );
249
+ var cartIcon = /* @__PURE__ */ stroke24(
250
+ "M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
251
+ );
252
+ var creditCardIcon = /* @__PURE__ */ stroke24(
253
+ "M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5Z"
254
+ );
255
+ var giftIcon = /* @__PURE__ */ stroke24(
256
+ "M21 11.25v8.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5v-8.25M12 4.875A2.625 2.625 0 1 0 9.375 7.5H12m0-2.625V7.5m0-2.625A2.625 2.625 0 1 1 14.625 7.5H12m0 0V21m-8.625-9.75h18c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125h-18c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"
257
+ );
258
+ var currencyDollarIcon = /* @__PURE__ */ stroke24(
259
+ "M12 6v12m-3-2.818.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
260
+ );
261
+ var walletIcon = /* @__PURE__ */ stroke24(
262
+ "M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3"
263
+ );
264
+ var chartBarIcon = /* @__PURE__ */ stroke24(
265
+ "M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875v-6.75ZM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V8.625ZM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V4.125Z"
266
+ );
267
+ var chartPieIcon = /* @__PURE__ */ stroke24(
268
+ "M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5V6Z",
269
+ "M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3v7.5Z"
270
+ );
271
+ var databaseIcon = /* @__PURE__ */ stroke24(
272
+ "M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125"
273
+ );
274
+ var serverIcon = /* @__PURE__ */ stroke24(
275
+ "M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008v-.008Zm-3 0h.008v.008h-.008v-.008Z"
276
+ );
277
+ var codeIcon = /* @__PURE__ */ stroke24(
278
+ "M17.25 6.75 22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3-4.5 16.5"
279
+ );
280
+ var terminalIcon = /* @__PURE__ */ stroke24(
281
+ "m6.75 7.5 3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25Z"
282
+ );
283
+ var globeIcon = /* @__PURE__ */ stroke24(
284
+ "M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418"
285
+ );
286
+ var wifiIcon = /* @__PURE__ */ stroke24(
287
+ "M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53-.53-.53a.75.75 0 0 1 1.06 0Z"
288
+ );
289
+ var cloudIcon = /* @__PURE__ */ stroke24(
290
+ "M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257 3 3 0 0 0-3.758-3.848 5.25 5.25 0 0 0-10.233 2.33A4.502 4.502 0 0 0 2.25 15Z"
291
+ );
292
+ var cloudUploadIcon = /* @__PURE__ */ stroke24(
293
+ "M12 16.5V9.75m0 0 3 3m-3-3-3 3M6.75 19.5a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"
294
+ );
295
+ var cloudDownloadIcon = /* @__PURE__ */ stroke24(
296
+ "M12 9.75v6.75m0 0-3-3m3 3 3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"
297
+ );
298
+ var cpuIcon = /* @__PURE__ */ stroke24(
299
+ "M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M12 3v1.5m0 15V21m3.75-18v1.5m0 15V21m-9-1.5h10.5a2.25 2.25 0 0 0 2.25-2.25V6.75a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 6.75v10.5a2.25 2.25 0 0 0 2.25 2.25Zm.75-12h9v9h-9v-9Z"
300
+ );
301
+ var sunIcon = /* @__PURE__ */ stroke24(
302
+ "M12 3v2.25m6.364.386-1.591 1.591M21 12h-2.25m-.386 6.364-1.591-1.591M12 18.75V21m-4.773-4.227-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z"
303
+ );
304
+ var moonIcon = /* @__PURE__ */ stroke24(
305
+ "M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z"
306
+ );
307
+ var translateIcon = /* @__PURE__ */ stroke24(
308
+ "m10.5 21 5.25-11.25L21 21m-9-3h7.5M3 5.621a48.474 48.474 0 0 1 6-.371m0 0c1.12 0 2.233.038 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138c.896.061 1.785.147 2.666.257m-4.589 8.495a18.023 18.023 0 0 1-3.827-5.802"
309
+ );
310
+ var briefcaseIcon = /* @__PURE__ */ stroke24(
311
+ "M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0 1 12 15.75c-2.648 0-5.195-.429-7.577-1.22a2.016 2.016 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a48.667 48.667 0 0 0-7.5 0M12 12.75h.008v.008H12v-.008Z"
312
+ );
313
+ var buildingIcon = /* @__PURE__ */ stroke24(
314
+ "M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21"
315
+ );
316
+ var bookIcon = /* @__PURE__ */ stroke24(
317
+ "M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"
318
+ );
319
+ var truckIcon = /* @__PURE__ */ stroke24(
320
+ "M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193 2.056 2.056 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.554 48.554 0 0 0-10.026 0 1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12"
321
+ );
322
+ var rocketIcon = /* @__PURE__ */ stroke24(
323
+ "M15.59 14.37a6 6 0 0 1-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.926 14.926 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 0 0-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 0 1-2.448-2.448 14.9 14.9 0 0 1 .06-.312m-2.24 2.39a4.493 4.493 0 0 0-1.757 4.306 4.493 4.493 0 0 0 4.306-1.758M16.5 9a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
324
+ );
325
+ var extendedIcons = {
326
+ "sort-ascending": sortAscendingIcon,
327
+ "sort-descending": sortDescendingIcon,
328
+ list: listIcon,
329
+ grid: gridIcon,
330
+ fullscreen: fullscreenIcon,
331
+ "fullscreen-exit": fullscreenExitIcon,
332
+ "zoom-in": zoomInIcon,
333
+ "zoom-out": zoomOutIcon,
334
+ share: shareIcon,
335
+ send: sendIcon,
336
+ print: printIcon,
337
+ paperclip: paperclipIcon,
338
+ unlock: unlockIcon,
339
+ key: keyIcon,
340
+ ban: banIcon,
341
+ "shield-check": shieldCheckIcon,
342
+ flag: flagIcon,
343
+ bookmark: bookmarkIcon,
344
+ tag: tagIcon,
345
+ archive: archiveIcon,
346
+ inbox: inboxIcon,
347
+ bolt: boltIcon,
348
+ chat: chatIcon,
349
+ video: videoIcon,
350
+ camera: cameraIcon,
351
+ microphone: microphoneIcon,
352
+ "volume-up": volumeUpIcon,
353
+ "volume-off": volumeOffIcon,
354
+ play: playIcon,
355
+ pause: pauseIcon,
356
+ stop: stopIcon,
357
+ music: musicIcon,
358
+ "help-circle": helpCircleIcon,
359
+ "exclamation-circle": exclamationCircleIcon,
360
+ "thumbs-up": thumbsUpIcon,
361
+ "thumbs-down": thumbsDownIcon,
362
+ sparkles: sparklesIcon,
363
+ cart: cartIcon,
364
+ "credit-card": creditCardIcon,
365
+ gift: giftIcon,
366
+ "currency-dollar": currencyDollarIcon,
367
+ wallet: walletIcon,
368
+ "chart-bar": chartBarIcon,
369
+ "chart-pie": chartPieIcon,
370
+ database: databaseIcon,
371
+ server: serverIcon,
372
+ code: codeIcon,
373
+ terminal: terminalIcon,
374
+ globe: globeIcon,
375
+ wifi: wifiIcon,
376
+ cloud: cloudIcon,
377
+ "cloud-upload": cloudUploadIcon,
378
+ "cloud-download": cloudDownloadIcon,
379
+ cpu: cpuIcon,
380
+ sun: sunIcon,
381
+ moon: moonIcon,
382
+ translate: translateIcon,
383
+ briefcase: briefcaseIcon,
384
+ building: buildingIcon,
385
+ book: bookIcon,
386
+ truck: truckIcon,
387
+ rocket: rocketIcon
388
+ };
139
389
  export {
390
+ archiveIcon,
391
+ banIcon,
392
+ boltIcon,
393
+ bookIcon,
394
+ bookmarkIcon,
395
+ briefcaseIcon,
396
+ buildingIcon,
397
+ cameraIcon,
398
+ cartIcon,
399
+ chartBarIcon,
400
+ chartPieIcon,
401
+ chatIcon,
402
+ cloudDownloadIcon,
403
+ cloudIcon,
404
+ cloudUploadIcon,
405
+ codeIcon,
406
+ cpuIcon,
407
+ creditCardIcon,
408
+ currencyDollarIcon,
409
+ databaseIcon,
410
+ exclamationCircleIcon,
411
+ extendedIcons,
412
+ flagIcon,
413
+ fullscreenExitIcon,
414
+ fullscreenIcon,
140
415
  getIconDefinition,
416
+ giftIcon,
417
+ globeIcon,
418
+ gridIcon,
419
+ helpCircleIcon,
141
420
  iconNames,
142
- iconRegistry
421
+ iconRegistry,
422
+ inboxIcon,
423
+ keyIcon,
424
+ listIcon,
425
+ microphoneIcon,
426
+ moonIcon,
427
+ musicIcon,
428
+ paperclipIcon,
429
+ pauseIcon,
430
+ playIcon,
431
+ printIcon,
432
+ rocketIcon,
433
+ sendIcon,
434
+ serverIcon,
435
+ shareIcon,
436
+ shieldCheckIcon,
437
+ sortAscendingIcon,
438
+ sortDescendingIcon,
439
+ sparklesIcon,
440
+ stopIcon,
441
+ sunIcon,
442
+ tagIcon,
443
+ terminalIcon,
444
+ thumbsDownIcon,
445
+ thumbsUpIcon,
446
+ translateIcon,
447
+ truckIcon,
448
+ unlockIcon,
449
+ videoIcon,
450
+ volumeOffIcon,
451
+ volumeUpIcon,
452
+ walletIcon,
453
+ wifiIcon,
454
+ zoomInIcon,
455
+ zoomOutIcon
143
456
  };