@cypress-design/react-statusicon 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -6
- package/CHANGELOG.md +14 -0
- package/StatusIconReact.cy.tsx +1 -1
- package/dist/index.es.mjs +436 -5
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +631 -200
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/rollup.config.mjs +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
$ yarn build:module && yarn build:types
|
|
2
|
-
$ rollup -c ./rollup.config.mjs
|
|
3
|
-
(node:4229) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
|
|
4
|
-
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
5
1
|
[36m
|
|
6
2
|
[1m./index.ts[22m → [1m./dist/index.umd.js, ./dist/index.es.mjs[22m...[39m
|
|
7
3
|
[1m[33m(!) Mixing named and default exports[39m[22m
|
|
@@ -10,5 +6,4 @@ $ rollup -c ./rollup.config.mjs
|
|
|
10
6
|
index.ts
|
|
11
7
|
|
|
12
8
|
Consumers of your bundle will have to use chunk.default to access their default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
|
|
13
|
-
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [
|
|
14
|
-
$ tsc --project ./tsconfig.build.json
|
|
9
|
+
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [1m14s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @cypress-design/react-statusicon
|
|
2
2
|
|
|
3
|
+
## 1.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7a8dedb`](https://github.com/cypress-io/cypress-design/commit/7a8dedbb34f5f680d935cd2939c15b4783a27d3f), [`6ad912b`](https://github.com/cypress-io/cypress-design/commit/6ad912ba9800292f3b47c5c0a46b8ea2a2a30859)]:
|
|
8
|
+
- @cypress-design/react-icon@3.0.0
|
|
9
|
+
|
|
10
|
+
## 1.0.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`7f0c84a`](https://github.com/cypress-io/cypress-design/commit/7f0c84acb31d231a09ead4969da3c5aea286c385)]:
|
|
15
|
+
- @cypress-design/react-icon@2.0.0
|
|
16
|
+
|
|
3
17
|
## 1.0.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/StatusIconReact.cy.tsx
CHANGED
package/dist/index.es.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { cyStatusRunningSimpleX4, cyStatusRunningSimpleX8, cyStatusRunningOutlineX12, cyStatusRunningOutlineX16, cyStatusRunningOutlineX24, cyStatusFailingOutlineX16, cyStatusFailingOutlineX24, cyStatusPassedSimpleX4, cyStatusPassedSimpleX8, cyStatusPassedSimpleX12, cyStatusPassedOutlineX16, cyStatusPassedOutlineX24, cyStatusFailedSimpleX4, cyStatusFailedSimpleX8, cyStatusFailedSimpleX12, cyStatusFailedOutlineX16, cyStatusFailedOutlineX24, cyStatusQueuedSimpleX4, cyStatusQueuedSimpleX8, cyStatusQueuedOutlineX12, cyStatusQueuedOutlineX16, cyStatusQueuedOutlineX24, cyStatusPlaceholderSimpleX4, cyStatusPlaceholderSimpleX8, cyStatusPlaceholderSolidX12, cyStatusPlaceholderSolidX16, cyStatusPlaceholderSolidX24, cyStatusCancelledSimpleX4, cyStatusCancelledSimpleX8, cyStatusCancelledSolidX12, cyStatusCancelledOutlineX16, cyStatusCancelledOutlineX24, cyStatusErroredSimpleX4, cyStatusErroredSimpleX8, cyStatusErroredSolidX12, cyStatusErroredOutlineX16, cyStatusErroredOutlineX24, cyStatusSkippedSimpleX4, cyStatusSkippedSimpleX8, cyStatusSkippedOutlineX12, cyStatusSkippedOutlineX16, cyStatusSkippedOutlineX24, cyStatusPendingSimpleX4, cyStatusPendingSimpleX8, cyStatusPendingOutlineX12, cyStatusPendingOutlineX16, cyStatusPendingOutlineX24, cyStatusPassedSimpleX16, cyStatusPassedSimpleX24, cyStatusFailedSimpleX16, cyStatusFailedSimpleX24, cyStatusCancelledSolidX16, cyStatusCancelledSolidX24, cyStatusErroredSolidX16, cyStatusErroredSolidX24, cyStatusPassedSolidX16, cyStatusPassedSolidX24, cyStatusFailedSolidX16, cyStatusFailedSolidX24, getComponentAttributes } from '@cypress-design/icon-registry';
|
|
3
2
|
import { compileReactIconProperties } from '@cypress-design/react-icon';
|
|
3
|
+
import { getComponentAttributes } from '@cypress-design/icon-registry';
|
|
4
4
|
|
|
5
5
|
/******************************************************************************
|
|
6
6
|
Copyright (c) Microsoft Corporation.
|
|
@@ -154,6 +154,422 @@ const constStatuses = {
|
|
|
154
154
|
*/
|
|
155
155
|
const statuses$3 = constStatuses;
|
|
156
156
|
|
|
157
|
+
// THIS FILE IS AUTO GENERATED BY build-icons.mjs
|
|
158
|
+
/**
|
|
159
|
+
* All possible prop names for icon colors
|
|
160
|
+
*/
|
|
161
|
+
const cyStatusCancelledOutlineX16 = {
|
|
162
|
+
name: 'statusCancelledOutlineX16',
|
|
163
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M6 8h4m-2 6A6 6 0 1 1 8 2a6 6 0 0 1 0 12Z" class="icon-dark"/>`,
|
|
164
|
+
};
|
|
165
|
+
const cyStatusCancelledOutlineX24 = {
|
|
166
|
+
name: 'statusCancelledOutlineX24',
|
|
167
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M8 12h8m-4 9a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z" class="icon-dark"/>`,
|
|
168
|
+
};
|
|
169
|
+
const cyStatusCancelledSimpleX4 = {
|
|
170
|
+
name: 'statusCancelledSimpleX4',
|
|
171
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
172
|
+
};
|
|
173
|
+
const cyStatusCancelledSimpleX8 = {
|
|
174
|
+
name: 'statusCancelledSimpleX8',
|
|
175
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M1 4h6" class="icon-dark"/>`,
|
|
176
|
+
};
|
|
177
|
+
const cyStatusCancelledSolidX12 = {
|
|
178
|
+
name: 'statusCancelledSolidX12',
|
|
179
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M2 6h8" class="icon-dark"/>`,
|
|
180
|
+
};
|
|
181
|
+
const cyStatusCancelledSolidX16 = {
|
|
182
|
+
name: 'statusCancelledSolidX16',
|
|
183
|
+
data: `<path fill="#afb3c7" fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m4-1a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
184
|
+
};
|
|
185
|
+
const cyStatusCancelledSolidX24 = {
|
|
186
|
+
name: 'statusCancelledSolidX24',
|
|
187
|
+
data: `<path fill="#afb3c7" fill-rule="evenodd" d="M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12m6-1a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2z" clip-rule="evenodd"/>`,
|
|
188
|
+
};
|
|
189
|
+
const cyStatusErroredOutlineX16 = {
|
|
190
|
+
name: 'statusErroredOutlineX16',
|
|
191
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8m6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0m1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2" class="icon-dark" clip-rule="evenodd"/>`,
|
|
192
|
+
};
|
|
193
|
+
const cyStatusErroredOutlineX24 = {
|
|
194
|
+
name: 'statusErroredOutlineX24',
|
|
195
|
+
data: `<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"/><path fill="currentColor" fill-rule="evenodd" d="M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1" class="icon-dark" clip-rule="evenodd"/><path fill="currentColor" d="M13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0" class="icon-dark"/>`,
|
|
196
|
+
};
|
|
197
|
+
const cyStatusErroredSimpleX4 = {
|
|
198
|
+
name: 'statusErroredSimpleX4',
|
|
199
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
200
|
+
};
|
|
201
|
+
const cyStatusErroredSimpleX8 = {
|
|
202
|
+
name: 'statusErroredSimpleX8',
|
|
203
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1" class="icon-dark" clip-rule="evenodd"/><path fill="currentColor" d="M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0" class="icon-dark"/>`,
|
|
204
|
+
};
|
|
205
|
+
const cyStatusErroredSolidX12 = {
|
|
206
|
+
name: 'statusErroredSolidX12',
|
|
207
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1" class="icon-dark" clip-rule="evenodd"/><path fill="currentColor" d="M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0" class="icon-dark"/>`,
|
|
208
|
+
};
|
|
209
|
+
const cyStatusErroredSolidX16 = {
|
|
210
|
+
name: 'statusErroredSolidX16',
|
|
211
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14M9 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2" class="icon-dark" clip-rule="evenodd"/>`,
|
|
212
|
+
};
|
|
213
|
+
const cyStatusErroredSolidX24 = {
|
|
214
|
+
name: 'statusErroredSolidX24',
|
|
215
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m1-14a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2" class="icon-dark" clip-rule="evenodd"/>`,
|
|
216
|
+
};
|
|
217
|
+
const cyStatusFailedOutlineX16 = {
|
|
218
|
+
name: 'statusFailedOutlineX16',
|
|
219
|
+
data: `<path fill="currentColor" d="M6.707 5.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM5.293 9.293a1 1 0 0 0 1.414 1.414zM13 8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7zm-5 5a5 5 0 0 1-5-5H1a7 7 0 0 0 7 7zM3 8a5 5 0 0 1 5-5V1a7 7 0 0 0-7 7zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7zM5.293 6.707l2 2 1.414-1.414-2-2zm2 2 2 2 1.414-1.414-2-2zm2-3.414-2 2 1.414 1.414 2-2zm-2 2-2 2 1.414 1.414 2-2z" class="icon-dark"/>`,
|
|
220
|
+
};
|
|
221
|
+
const cyStatusFailedOutlineX24 = {
|
|
222
|
+
name: 'statusFailedOutlineX24',
|
|
223
|
+
data: `<path fill="currentColor" d="M9.707 8.293a1 1 0 0 0-1.414 1.414zm4.586 7.414a1 1 0 0 0 1.414-1.414zm1.414-6a1 1 0 0 0-1.414-1.414zm-7.414 4.586a1 1 0 1 0 1.414 1.414zm0-4.586 3 3 1.414-1.414-3-3zm3 3 3 3 1.414-1.414-3-3zm3-4.414-3 3 1.414 1.414 3-3zm-3 3-3 3 1.414 1.414 3-3zM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10z" class="icon-dark"/>`,
|
|
224
|
+
};
|
|
225
|
+
const cyStatusFailedSimpleX12 = {
|
|
226
|
+
name: 'statusFailedSimpleX12',
|
|
227
|
+
data: `<path fill="currentColor" d="M3.707 2.293a1 1 0 0 0-1.414 1.414zm4.586 7.414a1 1 0 0 0 1.414-1.414zm1.414-6a1 1 0 0 0-1.414-1.414zM2.293 8.293a1 1 0 0 0 1.414 1.414zm0-4.586 6 6 1.414-1.414-6-6zm6-1.414-6 6 1.414 1.414 6-6z" class="icon-dark"/>`,
|
|
228
|
+
};
|
|
229
|
+
const cyStatusFailedSimpleX16 = {
|
|
230
|
+
name: 'statusFailedSimpleX16',
|
|
231
|
+
data: `<path fill="currentColor" d="M4.707 3.293a1 1 0 0 0-1.414 1.414zm6.586 9.414a1 1 0 0 0 1.414-1.414zm1.414-8a1 1 0 0 0-1.414-1.414zm-9.414 6.586a1 1 0 1 0 1.414 1.414zm0-6.586 4 4 1.414-1.414-4-4zm4 4 4 4 1.414-1.414-4-4zm4-5.414-4 4 1.414 1.414 4-4zm-4 4-4 4 1.414 1.414 4-4z" class="icon-dark"/>`,
|
|
232
|
+
};
|
|
233
|
+
const cyStatusFailedSimpleX24 = {
|
|
234
|
+
name: 'statusFailedSimpleX24',
|
|
235
|
+
data: `<path fill="currentColor" d="M6.707 5.293a1 1 0 0 0-1.414 1.414zm10.586 13.414a1 1 0 0 0 1.414-1.414zm1.414-12a1 1 0 0 0-1.414-1.414zM5.293 17.293a1 1 0 1 0 1.414 1.414zm0-10.586 6 6 1.414-1.414-6-6zm6 6 6 6 1.414-1.414-6-6zm6-7.414-6 6 1.414 1.414 6-6zm-6 6-6 6 1.414 1.414 6-6z" class="icon-dark"/>`,
|
|
236
|
+
};
|
|
237
|
+
const cyStatusFailedSimpleX4 = {
|
|
238
|
+
name: 'statusFailedSimpleX4',
|
|
239
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
240
|
+
};
|
|
241
|
+
const cyStatusFailedSimpleX8 = {
|
|
242
|
+
name: 'statusFailedSimpleX8',
|
|
243
|
+
data: `<path fill="currentColor" d="M2.707 1.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM1.293 5.293a1 1 0 0 0 1.414 1.414zm0-2.586 4 4 1.414-1.414-4-4zm4-1.414-4 4 1.414 1.414 4-4z" class="icon-dark"/>`,
|
|
244
|
+
};
|
|
245
|
+
const cyStatusFailedSolidX16 = {
|
|
246
|
+
name: 'statusFailedSolidX16',
|
|
247
|
+
data: `<circle cx="8" cy="8" r="7" fill="currentColor" class="icon-dark"/><path fill="#fff" d="M6.707 5.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM5.293 9.293a1 1 0 0 0 1.414 1.414zm0-2.586 4 4 1.414-1.414-4-4zm4-1.414-4 4 1.414 1.414 4-4z"/>`,
|
|
248
|
+
};
|
|
249
|
+
const cyStatusFailedSolidX24 = {
|
|
250
|
+
name: 'statusFailedSolidX24',
|
|
251
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10M9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586z" class="icon-dark" clip-rule="evenodd"/>`,
|
|
252
|
+
};
|
|
253
|
+
const cyStatusFailingOutlineX16 = {
|
|
254
|
+
name: 'statusFailingOutlineX16',
|
|
255
|
+
data: `<path fill="currentColor" d="M6.707 5.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM5.293 9.293a1 1 0 0 0 1.414 1.414zm0-2.586 4 4 1.414-1.414-4-4zm4-1.414-4 4 1.414 1.414 4-4z" class="icon-dark"/><circle cx="8" cy="8" r="6" stroke="#e1e3ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-light"/><circle cx="8" cy="8" r="6" stroke="currentColor" stroke-dasharray="10 28" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"><animate attributeName="stroke-dashoffset" dur="1s" repeatCount="indefinite" values="36.6;0"/></circle>`,
|
|
256
|
+
};
|
|
257
|
+
const cyStatusFailingOutlineX24 = {
|
|
258
|
+
name: 'statusFailingOutlineX24',
|
|
259
|
+
data: `<path fill="currentColor" d="M9.707 8.293a1 1 0 0 0-1.414 1.414zm4.586 7.414a1 1 0 0 0 1.414-1.414zm1.414-6a1 1 0 0 0-1.414-1.414zm-7.414 4.586a1 1 0 1 0 1.414 1.414zm0-4.586 3 3 1.414-1.414-3-3zm3 3 3 3 1.414-1.414-3-3zm3-4.414-3 3 1.414 1.414 3-3zm-3 3-3 3 1.414 1.414 3-3zM20 12" class="icon-dark"/><circle cx="12" cy="12" r="9" stroke="#e1e3ed" stroke-width="2" class="icon-light"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-dasharray="15 42" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"><animate attributeName="stroke-dashoffset" dur="1s" repeatCount="indefinite" values="57;0"/></circle>`,
|
|
260
|
+
};
|
|
261
|
+
const cyStatusPassedOutlineX16 = {
|
|
262
|
+
name: 'statusPassedOutlineX16',
|
|
263
|
+
data: `<circle cx="8" cy="8" r="6" stroke="currentColor" stroke-width="2" class="icon-dark"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m10 6-2.5 4L6 8.5" class="icon-dark"/>`,
|
|
264
|
+
};
|
|
265
|
+
const cyStatusPassedOutlineX24 = {
|
|
266
|
+
name: 'statusPassedOutlineX24',
|
|
267
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0m8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m3.864 7.504a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203z" class="icon-dark" clip-rule="evenodd"/>`,
|
|
268
|
+
};
|
|
269
|
+
const cyStatusPassedSimpleX12 = {
|
|
270
|
+
name: 'statusPassedSimpleX12',
|
|
271
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3 5 9 3 6.5" class="icon-dark"/>`,
|
|
272
|
+
};
|
|
273
|
+
const cyStatusPassedSimpleX16 = {
|
|
274
|
+
name: 'statusPassedSimpleX16',
|
|
275
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8.667 7.333 12 12 4" class="icon-dark"/>`,
|
|
276
|
+
};
|
|
277
|
+
const cyStatusPassedSimpleX24 = {
|
|
278
|
+
name: 'statusPassedSimpleX24',
|
|
279
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.36" class="icon-dark" clip-rule="evenodd"/>`,
|
|
280
|
+
};
|
|
281
|
+
const cyStatusPassedSimpleX4 = {
|
|
282
|
+
name: 'statusPassedSimpleX4',
|
|
283
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
284
|
+
};
|
|
285
|
+
const cyStatusPassedSimpleX8 = {
|
|
286
|
+
name: 'statusPassedSimpleX8',
|
|
287
|
+
data: `<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 2 3.5 6 2 4.5" class="icon-dark"/>`,
|
|
288
|
+
};
|
|
289
|
+
const cyStatusPassedSolidX16 = {
|
|
290
|
+
name: 'statusPassedSolidX16',
|
|
291
|
+
data: `<circle cx="8" cy="8" r="7" fill="currentColor" class="icon-dark"/><path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m10 6-2.5 4L6 8.5"/>`,
|
|
292
|
+
};
|
|
293
|
+
const cyStatusPassedSolidX24 = {
|
|
294
|
+
name: 'statusPassedSolidX24',
|
|
295
|
+
data: `<path fill="currentColor" fill-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m3.864-12.496a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203z" class="icon-dark" clip-rule="evenodd"/>`,
|
|
296
|
+
};
|
|
297
|
+
const cyStatusPendingOutlineX12 = {
|
|
298
|
+
name: 'statusPendingOutlineX12',
|
|
299
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M4.47 2.305a4 4 0 1 0 3.061 0" class="icon-dark"/>`,
|
|
300
|
+
};
|
|
301
|
+
const cyStatusPendingOutlineX16 = {
|
|
302
|
+
name: 'statusPendingOutlineX16',
|
|
303
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M5.706 2.46a5.998 5.998 0 1 0 4.59 0" class="icon-dark"/>`,
|
|
304
|
+
};
|
|
305
|
+
const cyStatusPendingOutlineX24 = {
|
|
306
|
+
name: 'statusPendingOutlineX24',
|
|
307
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M8.555 3.685a8.999 8.999 0 1 0 6.887 0" class="icon-dark"/>`,
|
|
308
|
+
};
|
|
309
|
+
const cyStatusPendingSimpleX4 = {
|
|
310
|
+
name: 'statusPendingSimpleX4',
|
|
311
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
312
|
+
};
|
|
313
|
+
const cyStatusPendingSimpleX8 = {
|
|
314
|
+
name: 'statusPendingSimpleX8',
|
|
315
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M2.852 1.228a3 3 0 1 0 2.296 0" class="icon-dark"/>`,
|
|
316
|
+
};
|
|
317
|
+
const cyStatusPlaceholderSimpleX4 = {
|
|
318
|
+
name: 'statusPlaceholderSimpleX4',
|
|
319
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
320
|
+
};
|
|
321
|
+
const cyStatusPlaceholderSimpleX8 = {
|
|
322
|
+
name: 'statusPlaceholderSimpleX8',
|
|
323
|
+
data: `<circle cx="4" cy="4" r="3" fill="currentColor" class="icon-dark"/>`,
|
|
324
|
+
};
|
|
325
|
+
const cyStatusPlaceholderSolidX12 = {
|
|
326
|
+
name: 'statusPlaceholderSolidX12',
|
|
327
|
+
data: `<circle cx="6" cy="6" r="5" fill="currentColor" class="icon-dark"/>`,
|
|
328
|
+
};
|
|
329
|
+
const cyStatusPlaceholderSolidX16 = {
|
|
330
|
+
name: 'statusPlaceholderSolidX16',
|
|
331
|
+
data: `<circle cx="8" cy="8" r="7" fill="currentColor" class="icon-dark"/>`,
|
|
332
|
+
};
|
|
333
|
+
const cyStatusPlaceholderSolidX24 = {
|
|
334
|
+
name: 'statusPlaceholderSolidX24',
|
|
335
|
+
data: `<circle cx="12" cy="12" r="10" fill="currentColor" class="icon-dark"/>`,
|
|
336
|
+
};
|
|
337
|
+
const cyStatusQueuedOutlineX12 = {
|
|
338
|
+
name: 'statusQueuedOutlineX12',
|
|
339
|
+
data: `<circle cx="6" cy="6" r="4" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"/>`,
|
|
340
|
+
};
|
|
341
|
+
const cyStatusQueuedOutlineX16 = {
|
|
342
|
+
name: 'statusQueuedOutlineX16',
|
|
343
|
+
data: `<circle cx="8" cy="8" r="6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"/>`,
|
|
344
|
+
};
|
|
345
|
+
const cyStatusQueuedOutlineX24 = {
|
|
346
|
+
name: 'statusQueuedOutlineX24',
|
|
347
|
+
data: `<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" class="icon-dark"/>`,
|
|
348
|
+
};
|
|
349
|
+
const cyStatusQueuedSimpleX4 = {
|
|
350
|
+
name: 'statusQueuedSimpleX4',
|
|
351
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
352
|
+
};
|
|
353
|
+
const cyStatusQueuedSimpleX8 = {
|
|
354
|
+
name: 'statusQueuedSimpleX8',
|
|
355
|
+
data: `<circle cx="4" cy="4" r="3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"/>`,
|
|
356
|
+
};
|
|
357
|
+
const cyStatusRunningOutlineX12 = {
|
|
358
|
+
name: 'statusRunningOutlineX12',
|
|
359
|
+
data: `<circle cx="6" cy="6" r="4" stroke="#e1e3ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-light"/><circle cx="6" cy="6" r="4" stroke="currentColor" stroke-dasharray="5 20" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"><animate attributeName="stroke-dashoffset" dur="1s" repeatCount="indefinite" values="25;0"/></circle>`,
|
|
360
|
+
};
|
|
361
|
+
const cyStatusRunningOutlineX16 = {
|
|
362
|
+
name: 'statusRunningOutlineX16',
|
|
363
|
+
data: `<circle cx="8" cy="8" r="6" stroke="#e1e3ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-light"/><circle cx="8" cy="8" r="6" stroke="currentColor" stroke-dasharray="10 28" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"><animate attributeName="stroke-dashoffset" dur="1s" repeatCount="indefinite" values="36.6;0"/></circle>`,
|
|
364
|
+
};
|
|
365
|
+
const cyStatusRunningOutlineX24 = {
|
|
366
|
+
name: 'statusRunningOutlineX24',
|
|
367
|
+
data: `<circle cx="12" cy="12" r="9" stroke="#e1e3ed" stroke-width="2" class="icon-light"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-dasharray="15 42" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"><animate attributeName="stroke-dashoffset" dur="1s" repeatCount="indefinite" values="57;0"/></circle>`,
|
|
368
|
+
};
|
|
369
|
+
const cyStatusRunningSimpleX4 = {
|
|
370
|
+
name: 'statusRunningSimpleX4',
|
|
371
|
+
data: `<circle cx="2" cy="2" r="1.5" fill="#c5c9fd" stroke="currentColor" class="icon-dark-stroke icon-light-fill"><animate attributeName="stroke-width" dur="1.5s" repeatCount="indefinite" values="2;1;2"/><animate attributeName="r" dur="1.5s" repeatCount="indefinite" values="1;1.5;1"/></circle>`,
|
|
372
|
+
};
|
|
373
|
+
const cyStatusRunningSimpleX8 = {
|
|
374
|
+
name: 'statusRunningSimpleX8',
|
|
375
|
+
data: `<circle cx="4" cy="4" r="3" stroke="#e1e3ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-light"/><circle cx="4" cy="4" r="3" stroke="currentColor" stroke-dasharray="5 14" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="icon-dark"><animate attributeName="stroke-dashoffset" dur="1s" repeatCount="indefinite" values="18.3;0"/></circle>`,
|
|
376
|
+
};
|
|
377
|
+
const cyStatusSkippedOutlineX12 = {
|
|
378
|
+
name: 'statusSkippedOutlineX12',
|
|
379
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M3.172 8.828a4 4 0 0 0 5.656-5.656M3.172 8.828a4 4 0 0 1 5.656-5.656M3.172 8.828l5.656-5.656" class="icon-dark"/>`,
|
|
380
|
+
};
|
|
381
|
+
const cyStatusSkippedOutlineX16 = {
|
|
382
|
+
name: 'statusSkippedOutlineX16',
|
|
383
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M3.757 12.243a6 6 0 1 0 8.486-8.486m-8.486 8.486a6 6 0 1 1 8.486-8.486m-8.486 8.486 8.486-8.486" class="icon-dark"/>`,
|
|
384
|
+
};
|
|
385
|
+
const cyStatusSkippedOutlineX24 = {
|
|
386
|
+
name: 'statusSkippedOutlineX24',
|
|
387
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M5.636 18.364A9 9 0 0 0 18.364 5.636M5.636 18.364A9 9 0 0 1 18.364 5.636M5.636 18.364 18.364 5.636" class="icon-dark"/>`,
|
|
388
|
+
};
|
|
389
|
+
const cyStatusSkippedSimpleX4 = {
|
|
390
|
+
name: 'statusSkippedSimpleX4',
|
|
391
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
392
|
+
};
|
|
393
|
+
const cyStatusSkippedSimpleX8 = {
|
|
394
|
+
name: 'statusSkippedSimpleX8',
|
|
395
|
+
data: `<path stroke="currentColor" stroke-width="2" d="M1.879 6.121A3 3 0 0 0 6.12 1.88M1.88 6.12A3 3 0 1 1 6.12 1.88M1.88 6.12 6.12 1.88" class="icon-dark"/>`,
|
|
396
|
+
};
|
|
397
|
+
|
|
398
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
399
|
+
var e = new Error(message);
|
|
400
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
401
|
+
};
|
|
402
|
+
|
|
403
|
+
/** Detect free variable `global` from Node.js. */
|
|
404
|
+
var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
|
|
405
|
+
|
|
406
|
+
/** Detect free variable `self`. */
|
|
407
|
+
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
|
408
|
+
|
|
409
|
+
/** Used as a reference to the global object. */
|
|
410
|
+
var root = freeGlobal || freeSelf || Function('return this')();
|
|
411
|
+
|
|
412
|
+
/** Built-in value references. */
|
|
413
|
+
var Symbol = root.Symbol;
|
|
414
|
+
|
|
415
|
+
/** Built-in value references. */
|
|
416
|
+
Symbol ? Symbol.toStringTag : undefined;
|
|
417
|
+
|
|
418
|
+
/** Built-in value references. */
|
|
419
|
+
Symbol ? Symbol.toStringTag : undefined;
|
|
420
|
+
|
|
421
|
+
/** Used to convert symbols to primitives and strings. */
|
|
422
|
+
var symbolProto = Symbol ? Symbol.prototype : undefined;
|
|
423
|
+
symbolProto ? symbolProto.toString : undefined;
|
|
424
|
+
const cyColors = {
|
|
425
|
+
jade: {
|
|
426
|
+
50: '#E4FBF2',
|
|
427
|
+
100: '#C2F1DE',
|
|
428
|
+
200: '#A3E7CB',
|
|
429
|
+
300: '#69D3A7',
|
|
430
|
+
400: '#1FA971',
|
|
431
|
+
500: '#00814D',
|
|
432
|
+
600: '#005F39',
|
|
433
|
+
700: '#00442A',
|
|
434
|
+
800: '#003220',
|
|
435
|
+
900: '#00291B',
|
|
436
|
+
1000: '#00261A',
|
|
437
|
+
},
|
|
438
|
+
red: {
|
|
439
|
+
50: '#FBEFF1',
|
|
440
|
+
100: '#FAD9DF',
|
|
441
|
+
200: '#F8C4CD',
|
|
442
|
+
300: '#F59AA9',
|
|
443
|
+
400: '#E45770',
|
|
444
|
+
500: '#C62B49',
|
|
445
|
+
600: '#9F1331',
|
|
446
|
+
700: '#7A0723',
|
|
447
|
+
800: '#5E021B',
|
|
448
|
+
900: '#4F0018',
|
|
449
|
+
1000: '#490018',
|
|
450
|
+
},
|
|
451
|
+
orange: {
|
|
452
|
+
50: '#F5F4D7',
|
|
453
|
+
100: '#F3ECB3',
|
|
454
|
+
200: '#F1E08F',
|
|
455
|
+
300: '#EDBB4A',
|
|
456
|
+
400: '#DB7903',
|
|
457
|
+
500: '#BD5800',
|
|
458
|
+
600: '#963F00',
|
|
459
|
+
700: '#702C00',
|
|
460
|
+
800: '#521F00',
|
|
461
|
+
900: '#411800',
|
|
462
|
+
1000: '#391500',
|
|
463
|
+
},
|
|
464
|
+
indigo: {
|
|
465
|
+
50: '#F0F1FF',
|
|
466
|
+
100: '#DADDFE',
|
|
467
|
+
200: '#C5C9FD',
|
|
468
|
+
300: '#9AA2FC',
|
|
469
|
+
400: '#6470F3',
|
|
470
|
+
500: '#4956E3',
|
|
471
|
+
600: '#3A46CC',
|
|
472
|
+
700: '#2F3AB0',
|
|
473
|
+
800: '#252E8F',
|
|
474
|
+
900: '#1C236D',
|
|
475
|
+
1000: '#151A50',
|
|
476
|
+
},
|
|
477
|
+
gray: {
|
|
478
|
+
25: '#FAFAFC',
|
|
479
|
+
50: '#F3F4FA',
|
|
480
|
+
100: '#E1E3ED',
|
|
481
|
+
200: '#D0D2E0',
|
|
482
|
+
300: '#BFC2D4',
|
|
483
|
+
400: '#AFB3C7',
|
|
484
|
+
500: '#9095AD',
|
|
485
|
+
600: '#747994',
|
|
486
|
+
700: '#5A5F7A',
|
|
487
|
+
800: '#434861',
|
|
488
|
+
900: '#2E3247',
|
|
489
|
+
950: '#25283C',
|
|
490
|
+
1000: '#1B1E2E',
|
|
491
|
+
},
|
|
492
|
+
teal: {
|
|
493
|
+
50: '#E0F6FA',
|
|
494
|
+
100: '#B7E7F0',
|
|
495
|
+
200: '#90D9E6',
|
|
496
|
+
300: '#4BBFD2',
|
|
497
|
+
400: '#0097A8',
|
|
498
|
+
500: '#007780',
|
|
499
|
+
600: '#00595D',
|
|
500
|
+
700: '#004143',
|
|
501
|
+
800: '#003131',
|
|
502
|
+
900: '#002828',
|
|
503
|
+
1000: '#002525',
|
|
504
|
+
},
|
|
505
|
+
purple: {
|
|
506
|
+
50: '#F5F0FB',
|
|
507
|
+
100: '#E9DDFA',
|
|
508
|
+
200: '#DECBF8',
|
|
509
|
+
300: '#C8A7F5',
|
|
510
|
+
400: '#A06CE4',
|
|
511
|
+
500: '#7F43C9',
|
|
512
|
+
600: '#632AA6',
|
|
513
|
+
700: '#4B1A83',
|
|
514
|
+
800: '#3B1268',
|
|
515
|
+
900: '#320E58',
|
|
516
|
+
1000: '#2F0C52',
|
|
517
|
+
},
|
|
518
|
+
green: {
|
|
519
|
+
50: '#F5F5D0',
|
|
520
|
+
100: '#E7E8AB',
|
|
521
|
+
200: '#DADC89',
|
|
522
|
+
300: '#BDC44D',
|
|
523
|
+
400: '#849706',
|
|
524
|
+
500: '#5B7100',
|
|
525
|
+
600: '#405500',
|
|
526
|
+
700: '#2E4000',
|
|
527
|
+
800: '#233200',
|
|
528
|
+
900: '#1C2A00',
|
|
529
|
+
1000: '#192500',
|
|
530
|
+
},
|
|
531
|
+
fuchsia: {
|
|
532
|
+
50: '#FAEFFB',
|
|
533
|
+
100: '#F7DAF9',
|
|
534
|
+
200: '#F3C6F8',
|
|
535
|
+
300: '#ED9FF4',
|
|
536
|
+
400: '#D65FE3',
|
|
537
|
+
500: '#B735C7',
|
|
538
|
+
600: '#901CA2',
|
|
539
|
+
700: '#6C0F7E',
|
|
540
|
+
800: '#510862',
|
|
541
|
+
900: '#400651',
|
|
542
|
+
1000: '#39054A',
|
|
543
|
+
},
|
|
544
|
+
magenta: {
|
|
545
|
+
50: '#FCEEF5',
|
|
546
|
+
100: '#FADAEA',
|
|
547
|
+
200: '#F9C5DF',
|
|
548
|
+
300: '#F69ECA',
|
|
549
|
+
400: '#E45DA3',
|
|
550
|
+
500: '#C53282',
|
|
551
|
+
600: '#9C1964',
|
|
552
|
+
700: '#750C4D',
|
|
553
|
+
800: '#59063D',
|
|
554
|
+
900: '#490435',
|
|
555
|
+
1000: '#420333',
|
|
556
|
+
},
|
|
557
|
+
};
|
|
558
|
+
({
|
|
559
|
+
// TODO: are these actual concepts from the design system?
|
|
560
|
+
primary: Object.assign(Object.assign({}, cyColors.indigo), { DEFAULT: cyColors.indigo[500] }),
|
|
561
|
+
secondary: Object.assign(Object.assign({}, cyColors.indigo), { DEFAULT: cyColors.indigo[50] }),
|
|
562
|
+
error: Object.assign(Object.assign({}, cyColors.red), { DEFAULT: cyColors.red[400] }),
|
|
563
|
+
caution: Object.assign(Object.assign({}, cyColors.red), { DEFAULT: cyColors.red[500] }),
|
|
564
|
+
info: Object.assign(Object.assign({}, cyColors.indigo), { DEFAULT: cyColors.indigo[500] }),
|
|
565
|
+
warning: Object.assign(Object.assign({}, cyColors.orange), { DEFAULT: cyColors.orange[500] }),
|
|
566
|
+
'warning-light': Object.assign(Object.assign({}, cyColors.orange), { DEFAULT: cyColors.orange[400] }),
|
|
567
|
+
success: Object.assign(Object.assign({}, cyColors.jade), { DEFAULT: cyColors.jade[400] }),
|
|
568
|
+
'success-light': Object.assign(Object.assign({}, cyColors.jade), { DEFAULT: cyColors.jade[300] }),
|
|
569
|
+
confirm: Object.assign(Object.assign({}, cyColors.jade), { DEFAULT: cyColors.jade[500] }),
|
|
570
|
+
'body-gray': Object.assign(Object.assign({}, cyColors.gray), { DEFAULT: cyColors.gray[600] }),
|
|
571
|
+
});
|
|
572
|
+
|
|
157
573
|
const statuses$2 = {
|
|
158
574
|
running: {
|
|
159
575
|
size4Icon: cyStatusRunningSimpleX4,
|
|
@@ -248,6 +664,11 @@ const statuses$2 = {
|
|
|
248
664
|
},
|
|
249
665
|
};
|
|
250
666
|
|
|
667
|
+
var outlineImports = /*#__PURE__*/Object.freeze({
|
|
668
|
+
__proto__: null,
|
|
669
|
+
statuses: statuses$2
|
|
670
|
+
});
|
|
671
|
+
|
|
251
672
|
const statuses$1 = {
|
|
252
673
|
running: {
|
|
253
674
|
size4Icon: cyStatusRunningSimpleX4,
|
|
@@ -342,6 +763,11 @@ const statuses$1 = {
|
|
|
342
763
|
},
|
|
343
764
|
};
|
|
344
765
|
|
|
766
|
+
var simpleImports = /*#__PURE__*/Object.freeze({
|
|
767
|
+
__proto__: null,
|
|
768
|
+
statuses: statuses$1
|
|
769
|
+
});
|
|
770
|
+
|
|
345
771
|
const statuses = {
|
|
346
772
|
running: {
|
|
347
773
|
size4Icon: cyStatusRunningSimpleX4,
|
|
@@ -436,6 +862,11 @@ const statuses = {
|
|
|
436
862
|
},
|
|
437
863
|
};
|
|
438
864
|
|
|
865
|
+
var solidImports = /*#__PURE__*/Object.freeze({
|
|
866
|
+
__proto__: null,
|
|
867
|
+
statuses: statuses
|
|
868
|
+
});
|
|
869
|
+
|
|
439
870
|
var compileProps = function (_a) {
|
|
440
871
|
var status = _a.status, statuses = _a.statuses, className = _a.className, size = _a.size, variantName = _a.variantName;
|
|
441
872
|
var statusInfo = status ? statuses[status] : statuses.placeholder;
|
|
@@ -460,7 +891,7 @@ var OutlineStatusIcon = function (_a) {
|
|
|
460
891
|
var _b = _a.size, size = _b === void 0 ? '24' : _b, _c = _a.status, status = _c === void 0 ? 'placeholder' : _c, rest = __rest(_a, ["size", "status"]);
|
|
461
892
|
return React.createElement('svg', __assign(__assign({}, rest), compileProps({
|
|
462
893
|
status: status,
|
|
463
|
-
statuses: statuses
|
|
894
|
+
statuses: outlineImports.statuses,
|
|
464
895
|
className: rest.className,
|
|
465
896
|
size: size,
|
|
466
897
|
variantName: 'outline',
|
|
@@ -471,7 +902,7 @@ var SimpleStatusIcon = function (_a) {
|
|
|
471
902
|
var _b = _a.size, size = _b === void 0 ? '24' : _b, _c = _a.status, status = _c === void 0 ? 'placeholder' : _c, rest = __rest(_a, ["size", "status"]);
|
|
472
903
|
return React.createElement('svg', __assign(__assign({}, rest), compileProps({
|
|
473
904
|
status: status,
|
|
474
|
-
statuses: statuses
|
|
905
|
+
statuses: simpleImports.statuses,
|
|
475
906
|
className: rest.className,
|
|
476
907
|
size: size,
|
|
477
908
|
variantName: 'simple',
|
|
@@ -482,7 +913,7 @@ var SolidStatusIcon = function (_a) {
|
|
|
482
913
|
var _b = _a.size, size = _b === void 0 ? '24' : _b, _c = _a.status, status = _c === void 0 ? 'placeholder' : _c, rest = __rest(_a, ["size", "status"]);
|
|
483
914
|
return React.createElement('svg', __assign(__assign({}, rest), compileProps({
|
|
484
915
|
status: status,
|
|
485
|
-
statuses: statuses,
|
|
916
|
+
statuses: solidImports.statuses,
|
|
486
917
|
className: rest.className,
|
|
487
918
|
size: size,
|
|
488
919
|
variantName: 'solid',
|
|
@@ -503,4 +934,4 @@ var StatusIcon = function (_a) {
|
|
|
503
934
|
export { OutlineStatusIcon, SimpleStatusIcon, SolidStatusIcon, StatusIcon as default };
|
|
504
935
|
//# sourceMappingURL=index.es.mjs.map
|
|
505
936
|
|
|
506
|
-
/* <wind-keep class="outline inline-block
|
|
937
|
+
/* <wind-keep class="outline inline-block"> */
|