@bitrise/bitkit-v2 0.3.243 → 0.3.245
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -10
- package/dist/icons/IconDragHandle.js +7 -73
- package/dist/icons/IconDragHandle.js.map +1 -1
- package/dist/icons/IconSkip.js.map +1 -1
- package/dist/icons/IconSpinnerOnDisabled.js +5 -3
- package/dist/icons/IconSpinnerOnDisabled.js.map +1 -1
- package/dist/icons/IconSpinnerPurple.js +5 -3
- package/dist/icons/IconSpinnerPurple.js.map +1 -1
- package/dist/icons/IconSpinnerPurpleDouble.js +5 -3
- package/dist/icons/IconSpinnerPurpleDouble.js.map +1 -1
- package/dist/icons/IconSpinnerWhite.js +5 -3
- package/dist/icons/IconSpinnerWhite.js.map +1 -1
- package/dist/svgs/16x16/icon-drag-handle-16.manual.js +49 -0
- package/dist/svgs/16x16/icon-drag-handle-16.manual.js.map +1 -0
- package/dist/svgs/16x16/icon-spinner-on-disabled-16.manual.js +40 -0
- package/dist/svgs/16x16/icon-spinner-on-disabled-16.manual.js.map +1 -0
- package/dist/svgs/16x16/icon-spinner-purple-16.manual.js +40 -0
- package/dist/svgs/16x16/icon-spinner-purple-16.manual.js.map +1 -0
- package/dist/svgs/16x16/icon-spinner-purple-double-16.manual.js +62 -0
- package/dist/svgs/16x16/icon-spinner-purple-double-16.manual.js.map +1 -0
- package/dist/svgs/16x16/icon-spinner-white-16.manual.js +40 -0
- package/dist/svgs/16x16/icon-spinner-white-16.manual.js.map +1 -0
- package/dist/svgs/24x24/icon-drag-handle-24.manual.js +49 -0
- package/dist/svgs/24x24/icon-drag-handle-24.manual.js.map +1 -0
- package/dist/svgs/24x24/icon-spinner-on-disabled-24.manual.js +40 -0
- package/dist/svgs/24x24/icon-spinner-on-disabled-24.manual.js.map +1 -0
- package/dist/svgs/24x24/icon-spinner-purple-24.manual.js +40 -0
- package/dist/svgs/24x24/icon-spinner-purple-24.manual.js.map +1 -0
- package/dist/svgs/24x24/icon-spinner-purple-double-24.manual.js +62 -0
- package/dist/svgs/24x24/icon-spinner-purple-double-24.manual.js.map +1 -0
- package/dist/svgs/24x24/icon-spinner-white-24.manual.js +40 -0
- package/dist/svgs/24x24/icon-spinner-white-24.manual.js.map +1 -0
- package/dist/theme/recipes/Icon.recipe.d.ts +2 -0
- package/dist/theme/recipes/Icon.recipe.js +16 -0
- package/dist/theme/recipes/Icon.recipe.js.map +1 -0
- package/dist/theme/recipes/index.d.ts +1 -0
- package/dist/theme/recipes/index.js +2 -0
- package/dist/theme/recipes/index.js.map +1 -1
- package/dist/theme/slot-recipes/GroupHeading.recipe.d.ts +1 -1
- package/dist/theme/slot-recipes/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/svgs/16x16/icon-spinner-on-disabled-16.js +0 -52
- package/dist/svgs/16x16/icon-spinner-on-disabled-16.js.map +0 -1
- package/dist/svgs/16x16/icon-spinner-purple-16.js +0 -52
- package/dist/svgs/16x16/icon-spinner-purple-16.js.map +0 -1
- package/dist/svgs/16x16/icon-spinner-purple-double-16.js +0 -58
- package/dist/svgs/16x16/icon-spinner-purple-double-16.js.map +0 -1
- package/dist/svgs/16x16/icon-spinner-white-16.js +0 -52
- package/dist/svgs/16x16/icon-spinner-white-16.js.map +0 -1
- package/dist/svgs/24x24/icon-spinner-on-disabled-24.js +0 -52
- package/dist/svgs/24x24/icon-spinner-on-disabled-24.js.map +0 -1
- package/dist/svgs/24x24/icon-spinner-purple-24.js +0 -52
- package/dist/svgs/24x24/icon-spinner-purple-24.js.map +0 -1
- package/dist/svgs/24x24/icon-spinner-purple-double-24.js +0 -58
- package/dist/svgs/24x24/icon-spinner-purple-double-24.js.map +0 -1
- package/dist/svgs/24x24/icon-spinner-white-24.js +0 -52
- package/dist/svgs/24x24/icon-spinner-white-24.js.map +0 -1
package/README.md
CHANGED
|
@@ -124,22 +124,20 @@ FIGMA_TOKEN=<your-personal-access-token> npm run generate:icons
|
|
|
124
124
|
|
|
125
125
|
#### Manual Icon Overrides
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
A few icons are hand-maintained instead of coming from Figma (e.g. the drag handle, the animated spinners). A manual icon always uses **both** markers together:
|
|
128
|
+
|
|
129
|
+
1. **`*.manual.svg`** — name the source `icon-<name>-<size>.manual.svg`. On every run the generator deletes any Figma-exported `icon-<name>-<size>.svg` with a `.manual.svg` sibling, so `figma-export` can **never** overwrite it. Draw monochrome icons with `#2B0E3F` (svgr rewrites it to `currentColor`).
|
|
130
|
+
2. **`// @generate:skip`** in the first lines of the `.tsx` — so the generator never regenerates the component. It's still exported as long as the `.manual.svg` exists in `lib/svgs/`.
|
|
128
131
|
|
|
129
132
|
```tsx
|
|
130
133
|
// @generate:skip
|
|
131
|
-
//
|
|
134
|
+
// Manually maintained icon.
|
|
132
135
|
|
|
133
|
-
import { Icon, IconProps } from '@chakra-ui/react/icon';
|
|
134
|
-
// ...
|
|
136
|
+
import { Icon, type IconProps } from '@chakra-ui/react/icon';
|
|
137
|
+
// ... import the *.manual.svg and render it
|
|
135
138
|
```
|
|
136
139
|
|
|
137
|
-
|
|
138
|
-
- Be preserved during regeneration
|
|
139
|
-
- Still be exported in the barrel files
|
|
140
|
-
- Appear in the generation summary as "skipped (manual)"
|
|
141
|
-
|
|
142
|
-
You can also create custom icons that don't exist in Figma. Just add the skip marker and place them in the appropriate size folder (`lib/icons/16x16/` or `lib/icons/24x24/`). They'll be automatically included in exports.
|
|
140
|
+
Current manual icons: `IconDragHandle` and the `IconSpinner*` icons (the spinners also default `color` to a semantic `icon/*` token). Everything else comes from Figma — leave it to the generator.
|
|
143
141
|
|
|
144
142
|
## License
|
|
145
143
|
|
|
@@ -1,92 +1,26 @@
|
|
|
1
1
|
import { bitkitIcon } from "./bitkitIcon.js";
|
|
2
|
+
import ForwardRef from "../svgs/16x16/icon-drag-handle-16.manual.js";
|
|
3
|
+
import ForwardRef$1 from "../svgs/24x24/icon-drag-handle-24.manual.js";
|
|
2
4
|
import { Icon } from "@chakra-ui/react/icon";
|
|
3
|
-
import { jsx
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
6
|
//#region lib/icons/IconDragHandle.tsx
|
|
5
7
|
var IconDragHandle = bitkitIcon(function IconDragHandle({ size = "24", ...props }, ref) {
|
|
6
8
|
if (size === "16") return /* @__PURE__ */ jsx(Icon, {
|
|
7
9
|
asChild: true,
|
|
8
10
|
ref,
|
|
9
11
|
...props,
|
|
10
|
-
children: /* @__PURE__ */
|
|
12
|
+
children: /* @__PURE__ */ jsx(ForwardRef, {
|
|
11
13
|
width: "16",
|
|
12
|
-
height: "16"
|
|
13
|
-
viewBox: "0 0 16 16",
|
|
14
|
-
fill: "currentColor",
|
|
15
|
-
children: [
|
|
16
|
-
/* @__PURE__ */ jsx("circle", {
|
|
17
|
-
cx: "6",
|
|
18
|
-
cy: "4",
|
|
19
|
-
r: "1"
|
|
20
|
-
}),
|
|
21
|
-
/* @__PURE__ */ jsx("circle", {
|
|
22
|
-
cx: "10",
|
|
23
|
-
cy: "4",
|
|
24
|
-
r: "1"
|
|
25
|
-
}),
|
|
26
|
-
/* @__PURE__ */ jsx("circle", {
|
|
27
|
-
cx: "6",
|
|
28
|
-
cy: "8",
|
|
29
|
-
r: "1"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ jsx("circle", {
|
|
32
|
-
cx: "10",
|
|
33
|
-
cy: "8",
|
|
34
|
-
r: "1"
|
|
35
|
-
}),
|
|
36
|
-
/* @__PURE__ */ jsx("circle", {
|
|
37
|
-
cx: "6",
|
|
38
|
-
cy: "12",
|
|
39
|
-
r: "1"
|
|
40
|
-
}),
|
|
41
|
-
/* @__PURE__ */ jsx("circle", {
|
|
42
|
-
cx: "10",
|
|
43
|
-
cy: "12",
|
|
44
|
-
r: "1"
|
|
45
|
-
})
|
|
46
|
-
]
|
|
14
|
+
height: "16"
|
|
47
15
|
})
|
|
48
16
|
});
|
|
49
17
|
return /* @__PURE__ */ jsx(Icon, {
|
|
50
18
|
asChild: true,
|
|
51
19
|
ref,
|
|
52
20
|
...props,
|
|
53
|
-
children: /* @__PURE__ */
|
|
21
|
+
children: /* @__PURE__ */ jsx(ForwardRef$1, {
|
|
54
22
|
width: "24",
|
|
55
|
-
height: "24"
|
|
56
|
-
viewBox: "0 0 24 24",
|
|
57
|
-
fill: "currentColor",
|
|
58
|
-
children: [
|
|
59
|
-
/* @__PURE__ */ jsx("circle", {
|
|
60
|
-
cx: "9",
|
|
61
|
-
cy: "6",
|
|
62
|
-
r: "1.5"
|
|
63
|
-
}),
|
|
64
|
-
/* @__PURE__ */ jsx("circle", {
|
|
65
|
-
cx: "15",
|
|
66
|
-
cy: "6",
|
|
67
|
-
r: "1.5"
|
|
68
|
-
}),
|
|
69
|
-
/* @__PURE__ */ jsx("circle", {
|
|
70
|
-
cx: "9",
|
|
71
|
-
cy: "12",
|
|
72
|
-
r: "1.5"
|
|
73
|
-
}),
|
|
74
|
-
/* @__PURE__ */ jsx("circle", {
|
|
75
|
-
cx: "15",
|
|
76
|
-
cy: "12",
|
|
77
|
-
r: "1.5"
|
|
78
|
-
}),
|
|
79
|
-
/* @__PURE__ */ jsx("circle", {
|
|
80
|
-
cx: "9",
|
|
81
|
-
cy: "18",
|
|
82
|
-
r: "1.5"
|
|
83
|
-
}),
|
|
84
|
-
/* @__PURE__ */ jsx("circle", {
|
|
85
|
-
cx: "15",
|
|
86
|
-
cy: "18",
|
|
87
|
-
r: "1.5"
|
|
88
|
-
})
|
|
89
|
-
]
|
|
23
|
+
height: "24"
|
|
90
24
|
})
|
|
91
25
|
});
|
|
92
26
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconDragHandle.js","names":[],"sources":["../../lib/icons/IconDragHandle.tsx"],"sourcesContent":["// @generate:skip\n//
|
|
1
|
+
{"version":3,"file":"IconDragHandle.js","names":[],"sources":["../../lib/icons/IconDragHandle.tsx"],"sourcesContent":["// @generate:skip\n// Manually maintained icon — source is lib/svgs/<size>x<size>/icon-drag-handle-<size>.manual.svg.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-drag-handle-16.manual.svg?react';\nimport SVG24 from '../svgs/24x24/icon-drag-handle-24.manual.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconDragHandleProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconDragHandle = bitkitIcon(function IconDragHandle(\n { size = '24', ...props }: IconDragHandleProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconDragHandle.displayName = 'IconDragHandle';\n\nexport default IconDragHandle;\n"],"mappings":";;;;;;AAcA,IAAM,iBAAiB,WAAW,SAAS,eACzC,EAAE,OAAO,MAAM,GAAG,SAClB,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,eAAe,cAAc"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconSkip.js","names":[],"sources":["../../lib/icons/IconSkip.tsx"],"sourcesContent":["//
|
|
1
|
+
{"version":3,"file":"IconSkip.js","names":[],"sources":["../../lib/icons/IconSkip.tsx"],"sourcesContent":["// This file is auto-generated by 'scripts/generateIconComponents.ts'. Do not edit it manually.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-skip-16.svg?react';\nimport SVG24 from '../svgs/24x24/icon-skip-24.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconSkipProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconSkip = bitkitIcon(function IconSkip({ size = '24', ...props }: IconSkipProps, ref: Ref<SVGSVGElement>) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconSkip.displayName = 'IconSkip';\n\nexport default IconSkip;\n"],"mappings":";;;;;;AAaA,IAAM,WAAW,WAAW,SAAS,SAAS,EAAE,OAAO,MAAM,GAAG,SAAwB,KAAyB;CAC/G,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAK,GAAI;YAC1B,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,SAAS,cAAc"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { bitkitIcon } from "./bitkitIcon.js";
|
|
2
|
-
import ForwardRef from "../svgs/16x16/icon-spinner-on-disabled-16.js";
|
|
3
|
-
import ForwardRef$1 from "../svgs/24x24/icon-spinner-on-disabled-24.js";
|
|
2
|
+
import ForwardRef from "../svgs/16x16/icon-spinner-on-disabled-16.manual.js";
|
|
3
|
+
import ForwardRef$1 from "../svgs/24x24/icon-spinner-on-disabled-24.manual.js";
|
|
4
4
|
import { Icon } from "@chakra-ui/react/icon";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
//#region lib/icons/IconSpinnerOnDisabled.tsx
|
|
7
|
-
var IconSpinnerOnDisabled = bitkitIcon(function IconSpinnerOnDisabled({ size = "24", ...props }, ref) {
|
|
7
|
+
var IconSpinnerOnDisabled = bitkitIcon(function IconSpinnerOnDisabled({ size = "24", color = "icon/on-disabled", ...props }, ref) {
|
|
8
8
|
if (size === "16") return /* @__PURE__ */ jsx(Icon, {
|
|
9
9
|
asChild: true,
|
|
10
10
|
ref,
|
|
11
|
+
color,
|
|
11
12
|
...props,
|
|
12
13
|
children: /* @__PURE__ */ jsx(ForwardRef, {
|
|
13
14
|
width: "16",
|
|
@@ -17,6 +18,7 @@ var IconSpinnerOnDisabled = bitkitIcon(function IconSpinnerOnDisabled({ size = "
|
|
|
17
18
|
return /* @__PURE__ */ jsx(Icon, {
|
|
18
19
|
asChild: true,
|
|
19
20
|
ref,
|
|
21
|
+
color,
|
|
20
22
|
...props,
|
|
21
23
|
children: /* @__PURE__ */ jsx(ForwardRef$1, {
|
|
22
24
|
width: "24",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconSpinnerOnDisabled.js","names":[],"sources":["../../lib/icons/IconSpinnerOnDisabled.tsx"],"sourcesContent":["//
|
|
1
|
+
{"version":3,"file":"IconSpinnerOnDisabled.js","names":[],"sources":["../../lib/icons/IconSpinnerOnDisabled.tsx"],"sourcesContent":["// @generate:skip\n// Manually maintained wrapper. The animated SVG sources are `*.manual.svg` files in lib/svgs/\n// (drawn with #2B0E3F so svgr rewrites it to currentColor) — the `.manual.svg` suffix makes the\n// generator delete any Figma export of the same name, so they can't be overwritten. The\n// `@generate:skip` marker keeps this .tsx so it can default `color` to a semantic icon token,\n// overridable via the `color` prop.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-spinner-on-disabled-16.manual.svg?react';\nimport SVG24 from '../svgs/24x24/icon-spinner-on-disabled-24.manual.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconSpinnerOnDisabledProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconSpinnerOnDisabled = bitkitIcon(function IconSpinnerOnDisabled(\n { size = '24', color = 'icon/on-disabled', ...props }: IconSpinnerOnDisabledProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconSpinnerOnDisabled.displayName = 'IconSpinnerOnDisabled';\n\nexport default IconSpinnerOnDisabled;\n"],"mappings":";;;;;;AAkBA,IAAM,wBAAwB,WAAW,SAAS,sBAChD,EAAE,OAAO,MAAM,QAAQ,oBAAoB,GAAG,SAC9C,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,sBAAsB,cAAc"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { bitkitIcon } from "./bitkitIcon.js";
|
|
2
|
-
import ForwardRef from "../svgs/16x16/icon-spinner-purple-16.js";
|
|
3
|
-
import ForwardRef$1 from "../svgs/24x24/icon-spinner-purple-24.js";
|
|
2
|
+
import ForwardRef from "../svgs/16x16/icon-spinner-purple-16.manual.js";
|
|
3
|
+
import ForwardRef$1 from "../svgs/24x24/icon-spinner-purple-24.manual.js";
|
|
4
4
|
import { Icon } from "@chakra-ui/react/icon";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
//#region lib/icons/IconSpinnerPurple.tsx
|
|
7
|
-
var IconSpinnerPurple = bitkitIcon(function IconSpinnerPurple({ size = "24", ...props }, ref) {
|
|
7
|
+
var IconSpinnerPurple = bitkitIcon(function IconSpinnerPurple({ size = "24", color = "icon/interactive", ...props }, ref) {
|
|
8
8
|
if (size === "16") return /* @__PURE__ */ jsx(Icon, {
|
|
9
9
|
asChild: true,
|
|
10
10
|
ref,
|
|
11
|
+
color,
|
|
11
12
|
...props,
|
|
12
13
|
children: /* @__PURE__ */ jsx(ForwardRef, {
|
|
13
14
|
width: "16",
|
|
@@ -17,6 +18,7 @@ var IconSpinnerPurple = bitkitIcon(function IconSpinnerPurple({ size = "24", ...
|
|
|
17
18
|
return /* @__PURE__ */ jsx(Icon, {
|
|
18
19
|
asChild: true,
|
|
19
20
|
ref,
|
|
21
|
+
color,
|
|
20
22
|
...props,
|
|
21
23
|
children: /* @__PURE__ */ jsx(ForwardRef$1, {
|
|
22
24
|
width: "24",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconSpinnerPurple.js","names":[],"sources":["../../lib/icons/IconSpinnerPurple.tsx"],"sourcesContent":["//
|
|
1
|
+
{"version":3,"file":"IconSpinnerPurple.js","names":[],"sources":["../../lib/icons/IconSpinnerPurple.tsx"],"sourcesContent":["// @generate:skip\n// Manually maintained wrapper. The animated SVG sources are `*.manual.svg` files in lib/svgs/\n// (drawn with #2B0E3F so svgr rewrites it to currentColor) — the `.manual.svg` suffix makes the\n// generator delete any Figma export of the same name, so they can't be overwritten. The\n// `@generate:skip` marker keeps this .tsx so it can default `color` to a semantic icon token,\n// overridable via the `color` prop.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-spinner-purple-16.manual.svg?react';\nimport SVG24 from '../svgs/24x24/icon-spinner-purple-24.manual.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconSpinnerPurpleProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconSpinnerPurple = bitkitIcon(function IconSpinnerPurple(\n { size = '24', color = 'icon/interactive', ...props }: IconSpinnerPurpleProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconSpinnerPurple.displayName = 'IconSpinnerPurple';\n\nexport default IconSpinnerPurple;\n"],"mappings":";;;;;;AAkBA,IAAM,oBAAoB,WAAW,SAAS,kBAC5C,EAAE,OAAO,MAAM,QAAQ,oBAAoB,GAAG,SAC9C,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,kBAAkB,cAAc"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { bitkitIcon } from "./bitkitIcon.js";
|
|
2
|
-
import ForwardRef from "../svgs/16x16/icon-spinner-purple-double-16.js";
|
|
3
|
-
import ForwardRef$1 from "../svgs/24x24/icon-spinner-purple-double-24.js";
|
|
2
|
+
import ForwardRef from "../svgs/16x16/icon-spinner-purple-double-16.manual.js";
|
|
3
|
+
import ForwardRef$1 from "../svgs/24x24/icon-spinner-purple-double-24.manual.js";
|
|
4
4
|
import { Icon } from "@chakra-ui/react/icon";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
//#region lib/icons/IconSpinnerPurpleDouble.tsx
|
|
7
|
-
var IconSpinnerPurpleDouble = bitkitIcon(function IconSpinnerPurpleDouble({ size = "24", ...props }, ref) {
|
|
7
|
+
var IconSpinnerPurpleDouble = bitkitIcon(function IconSpinnerPurpleDouble({ size = "24", color = "icon/interactive", ...props }, ref) {
|
|
8
8
|
if (size === "16") return /* @__PURE__ */ jsx(Icon, {
|
|
9
9
|
asChild: true,
|
|
10
10
|
ref,
|
|
11
|
+
color,
|
|
11
12
|
...props,
|
|
12
13
|
children: /* @__PURE__ */ jsx(ForwardRef, {
|
|
13
14
|
width: "16",
|
|
@@ -17,6 +18,7 @@ var IconSpinnerPurpleDouble = bitkitIcon(function IconSpinnerPurpleDouble({ size
|
|
|
17
18
|
return /* @__PURE__ */ jsx(Icon, {
|
|
18
19
|
asChild: true,
|
|
19
20
|
ref,
|
|
21
|
+
color,
|
|
20
22
|
...props,
|
|
21
23
|
children: /* @__PURE__ */ jsx(ForwardRef$1, {
|
|
22
24
|
width: "24",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconSpinnerPurpleDouble.js","names":[],"sources":["../../lib/icons/IconSpinnerPurpleDouble.tsx"],"sourcesContent":["//
|
|
1
|
+
{"version":3,"file":"IconSpinnerPurpleDouble.js","names":[],"sources":["../../lib/icons/IconSpinnerPurpleDouble.tsx"],"sourcesContent":["// @generate:skip\n// Manually maintained wrapper. The animated SVG sources are `*.manual.svg` files in lib/svgs/\n// (drawn with #2B0E3F so svgr rewrites it to currentColor) — the `.manual.svg` suffix makes the\n// generator delete any Figma export of the same name, so they can't be overwritten. The\n// `@generate:skip` marker keeps this .tsx so it can default `color` to a semantic icon token,\n// overridable via the `color` prop.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-spinner-purple-double-16.manual.svg?react';\nimport SVG24 from '../svgs/24x24/icon-spinner-purple-double-24.manual.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconSpinnerPurpleDoubleProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconSpinnerPurpleDouble = bitkitIcon(function IconSpinnerPurpleDouble(\n { size = '24', color = 'icon/interactive', ...props }: IconSpinnerPurpleDoubleProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconSpinnerPurpleDouble.displayName = 'IconSpinnerPurpleDouble';\n\nexport default IconSpinnerPurpleDouble;\n"],"mappings":";;;;;;AAkBA,IAAM,0BAA0B,WAAW,SAAS,wBAClD,EAAE,OAAO,MAAM,QAAQ,oBAAoB,GAAG,SAC9C,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,wBAAwB,cAAc"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { bitkitIcon } from "./bitkitIcon.js";
|
|
2
|
-
import ForwardRef from "../svgs/16x16/icon-spinner-white-16.js";
|
|
3
|
-
import ForwardRef$1 from "../svgs/24x24/icon-spinner-white-24.js";
|
|
2
|
+
import ForwardRef from "../svgs/16x16/icon-spinner-white-16.manual.js";
|
|
3
|
+
import ForwardRef$1 from "../svgs/24x24/icon-spinner-white-24.manual.js";
|
|
4
4
|
import { Icon } from "@chakra-ui/react/icon";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
//#region lib/icons/IconSpinnerWhite.tsx
|
|
7
|
-
var IconSpinnerWhite = bitkitIcon(function IconSpinnerWhite({ size = "24", ...props }, ref) {
|
|
7
|
+
var IconSpinnerWhite = bitkitIcon(function IconSpinnerWhite({ size = "24", color = "icon/on-color", ...props }, ref) {
|
|
8
8
|
if (size === "16") return /* @__PURE__ */ jsx(Icon, {
|
|
9
9
|
asChild: true,
|
|
10
10
|
ref,
|
|
11
|
+
color,
|
|
11
12
|
...props,
|
|
12
13
|
children: /* @__PURE__ */ jsx(ForwardRef, {
|
|
13
14
|
width: "16",
|
|
@@ -17,6 +18,7 @@ var IconSpinnerWhite = bitkitIcon(function IconSpinnerWhite({ size = "24", ...pr
|
|
|
17
18
|
return /* @__PURE__ */ jsx(Icon, {
|
|
18
19
|
asChild: true,
|
|
19
20
|
ref,
|
|
21
|
+
color,
|
|
20
22
|
...props,
|
|
21
23
|
children: /* @__PURE__ */ jsx(ForwardRef$1, {
|
|
22
24
|
width: "24",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconSpinnerWhite.js","names":[],"sources":["../../lib/icons/IconSpinnerWhite.tsx"],"sourcesContent":["//
|
|
1
|
+
{"version":3,"file":"IconSpinnerWhite.js","names":[],"sources":["../../lib/icons/IconSpinnerWhite.tsx"],"sourcesContent":["// @generate:skip\n// Manually maintained wrapper. The animated SVG sources are `*.manual.svg` files in lib/svgs/\n// (drawn with #2B0E3F so svgr rewrites it to currentColor) — the `.manual.svg` suffix makes the\n// generator delete any Figma export of the same name, so they can't be overwritten. The\n// `@generate:skip` marker keeps this .tsx so it can default `color` to a semantic icon token,\n// overridable via the `color` prop.\n\nimport { Icon, type IconProps } from '@chakra-ui/react/icon';\nimport { type Ref } from 'react';\n\nimport SVG16 from '../svgs/16x16/icon-spinner-white-16.manual.svg?react';\nimport SVG24 from '../svgs/24x24/icon-spinner-white-24.manual.svg?react';\nimport { bitkitIcon } from './bitkitIcon';\n\nexport interface IconSpinnerWhiteProps extends IconProps {\n size?: '16' | '24';\n}\n\nconst IconSpinnerWhite = bitkitIcon(function IconSpinnerWhite(\n { size = '24', color = 'icon/on-color', ...props }: IconSpinnerWhiteProps,\n ref: Ref<SVGSVGElement>,\n) {\n if (size === '16') {\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG16 width=\"16\" height=\"16\" />\n </Icon>\n );\n }\n\n return (\n <Icon asChild ref={ref} color={color} {...props}>\n <SVG24 width=\"24\" height=\"24\" />\n </Icon>\n );\n});\n\nIconSpinnerWhite.displayName = 'IconSpinnerWhite';\n\nexport default IconSpinnerWhite;\n"],"mappings":";;;;;;AAkBA,IAAM,mBAAmB,WAAW,SAAS,iBAC3C,EAAE,OAAO,MAAM,QAAQ,iBAAiB,GAAG,SAC3C,KACA;CACA,IAAI,SAAS,MACX,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,YAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;CAIV,OACE,oBAAC,MAAD;EAAM,SAAA;EAAa;EAAY;EAAO,GAAI;YACxC,oBAAC,cAAD;GAAO,OAAM;GAAK,QAAO;EAAM,CAAA;CAC3B,CAAA;AAEV,CAAC;AAED,iBAAiB,cAAc"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region lib/svgs/16x16/icon-drag-handle-16.manual.svg?react
|
|
4
|
+
var SvgIconDragHandle16Manual = (props, ref) => /* @__PURE__ */ jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [
|
|
13
|
+
/* @__PURE__ */ jsx("circle", {
|
|
14
|
+
cx: 6,
|
|
15
|
+
cy: 4,
|
|
16
|
+
r: 1
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ jsx("circle", {
|
|
19
|
+
cx: 10,
|
|
20
|
+
cy: 4,
|
|
21
|
+
r: 1
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsx("circle", {
|
|
24
|
+
cx: 6,
|
|
25
|
+
cy: 8,
|
|
26
|
+
r: 1
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ jsx("circle", {
|
|
29
|
+
cx: 10,
|
|
30
|
+
cy: 8,
|
|
31
|
+
r: 1
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ jsx("circle", {
|
|
34
|
+
cx: 6,
|
|
35
|
+
cy: 12,
|
|
36
|
+
r: 1
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("circle", {
|
|
39
|
+
cx: 10,
|
|
40
|
+
cy: 12,
|
|
41
|
+
r: 1
|
|
42
|
+
})
|
|
43
|
+
]
|
|
44
|
+
});
|
|
45
|
+
var ForwardRef = forwardRef(SvgIconDragHandle16Manual);
|
|
46
|
+
//#endregion
|
|
47
|
+
export { ForwardRef as default };
|
|
48
|
+
|
|
49
|
+
//# sourceMappingURL=icon-drag-handle-16.manual.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-drag-handle-16.manual.js","names":[],"sources":["../../../lib/svgs/16x16/icon-drag-handle-16.manual.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconDragHandle16Manual = (props, ref) => /* @__PURE__ */ _jsxs(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tviewBox: \"0 0 16 16\",\n\tfill: \"currentColor\",\n\tref,\n\t...props,\n\tchildren: [\n\t\t/* @__PURE__ */ _jsx(\"circle\", {\n\t\t\tcx: 6,\n\t\t\tcy: 4,\n\t\t\tr: 1\n\t\t}),\n\t\t/* @__PURE__ */ _jsx(\"circle\", {\n\t\t\tcx: 10,\n\t\t\tcy: 4,\n\t\t\tr: 1\n\t\t}),\n\t\t/* @__PURE__ */ _jsx(\"circle\", {\n\t\t\tcx: 6,\n\t\t\tcy: 8,\n\t\t\tr: 1\n\t\t}),\n\t\t/* @__PURE__ */ _jsx(\"circle\", {\n\t\t\tcx: 10,\n\t\t\tcy: 8,\n\t\t\tr: 1\n\t\t}),\n\t\t/* @__PURE__ */ _jsx(\"circle\", {\n\t\t\tcx: 6,\n\t\t\tcy: 12,\n\t\t\tr: 1\n\t\t}),\n\t\t/* @__PURE__ */ _jsx(\"circle\", {\n\t\t\tcx: 10,\n\t\t\tcy: 12,\n\t\t\tr: 1\n\t\t})\n\t]\n});\nconst ForwardRef = forwardRef(SvgIconDragHandle16Manual);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,6BAA6B,OAAO,QAAwB,qBAAM,OAAO;CAC9E,OAAO;CACP,OAAO;CACP,QAAQ;CACR,SAAS;CACT,MAAM;CACN;CACA,GAAG;CACH,UAAU;EACO,oBAAK,UAAU;GAC9B,IAAI;GACJ,IAAI;GACJ,GAAG;EACJ,CAAC;EACe,oBAAK,UAAU;GAC9B,IAAI;GACJ,IAAI;GACJ,GAAG;EACJ,CAAC;EACe,oBAAK,UAAU;GAC9B,IAAI;GACJ,IAAI;GACJ,GAAG;EACJ,CAAC;EACe,oBAAK,UAAU;GAC9B,IAAI;GACJ,IAAI;GACJ,GAAG;EACJ,CAAC;EACe,oBAAK,UAAU;GAC9B,IAAI;GACJ,IAAI;GACJ,GAAG;EACJ,CAAC;EACe,oBAAK,UAAU;GAC9B,IAAI;GACJ,IAAI;GACJ,GAAG;EACJ,CAAC;CACF;AACD,CAAC;AACD,IAAM,aAAa,WAAW,yBAAyB"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region lib/svgs/16x16/icon-spinner-on-disabled-16.manual.svg?react
|
|
4
|
+
var SvgIconSpinnerOnDisabled16Manual = (props, ref) => /* @__PURE__ */ jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
fill: "none",
|
|
10
|
+
ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsxs("circle", {
|
|
13
|
+
cx: 8,
|
|
14
|
+
cy: 8,
|
|
15
|
+
r: 6,
|
|
16
|
+
fill: "none",
|
|
17
|
+
stroke: "currentColor",
|
|
18
|
+
strokeWidth: 1.1,
|
|
19
|
+
strokeDasharray: 48,
|
|
20
|
+
children: [/* @__PURE__ */ jsx("animate", {
|
|
21
|
+
attributeName: "stroke-dashoffset",
|
|
22
|
+
dur: "3.5s",
|
|
23
|
+
from: 96,
|
|
24
|
+
to: 0,
|
|
25
|
+
repeatCount: "indefinite"
|
|
26
|
+
}), /* @__PURE__ */ jsx("animateTransform", {
|
|
27
|
+
attributeName: "transform",
|
|
28
|
+
type: "rotate",
|
|
29
|
+
dur: "2s",
|
|
30
|
+
from: "0 8 8",
|
|
31
|
+
to: "360 8 8",
|
|
32
|
+
repeatCount: "indefinite"
|
|
33
|
+
})]
|
|
34
|
+
})
|
|
35
|
+
});
|
|
36
|
+
var ForwardRef = forwardRef(SvgIconSpinnerOnDisabled16Manual);
|
|
37
|
+
//#endregion
|
|
38
|
+
export { ForwardRef as default };
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=icon-spinner-on-disabled-16.manual.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-spinner-on-disabled-16.manual.js","names":[],"sources":["../../../lib/svgs/16x16/icon-spinner-on-disabled-16.manual.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSpinnerOnDisabled16Manual = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tviewBox: \"0 0 16 16\",\n\tfill: \"none\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"circle\", {\n\t\tcx: 8,\n\t\tcy: 8,\n\t\tr: 6,\n\t\tfill: \"none\",\n\t\tstroke: \"currentColor\",\n\t\tstrokeWidth: 1.1,\n\t\tstrokeDasharray: 48,\n\t\tchildren: [/* @__PURE__ */ _jsx(\"animate\", {\n\t\t\tattributeName: \"stroke-dashoffset\",\n\t\t\tdur: \"3.5s\",\n\t\t\tfrom: 96,\n\t\t\tto: 0,\n\t\t\trepeatCount: \"indefinite\"\n\t\t}), /* @__PURE__ */ _jsx(\"animateTransform\", {\n\t\t\tattributeName: \"transform\",\n\t\t\ttype: \"rotate\",\n\t\t\tdur: \"2s\",\n\t\t\tfrom: \"0 8 8\",\n\t\t\tto: \"360 8 8\",\n\t\t\trepeatCount: \"indefinite\"\n\t\t})]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSpinnerOnDisabled16Manual);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,oCAAoC,OAAO,QAAwB,oBAAK,OAAO;CACpF,OAAO;CACP,OAAO;CACP,QAAQ;CACR,SAAS;CACT,MAAM;CACN;CACA,GAAG;CACH,UAA0B,qBAAM,UAAU;EACzC,IAAI;EACJ,IAAI;EACJ,GAAG;EACH,MAAM;EACN,QAAQ;EACR,aAAa;EACb,iBAAiB;EACjB,UAAU,CAAiB,oBAAK,WAAW;GAC1C,eAAe;GACf,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,GAAmB,oBAAK,oBAAoB;GAC5C,eAAe;GACf,MAAM;GACN,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,CAAC;CACH,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,gCAAgC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region lib/svgs/16x16/icon-spinner-purple-16.manual.svg?react
|
|
4
|
+
var SvgIconSpinnerPurple16Manual = (props, ref) => /* @__PURE__ */ jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
fill: "none",
|
|
10
|
+
ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsxs("circle", {
|
|
13
|
+
cx: 8,
|
|
14
|
+
cy: 8,
|
|
15
|
+
r: 6,
|
|
16
|
+
fill: "none",
|
|
17
|
+
stroke: "currentColor",
|
|
18
|
+
strokeWidth: 1.1,
|
|
19
|
+
strokeDasharray: 48,
|
|
20
|
+
children: [/* @__PURE__ */ jsx("animate", {
|
|
21
|
+
attributeName: "stroke-dashoffset",
|
|
22
|
+
dur: "3.5s",
|
|
23
|
+
from: 96,
|
|
24
|
+
to: 0,
|
|
25
|
+
repeatCount: "indefinite"
|
|
26
|
+
}), /* @__PURE__ */ jsx("animateTransform", {
|
|
27
|
+
attributeName: "transform",
|
|
28
|
+
type: "rotate",
|
|
29
|
+
dur: "2s",
|
|
30
|
+
from: "0 8 8",
|
|
31
|
+
to: "360 8 8",
|
|
32
|
+
repeatCount: "indefinite"
|
|
33
|
+
})]
|
|
34
|
+
})
|
|
35
|
+
});
|
|
36
|
+
var ForwardRef = forwardRef(SvgIconSpinnerPurple16Manual);
|
|
37
|
+
//#endregion
|
|
38
|
+
export { ForwardRef as default };
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=icon-spinner-purple-16.manual.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-spinner-purple-16.manual.js","names":[],"sources":["../../../lib/svgs/16x16/icon-spinner-purple-16.manual.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSpinnerPurple16Manual = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tviewBox: \"0 0 16 16\",\n\tfill: \"none\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"circle\", {\n\t\tcx: 8,\n\t\tcy: 8,\n\t\tr: 6,\n\t\tfill: \"none\",\n\t\tstroke: \"currentColor\",\n\t\tstrokeWidth: 1.1,\n\t\tstrokeDasharray: 48,\n\t\tchildren: [/* @__PURE__ */ _jsx(\"animate\", {\n\t\t\tattributeName: \"stroke-dashoffset\",\n\t\t\tdur: \"3.5s\",\n\t\t\tfrom: 96,\n\t\t\tto: 0,\n\t\t\trepeatCount: \"indefinite\"\n\t\t}), /* @__PURE__ */ _jsx(\"animateTransform\", {\n\t\t\tattributeName: \"transform\",\n\t\t\ttype: \"rotate\",\n\t\t\tdur: \"2s\",\n\t\t\tfrom: \"0 8 8\",\n\t\t\tto: \"360 8 8\",\n\t\t\trepeatCount: \"indefinite\"\n\t\t})]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSpinnerPurple16Manual);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,gCAAgC,OAAO,QAAwB,oBAAK,OAAO;CAChF,OAAO;CACP,OAAO;CACP,QAAQ;CACR,SAAS;CACT,MAAM;CACN;CACA,GAAG;CACH,UAA0B,qBAAM,UAAU;EACzC,IAAI;EACJ,IAAI;EACJ,GAAG;EACH,MAAM;EACN,QAAQ;EACR,aAAa;EACb,iBAAiB;EACjB,UAAU,CAAiB,oBAAK,WAAW;GAC1C,eAAe;GACf,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,GAAmB,oBAAK,oBAAoB;GAC5C,eAAe;GACf,MAAM;GACN,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,CAAC;CACH,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,4BAA4B"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region lib/svgs/16x16/icon-spinner-purple-double-16.manual.svg?react
|
|
4
|
+
var SvgIconSpinnerPurpleDouble16Manual = (props, ref) => /* @__PURE__ */ jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
fill: "none",
|
|
10
|
+
ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/* @__PURE__ */ jsxs("circle", {
|
|
13
|
+
cx: 8,
|
|
14
|
+
cy: 8,
|
|
15
|
+
r: 6,
|
|
16
|
+
fill: "none",
|
|
17
|
+
stroke: "currentColor",
|
|
18
|
+
strokeWidth: 1.1,
|
|
19
|
+
strokeDasharray: 48,
|
|
20
|
+
children: [/* @__PURE__ */ jsx("animate", {
|
|
21
|
+
attributeName: "stroke-dashoffset",
|
|
22
|
+
dur: "3.5s",
|
|
23
|
+
from: 96,
|
|
24
|
+
to: 0,
|
|
25
|
+
repeatCount: "indefinite"
|
|
26
|
+
}), /* @__PURE__ */ jsx("animateTransform", {
|
|
27
|
+
attributeName: "transform",
|
|
28
|
+
type: "rotate",
|
|
29
|
+
dur: "2s",
|
|
30
|
+
from: "0 8 8",
|
|
31
|
+
to: "360 8 8",
|
|
32
|
+
repeatCount: "indefinite"
|
|
33
|
+
})]
|
|
34
|
+
}), /* @__PURE__ */ jsxs("circle", {
|
|
35
|
+
cx: 8,
|
|
36
|
+
cy: 8,
|
|
37
|
+
r: 3,
|
|
38
|
+
fill: "none",
|
|
39
|
+
stroke: "currentColor",
|
|
40
|
+
strokeWidth: 1.1,
|
|
41
|
+
strokeDasharray: 48,
|
|
42
|
+
children: [/* @__PURE__ */ jsx("animate", {
|
|
43
|
+
attributeName: "stroke-dashoffset",
|
|
44
|
+
dur: "3.5s",
|
|
45
|
+
from: 96,
|
|
46
|
+
to: 0,
|
|
47
|
+
repeatCount: "indefinite"
|
|
48
|
+
}), /* @__PURE__ */ jsx("animateTransform", {
|
|
49
|
+
attributeName: "transform",
|
|
50
|
+
type: "rotate",
|
|
51
|
+
dur: "2s",
|
|
52
|
+
from: "0 8 8",
|
|
53
|
+
to: "360 8 8",
|
|
54
|
+
repeatCount: "indefinite"
|
|
55
|
+
})]
|
|
56
|
+
})]
|
|
57
|
+
});
|
|
58
|
+
var ForwardRef = forwardRef(SvgIconSpinnerPurpleDouble16Manual);
|
|
59
|
+
//#endregion
|
|
60
|
+
export { ForwardRef as default };
|
|
61
|
+
|
|
62
|
+
//# sourceMappingURL=icon-spinner-purple-double-16.manual.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-spinner-purple-double-16.manual.js","names":[],"sources":["../../../lib/svgs/16x16/icon-spinner-purple-double-16.manual.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSpinnerPurpleDouble16Manual = (props, ref) => /* @__PURE__ */ _jsxs(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tviewBox: \"0 0 16 16\",\n\tfill: \"none\",\n\tref,\n\t...props,\n\tchildren: [/* @__PURE__ */ _jsxs(\"circle\", {\n\t\tcx: 8,\n\t\tcy: 8,\n\t\tr: 6,\n\t\tfill: \"none\",\n\t\tstroke: \"currentColor\",\n\t\tstrokeWidth: 1.1,\n\t\tstrokeDasharray: 48,\n\t\tchildren: [/* @__PURE__ */ _jsx(\"animate\", {\n\t\t\tattributeName: \"stroke-dashoffset\",\n\t\t\tdur: \"3.5s\",\n\t\t\tfrom: 96,\n\t\t\tto: 0,\n\t\t\trepeatCount: \"indefinite\"\n\t\t}), /* @__PURE__ */ _jsx(\"animateTransform\", {\n\t\t\tattributeName: \"transform\",\n\t\t\ttype: \"rotate\",\n\t\t\tdur: \"2s\",\n\t\t\tfrom: \"0 8 8\",\n\t\t\tto: \"360 8 8\",\n\t\t\trepeatCount: \"indefinite\"\n\t\t})]\n\t}), /* @__PURE__ */ _jsxs(\"circle\", {\n\t\tcx: 8,\n\t\tcy: 8,\n\t\tr: 3,\n\t\tfill: \"none\",\n\t\tstroke: \"currentColor\",\n\t\tstrokeWidth: 1.1,\n\t\tstrokeDasharray: 48,\n\t\tchildren: [/* @__PURE__ */ _jsx(\"animate\", {\n\t\t\tattributeName: \"stroke-dashoffset\",\n\t\t\tdur: \"3.5s\",\n\t\t\tfrom: 96,\n\t\t\tto: 0,\n\t\t\trepeatCount: \"indefinite\"\n\t\t}), /* @__PURE__ */ _jsx(\"animateTransform\", {\n\t\t\tattributeName: \"transform\",\n\t\t\ttype: \"rotate\",\n\t\t\tdur: \"2s\",\n\t\t\tfrom: \"0 8 8\",\n\t\t\tto: \"360 8 8\",\n\t\t\trepeatCount: \"indefinite\"\n\t\t})]\n\t})]\n});\nconst ForwardRef = forwardRef(SvgIconSpinnerPurpleDouble16Manual);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,sCAAsC,OAAO,QAAwB,qBAAM,OAAO;CACvF,OAAO;CACP,OAAO;CACP,QAAQ;CACR,SAAS;CACT,MAAM;CACN;CACA,GAAG;CACH,UAAU,CAAiB,qBAAM,UAAU;EAC1C,IAAI;EACJ,IAAI;EACJ,GAAG;EACH,MAAM;EACN,QAAQ;EACR,aAAa;EACb,iBAAiB;EACjB,UAAU,CAAiB,oBAAK,WAAW;GAC1C,eAAe;GACf,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,GAAmB,oBAAK,oBAAoB;GAC5C,eAAe;GACf,MAAM;GACN,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,CAAC;CACH,CAAC,GAAmB,qBAAM,UAAU;EACnC,IAAI;EACJ,IAAI;EACJ,GAAG;EACH,MAAM;EACN,QAAQ;EACR,aAAa;EACb,iBAAiB;EACjB,UAAU,CAAiB,oBAAK,WAAW;GAC1C,eAAe;GACf,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,GAAmB,oBAAK,oBAAoB;GAC5C,eAAe;GACf,MAAM;GACN,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,CAAC;CACH,CAAC,CAAC;AACH,CAAC;AACD,IAAM,aAAa,WAAW,kCAAkC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region lib/svgs/16x16/icon-spinner-white-16.manual.svg?react
|
|
4
|
+
var SvgIconSpinnerWhite16Manual = (props, ref) => /* @__PURE__ */ jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
fill: "none",
|
|
10
|
+
ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsxs("circle", {
|
|
13
|
+
cx: 8,
|
|
14
|
+
cy: 8,
|
|
15
|
+
r: 6,
|
|
16
|
+
fill: "none",
|
|
17
|
+
stroke: "currentColor",
|
|
18
|
+
strokeWidth: 1.1,
|
|
19
|
+
strokeDasharray: 48,
|
|
20
|
+
children: [/* @__PURE__ */ jsx("animate", {
|
|
21
|
+
attributeName: "stroke-dashoffset",
|
|
22
|
+
dur: "3.5s",
|
|
23
|
+
from: 96,
|
|
24
|
+
to: 0,
|
|
25
|
+
repeatCount: "indefinite"
|
|
26
|
+
}), /* @__PURE__ */ jsx("animateTransform", {
|
|
27
|
+
attributeName: "transform",
|
|
28
|
+
type: "rotate",
|
|
29
|
+
dur: "2s",
|
|
30
|
+
from: "0 8 8",
|
|
31
|
+
to: "360 8 8",
|
|
32
|
+
repeatCount: "indefinite"
|
|
33
|
+
})]
|
|
34
|
+
})
|
|
35
|
+
});
|
|
36
|
+
var ForwardRef = forwardRef(SvgIconSpinnerWhite16Manual);
|
|
37
|
+
//#endregion
|
|
38
|
+
export { ForwardRef as default };
|
|
39
|
+
|
|
40
|
+
//# sourceMappingURL=icon-spinner-white-16.manual.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-spinner-white-16.manual.js","names":[],"sources":["../../../lib/svgs/16x16/icon-spinner-white-16.manual.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst SvgIconSpinnerWhite16Manual = (props, ref) => /* @__PURE__ */ _jsx(\"svg\", {\n\txmlns: \"http://www.w3.org/2000/svg\",\n\twidth: 16,\n\theight: 16,\n\tviewBox: \"0 0 16 16\",\n\tfill: \"none\",\n\tref,\n\t...props,\n\tchildren: /* @__PURE__ */ _jsxs(\"circle\", {\n\t\tcx: 8,\n\t\tcy: 8,\n\t\tr: 6,\n\t\tfill: \"none\",\n\t\tstroke: \"currentColor\",\n\t\tstrokeWidth: 1.1,\n\t\tstrokeDasharray: 48,\n\t\tchildren: [/* @__PURE__ */ _jsx(\"animate\", {\n\t\t\tattributeName: \"stroke-dashoffset\",\n\t\t\tdur: \"3.5s\",\n\t\t\tfrom: 96,\n\t\t\tto: 0,\n\t\t\trepeatCount: \"indefinite\"\n\t\t}), /* @__PURE__ */ _jsx(\"animateTransform\", {\n\t\t\tattributeName: \"transform\",\n\t\t\ttype: \"rotate\",\n\t\t\tdur: \"2s\",\n\t\t\tfrom: \"0 8 8\",\n\t\t\tto: \"360 8 8\",\n\t\t\trepeatCount: \"indefinite\"\n\t\t})]\n\t})\n});\nconst ForwardRef = forwardRef(SvgIconSpinnerWhite16Manual);\nexport default ForwardRef;\n"],"mappings":";;;AAGA,IAAM,+BAA+B,OAAO,QAAwB,oBAAK,OAAO;CAC/E,OAAO;CACP,OAAO;CACP,QAAQ;CACR,SAAS;CACT,MAAM;CACN;CACA,GAAG;CACH,UAA0B,qBAAM,UAAU;EACzC,IAAI;EACJ,IAAI;EACJ,GAAG;EACH,MAAM;EACN,QAAQ;EACR,aAAa;EACb,iBAAiB;EACjB,UAAU,CAAiB,oBAAK,WAAW;GAC1C,eAAe;GACf,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,GAAmB,oBAAK,oBAAoB;GAC5C,eAAe;GACf,MAAM;GACN,KAAK;GACL,MAAM;GACN,IAAI;GACJ,aAAa;EACd,CAAC,CAAC;CACH,CAAC;AACF,CAAC;AACD,IAAM,aAAa,WAAW,2BAA2B"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region lib/svgs/24x24/icon-drag-handle-24.manual.svg?react
|
|
4
|
+
var SvgIconDragHandle24Manual = (props, ref) => /* @__PURE__ */ jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [
|
|
13
|
+
/* @__PURE__ */ jsx("circle", {
|
|
14
|
+
cx: 9,
|
|
15
|
+
cy: 6,
|
|
16
|
+
r: 1.5
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ jsx("circle", {
|
|
19
|
+
cx: 15,
|
|
20
|
+
cy: 6,
|
|
21
|
+
r: 1.5
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsx("circle", {
|
|
24
|
+
cx: 9,
|
|
25
|
+
cy: 12,
|
|
26
|
+
r: 1.5
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ jsx("circle", {
|
|
29
|
+
cx: 15,
|
|
30
|
+
cy: 12,
|
|
31
|
+
r: 1.5
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ jsx("circle", {
|
|
34
|
+
cx: 9,
|
|
35
|
+
cy: 18,
|
|
36
|
+
r: 1.5
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("circle", {
|
|
39
|
+
cx: 15,
|
|
40
|
+
cy: 18,
|
|
41
|
+
r: 1.5
|
|
42
|
+
})
|
|
43
|
+
]
|
|
44
|
+
});
|
|
45
|
+
var ForwardRef = forwardRef(SvgIconDragHandle24Manual);
|
|
46
|
+
//#endregion
|
|
47
|
+
export { ForwardRef as default };
|
|
48
|
+
|
|
49
|
+
//# sourceMappingURL=icon-drag-handle-24.manual.js.map
|