@octavius2929-personal/design-system 1.3.0 → 1.4.1
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/dist/index.cjs +1124 -955
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +29 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +26 -3
- package/dist/index.d.ts +26 -3
- package/dist/index.js +1106 -929
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -785,7 +785,7 @@ var vertical = "use-styles_vertical__1n7v7yj2";
|
|
|
785
785
|
// src/components/divider/use-styles.ts
|
|
786
786
|
function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
787
787
|
const { themeClass } = useTheme();
|
|
788
|
-
const
|
|
788
|
+
const root25 = useMemo8(
|
|
789
789
|
() => [
|
|
790
790
|
themeClass,
|
|
791
791
|
root2,
|
|
@@ -793,23 +793,23 @@ function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
|
793
793
|
].filter(Boolean).join(" "),
|
|
794
794
|
[themeClass, vertical2, hasLabel]
|
|
795
795
|
);
|
|
796
|
-
return { root:
|
|
796
|
+
return { root: root25, line, label };
|
|
797
797
|
}
|
|
798
798
|
|
|
799
799
|
// src/components/divider/index.tsx
|
|
800
800
|
import { jsx as jsx7, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
801
|
-
var Divider = forwardRef5(function Divider2({ vertical: vertical2, label:
|
|
802
|
-
const hasLabel =
|
|
803
|
-
const { root:
|
|
801
|
+
var Divider = forwardRef5(function Divider2({ vertical: vertical2, label: label8, testId, ...rest }, ref) {
|
|
802
|
+
const hasLabel = label8 != null;
|
|
803
|
+
const { root: root25, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
|
|
804
804
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
805
805
|
if (hasLabel) {
|
|
806
|
-
return /* @__PURE__ */ jsxs2("div", { ref, role: "separator", className:
|
|
806
|
+
return /* @__PURE__ */ jsxs2("div", { ref, role: "separator", className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
807
807
|
/* @__PURE__ */ jsx7("span", { className: line2 }),
|
|
808
|
-
/* @__PURE__ */ jsx7("span", { className: labelClass, "data-testid": slot("label"), children:
|
|
808
|
+
/* @__PURE__ */ jsx7("span", { className: labelClass, "data-testid": slot("label"), children: label8 }),
|
|
809
809
|
/* @__PURE__ */ jsx7("span", { className: line2 })
|
|
810
810
|
] });
|
|
811
811
|
}
|
|
812
|
-
return /* @__PURE__ */ jsx7("div", { ref, role: "separator", className:
|
|
812
|
+
return /* @__PURE__ */ jsx7("div", { ref, role: "separator", className: root25, "data-testid": dataTestId, ...rest });
|
|
813
813
|
});
|
|
814
814
|
|
|
815
815
|
// src/components/avatar/index.tsx
|
|
@@ -830,7 +830,7 @@ function useStyles6({
|
|
|
830
830
|
className
|
|
831
831
|
}) {
|
|
832
832
|
const { themeClass } = useTheme();
|
|
833
|
-
const
|
|
833
|
+
const root25 = useMemo9(
|
|
834
834
|
() => [
|
|
835
835
|
themeClass,
|
|
836
836
|
root3,
|
|
@@ -840,15 +840,15 @@ function useStyles6({
|
|
|
840
840
|
].filter(Boolean).join(" "),
|
|
841
841
|
[themeClass, size3, filled, className]
|
|
842
842
|
);
|
|
843
|
-
return { root:
|
|
843
|
+
return { root: root25 };
|
|
844
844
|
}
|
|
845
845
|
|
|
846
846
|
// src/components/avatar/index.tsx
|
|
847
847
|
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
848
848
|
var Avatar = forwardRef6(function Avatar2({ size: size3, filled, className, children, testId, ...rest }, ref) {
|
|
849
|
-
const { root:
|
|
849
|
+
const { root: root25 } = useStyles6({ size: size3, filled, className });
|
|
850
850
|
const { testId: dataTestId } = useTestId("media", testId);
|
|
851
|
-
return /* @__PURE__ */ jsx8("span", { ref, className:
|
|
851
|
+
return /* @__PURE__ */ jsx8("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
|
|
852
852
|
});
|
|
853
853
|
|
|
854
854
|
// src/components/badge/index.tsx
|
|
@@ -868,20 +868,20 @@ function useStyles7({
|
|
|
868
868
|
className
|
|
869
869
|
}) {
|
|
870
870
|
const { themeClass } = useTheme();
|
|
871
|
-
const
|
|
871
|
+
const root25 = useMemo10(
|
|
872
872
|
() => [themeClass, root4, className].filter(Boolean).join(" "),
|
|
873
873
|
[themeClass, className]
|
|
874
874
|
);
|
|
875
875
|
const dot3 = useMemo10(() => [dot, tone2[tone4]].join(" "), [tone4]);
|
|
876
|
-
return { root:
|
|
876
|
+
return { root: root25, dot: dot3 };
|
|
877
877
|
}
|
|
878
878
|
|
|
879
879
|
// src/components/badge/index.tsx
|
|
880
880
|
import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
881
881
|
var Badge = forwardRef7(function Badge2({ count, tone: tone4, className, children, testId, ...rest }, ref) {
|
|
882
|
-
const { root:
|
|
882
|
+
const { root: root25, dot: dot3 } = useStyles7({ tone: tone4, className });
|
|
883
883
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
884
|
-
return /* @__PURE__ */ jsxs3("span", { ref, className:
|
|
884
|
+
return /* @__PURE__ */ jsxs3("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
885
885
|
children,
|
|
886
886
|
count != null && /* @__PURE__ */ jsx9("span", { className: dot3, "data-testid": slot("dot"), children: count })
|
|
887
887
|
] });
|
|
@@ -908,12 +908,12 @@ function useStyles8({
|
|
|
908
908
|
const { themeClass } = useTheme();
|
|
909
909
|
const indeterminate2 = value === void 0;
|
|
910
910
|
return useMemo11(() => {
|
|
911
|
-
const
|
|
911
|
+
const root25 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
|
|
912
912
|
if (variant2 === "circular") {
|
|
913
|
-
return { track: "", bar: "", spinner:
|
|
913
|
+
return { track: "", bar: "", spinner: root25(spinner2) };
|
|
914
914
|
}
|
|
915
915
|
return {
|
|
916
|
-
track:
|
|
916
|
+
track: root25(track),
|
|
917
917
|
bar: [bar, indeterminate2 && indeterminate].filter(Boolean).join(" "),
|
|
918
918
|
spinner: ""
|
|
919
919
|
};
|
|
@@ -1012,7 +1012,7 @@ function useStyles9({
|
|
|
1012
1012
|
clickable: clickable2
|
|
1013
1013
|
}) {
|
|
1014
1014
|
const { themeClass } = useTheme();
|
|
1015
|
-
const
|
|
1015
|
+
const root25 = useMemo12(
|
|
1016
1016
|
() => [
|
|
1017
1017
|
themeClass,
|
|
1018
1018
|
root5,
|
|
@@ -1021,7 +1021,7 @@ function useStyles9({
|
|
|
1021
1021
|
].filter(Boolean).join(" "),
|
|
1022
1022
|
[themeClass, selected4, tone4, clickable2]
|
|
1023
1023
|
);
|
|
1024
|
-
return { root:
|
|
1024
|
+
return { root: root25, deleteBtn };
|
|
1025
1025
|
}
|
|
1026
1026
|
|
|
1027
1027
|
// src/components/chip/index.tsx
|
|
@@ -1029,7 +1029,7 @@ import { jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
|
1029
1029
|
var ICON_SIZE2 = 13;
|
|
1030
1030
|
var Chip = forwardRef9(function Chip2({ selected: selected4, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
|
|
1031
1031
|
const clickable2 = Boolean(onClick);
|
|
1032
|
-
const { root:
|
|
1032
|
+
const { root: root25, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected4, tone: tone4, clickable: clickable2 });
|
|
1033
1033
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
1034
1034
|
const handleDelete = (event) => {
|
|
1035
1035
|
event.stopPropagation();
|
|
@@ -1039,7 +1039,7 @@ var Chip = forwardRef9(function Chip2({ selected: selected4, tone: tone4, onDele
|
|
|
1039
1039
|
"span",
|
|
1040
1040
|
{
|
|
1041
1041
|
ref,
|
|
1042
|
-
className:
|
|
1042
|
+
className: root25,
|
|
1043
1043
|
onClick,
|
|
1044
1044
|
"data-testid": dataTestId,
|
|
1045
1045
|
"data-state": states({ selected: selected4 }),
|
|
@@ -1100,29 +1100,29 @@ var input = "surfaces_srOnly__1qa7atn0";
|
|
|
1100
1100
|
var root6 = "use-styles_root__9zoga90";
|
|
1101
1101
|
|
|
1102
1102
|
// src/components/checkbox/use-styles.ts
|
|
1103
|
-
function useStyles10({ checked, disabled:
|
|
1103
|
+
function useStyles10({ checked, disabled: disabled4 }) {
|
|
1104
1104
|
const { themeClass } = useTheme();
|
|
1105
|
-
const
|
|
1106
|
-
() => [themeClass, root6,
|
|
1107
|
-
[themeClass,
|
|
1105
|
+
const root25 = useMemo13(
|
|
1106
|
+
() => [themeClass, root6, disabled4 && disabled].filter(Boolean).join(" "),
|
|
1107
|
+
[themeClass, disabled4]
|
|
1108
1108
|
);
|
|
1109
1109
|
const box2 = useMemo13(
|
|
1110
1110
|
() => [box, checked && boxChecked].filter(Boolean).join(" "),
|
|
1111
1111
|
[checked]
|
|
1112
1112
|
);
|
|
1113
|
-
return { root:
|
|
1113
|
+
return { root: root25, input, box: box2, check };
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
1116
|
// src/components/checkbox/index.tsx
|
|
1117
1117
|
import { jsx as jsx14, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
1118
|
-
var Checkbox = forwardRef10(function Checkbox2({ checked = false, onChange, label:
|
|
1119
|
-
const { root:
|
|
1118
|
+
var Checkbox = forwardRef10(function Checkbox2({ checked = false, onChange, label: label8, disabled: disabled4 = false, id, testId, ...rest }, ref) {
|
|
1119
|
+
const { root: root25, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled4 });
|
|
1120
1120
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1121
1121
|
const handleChange = (e) => {
|
|
1122
|
-
if (
|
|
1122
|
+
if (disabled4) return;
|
|
1123
1123
|
onChange?.(e.target.checked);
|
|
1124
1124
|
};
|
|
1125
|
-
return /* @__PURE__ */ jsxs6("label", { className:
|
|
1125
|
+
return /* @__PURE__ */ jsxs6("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
|
|
1126
1126
|
/* @__PURE__ */ jsx14(
|
|
1127
1127
|
"input",
|
|
1128
1128
|
{
|
|
@@ -1131,13 +1131,13 @@ var Checkbox = forwardRef10(function Checkbox2({ checked = false, onChange, labe
|
|
|
1131
1131
|
className: input6,
|
|
1132
1132
|
id,
|
|
1133
1133
|
checked,
|
|
1134
|
-
disabled:
|
|
1134
|
+
disabled: disabled4,
|
|
1135
1135
|
onChange: handleChange,
|
|
1136
1136
|
...rest
|
|
1137
1137
|
}
|
|
1138
1138
|
),
|
|
1139
1139
|
/* @__PURE__ */ jsx14("span", { className: box2, children: checked && /* @__PURE__ */ jsx14(CheckIcon, { size: 12, className: check2 }) }),
|
|
1140
|
-
|
|
1140
|
+
label8
|
|
1141
1141
|
] });
|
|
1142
1142
|
});
|
|
1143
1143
|
|
|
@@ -1157,16 +1157,16 @@ var root7 = "use-styles_root__vy61b40";
|
|
|
1157
1157
|
|
|
1158
1158
|
// src/components/radio/use-styles.ts
|
|
1159
1159
|
function useStyles11({
|
|
1160
|
-
disabled:
|
|
1160
|
+
disabled: disabled4,
|
|
1161
1161
|
className
|
|
1162
1162
|
}) {
|
|
1163
1163
|
const { themeClass } = useTheme();
|
|
1164
|
-
const
|
|
1165
|
-
() => [themeClass, root7,
|
|
1166
|
-
[themeClass,
|
|
1164
|
+
const root25 = useMemo14(
|
|
1165
|
+
() => [themeClass, root7, disabled4 && disabled2, className].filter(Boolean).join(" "),
|
|
1166
|
+
[themeClass, disabled4, className]
|
|
1167
1167
|
);
|
|
1168
1168
|
return {
|
|
1169
|
-
root:
|
|
1169
|
+
root: root25,
|
|
1170
1170
|
input: input2,
|
|
1171
1171
|
circle,
|
|
1172
1172
|
dot: dot2,
|
|
@@ -1176,10 +1176,10 @@ function useStyles11({
|
|
|
1176
1176
|
|
|
1177
1177
|
// src/components/radio/index.tsx
|
|
1178
1178
|
import { jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
1179
|
-
var Radio = forwardRef11(function Radio2({ checked, onChange, label:
|
|
1180
|
-
const { root:
|
|
1179
|
+
var Radio = forwardRef11(function Radio2({ checked, onChange, label: label8, name, value, disabled: disabled4, testId, ...rest }, ref) {
|
|
1180
|
+
const { root: root25, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled4 });
|
|
1181
1181
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1182
|
-
return /* @__PURE__ */ jsxs7("label", { className:
|
|
1182
|
+
return /* @__PURE__ */ jsxs7("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
|
|
1183
1183
|
/* @__PURE__ */ jsx15(
|
|
1184
1184
|
"input",
|
|
1185
1185
|
{
|
|
@@ -1189,53 +1189,198 @@ var Radio = forwardRef11(function Radio2({ checked, onChange, label: label7, nam
|
|
|
1189
1189
|
name,
|
|
1190
1190
|
value,
|
|
1191
1191
|
checked,
|
|
1192
|
-
disabled:
|
|
1192
|
+
disabled: disabled4,
|
|
1193
1193
|
onChange,
|
|
1194
1194
|
...rest
|
|
1195
1195
|
}
|
|
1196
1196
|
),
|
|
1197
1197
|
/* @__PURE__ */ jsx15("span", { className: circle2, children: checked && /* @__PURE__ */ jsx15("span", { className: dot3 }) }),
|
|
1198
|
-
|
|
1198
|
+
label8 != null && /* @__PURE__ */ jsx15("span", { className: labelClass, children: label8 })
|
|
1199
1199
|
] });
|
|
1200
1200
|
});
|
|
1201
1201
|
|
|
1202
|
+
// src/components/radio-group/index.tsx
|
|
1203
|
+
import { forwardRef as forwardRef12, useId, useRef as useRef2 } from "react";
|
|
1204
|
+
|
|
1205
|
+
// src/components/radio-group/use-styles.ts
|
|
1206
|
+
import { useMemo as useMemo15 } from "react";
|
|
1207
|
+
|
|
1208
|
+
// src/components/radio-group/use-styles.css.ts
|
|
1209
|
+
var disabled3 = "use-styles_disabled__nfghri4";
|
|
1210
|
+
var label3 = "use-styles_label__nfghri1";
|
|
1211
|
+
var list = "use-styles_list__nfghri2";
|
|
1212
|
+
var listHorizontal = "use-styles_listHorizontal__nfghri3";
|
|
1213
|
+
var root8 = "use-styles_root__nfghri0";
|
|
1214
|
+
|
|
1215
|
+
// src/components/radio-group/use-styles.ts
|
|
1216
|
+
function useStyles12({
|
|
1217
|
+
disabled: disabled4,
|
|
1218
|
+
orientation = "vertical"
|
|
1219
|
+
}) {
|
|
1220
|
+
const { themeClass } = useTheme();
|
|
1221
|
+
return useMemo15(() => {
|
|
1222
|
+
const root25 = [themeClass, root8, disabled4 && disabled3].filter(Boolean).join(" ");
|
|
1223
|
+
const list3 = [list, orientation === "horizontal" && listHorizontal].filter(Boolean).join(" ");
|
|
1224
|
+
return { root: root25, label: label3, list: list3 };
|
|
1225
|
+
}, [themeClass, disabled4, orientation]);
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
// src/components/radio-group/index.tsx
|
|
1229
|
+
import { jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
1230
|
+
var RadioGroup = forwardRef12(function RadioGroup2({
|
|
1231
|
+
options,
|
|
1232
|
+
value,
|
|
1233
|
+
onChange,
|
|
1234
|
+
name,
|
|
1235
|
+
label: label8,
|
|
1236
|
+
disabled: disabled4,
|
|
1237
|
+
orientation = "vertical",
|
|
1238
|
+
testId,
|
|
1239
|
+
"aria-label": ariaLabel,
|
|
1240
|
+
"aria-labelledby": ariaLabelledBy,
|
|
1241
|
+
...rest
|
|
1242
|
+
}, ref) {
|
|
1243
|
+
const { root: root25, label: labelClass, list: list3 } = useStyles12({ disabled: disabled4, orientation });
|
|
1244
|
+
const { testId: dataTestId } = useTestId("field", testId);
|
|
1245
|
+
const baseId = useId();
|
|
1246
|
+
const labelId = `${baseId}-label`;
|
|
1247
|
+
const groupLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
1248
|
+
const radioRefs = useRef2([]);
|
|
1249
|
+
const optionTestId = (index) => [testId, `option-${index}`].filter(Boolean).join("-");
|
|
1250
|
+
const selectedIndex = options.findIndex((option2) => option2.value === value);
|
|
1251
|
+
const isEnabled = (index) => !disabled4 && !options[index]?.disabled;
|
|
1252
|
+
const enabledIndexes = options.reduce((acc, _option, index) => {
|
|
1253
|
+
if (isEnabled(index)) acc.push(index);
|
|
1254
|
+
return acc;
|
|
1255
|
+
}, []);
|
|
1256
|
+
const firstEnabled = enabledIndexes[0];
|
|
1257
|
+
const lastEnabled = enabledIndexes[enabledIndexes.length - 1];
|
|
1258
|
+
const step2 = (from, delta) => {
|
|
1259
|
+
if (enabledIndexes.length === 0) return from;
|
|
1260
|
+
let index = from;
|
|
1261
|
+
for (let i = 0; i < options.length; i++) {
|
|
1262
|
+
index = (index + delta + options.length) % options.length;
|
|
1263
|
+
if (isEnabled(index)) return index;
|
|
1264
|
+
}
|
|
1265
|
+
return from;
|
|
1266
|
+
};
|
|
1267
|
+
const selectOption = (index) => {
|
|
1268
|
+
const option2 = options[index];
|
|
1269
|
+
if (!option2 || !isEnabled(index)) return;
|
|
1270
|
+
onChange?.(option2.value);
|
|
1271
|
+
radioRefs.current[index]?.focus();
|
|
1272
|
+
};
|
|
1273
|
+
const onKeyDown = (event, index) => {
|
|
1274
|
+
if (disabled4) return;
|
|
1275
|
+
switch (event.key) {
|
|
1276
|
+
case "ArrowRight":
|
|
1277
|
+
case "ArrowDown":
|
|
1278
|
+
event.preventDefault();
|
|
1279
|
+
selectOption(step2(index, 1));
|
|
1280
|
+
break;
|
|
1281
|
+
case "ArrowLeft":
|
|
1282
|
+
case "ArrowUp":
|
|
1283
|
+
event.preventDefault();
|
|
1284
|
+
selectOption(step2(index, -1));
|
|
1285
|
+
break;
|
|
1286
|
+
case "Home":
|
|
1287
|
+
if (firstEnabled !== void 0) {
|
|
1288
|
+
event.preventDefault();
|
|
1289
|
+
selectOption(firstEnabled);
|
|
1290
|
+
}
|
|
1291
|
+
break;
|
|
1292
|
+
case "End":
|
|
1293
|
+
if (lastEnabled !== void 0) {
|
|
1294
|
+
event.preventDefault();
|
|
1295
|
+
selectOption(lastEnabled);
|
|
1296
|
+
}
|
|
1297
|
+
break;
|
|
1298
|
+
default:
|
|
1299
|
+
break;
|
|
1300
|
+
}
|
|
1301
|
+
};
|
|
1302
|
+
return /* @__PURE__ */ jsxs8(
|
|
1303
|
+
"div",
|
|
1304
|
+
{
|
|
1305
|
+
ref,
|
|
1306
|
+
role: "radiogroup",
|
|
1307
|
+
className: root25,
|
|
1308
|
+
"aria-label": ariaLabel,
|
|
1309
|
+
"aria-labelledby": groupLabelledBy,
|
|
1310
|
+
"aria-disabled": disabled4 || void 0,
|
|
1311
|
+
"data-testid": dataTestId,
|
|
1312
|
+
"data-state": states({ disabled: disabled4 }),
|
|
1313
|
+
...rest,
|
|
1314
|
+
children: [
|
|
1315
|
+
label8 != null && /* @__PURE__ */ jsx16("span", { id: labelId, className: labelClass, children: label8 }),
|
|
1316
|
+
/* @__PURE__ */ jsx16("div", { className: list3, children: options.map((option2, index) => {
|
|
1317
|
+
const checked = option2.value === value;
|
|
1318
|
+
const optionDisabled = Boolean(disabled4) || Boolean(option2.disabled);
|
|
1319
|
+
const tabbable = checked || selectedIndex === -1 && index === (firstEnabled ?? 0);
|
|
1320
|
+
return /* @__PURE__ */ jsx16(
|
|
1321
|
+
Radio,
|
|
1322
|
+
{
|
|
1323
|
+
ref: (el) => {
|
|
1324
|
+
radioRefs.current[index] = el;
|
|
1325
|
+
},
|
|
1326
|
+
name,
|
|
1327
|
+
value: option2.value,
|
|
1328
|
+
label: option2.label,
|
|
1329
|
+
checked,
|
|
1330
|
+
disabled: optionDisabled,
|
|
1331
|
+
tabIndex: tabbable ? 0 : -1,
|
|
1332
|
+
onChange: () => {
|
|
1333
|
+
if (optionDisabled) return;
|
|
1334
|
+
onChange?.(option2.value);
|
|
1335
|
+
},
|
|
1336
|
+
onKeyDown: (event) => onKeyDown(event, index),
|
|
1337
|
+
testId: optionTestId(index)
|
|
1338
|
+
},
|
|
1339
|
+
option2.value
|
|
1340
|
+
);
|
|
1341
|
+
}) })
|
|
1342
|
+
]
|
|
1343
|
+
}
|
|
1344
|
+
);
|
|
1345
|
+
});
|
|
1346
|
+
|
|
1202
1347
|
// src/components/switch/index.tsx
|
|
1203
|
-
import { forwardRef as
|
|
1348
|
+
import { forwardRef as forwardRef13 } from "react";
|
|
1204
1349
|
|
|
1205
1350
|
// src/components/switch/use-styles.ts
|
|
1206
|
-
import { useMemo as
|
|
1351
|
+
import { useMemo as useMemo16 } from "react";
|
|
1207
1352
|
|
|
1208
1353
|
// src/components/switch/use-styles.css.ts
|
|
1209
1354
|
var input3 = "surfaces_srOnly__1qa7atn0";
|
|
1210
1355
|
var knob = "use-styles_knob__1r6kem73";
|
|
1211
1356
|
var knobChecked = "use-styles_knobChecked__1r6kem74";
|
|
1212
|
-
var
|
|
1213
|
-
var
|
|
1357
|
+
var label4 = "use-styles_label__1r6kem75";
|
|
1358
|
+
var root9 = "use-styles_root__1r6kem70";
|
|
1214
1359
|
var track2 = "use-styles_track__1r6kem71";
|
|
1215
1360
|
var trackChecked = "use-styles_trackChecked__1r6kem72";
|
|
1216
1361
|
|
|
1217
1362
|
// src/components/switch/use-styles.ts
|
|
1218
|
-
function
|
|
1363
|
+
function useStyles13({ checked }) {
|
|
1219
1364
|
const { themeClass } = useTheme();
|
|
1220
|
-
return
|
|
1365
|
+
return useMemo16(
|
|
1221
1366
|
() => ({
|
|
1222
|
-
root: [themeClass,
|
|
1367
|
+
root: [themeClass, root9].filter(Boolean).join(" "),
|
|
1223
1368
|
input: input3,
|
|
1224
1369
|
track: [track2, checked && trackChecked].filter(Boolean).join(" "),
|
|
1225
1370
|
knob: [knob, checked && knobChecked].filter(Boolean).join(" "),
|
|
1226
|
-
label:
|
|
1371
|
+
label: label4
|
|
1227
1372
|
}),
|
|
1228
1373
|
[themeClass, checked]
|
|
1229
1374
|
);
|
|
1230
1375
|
}
|
|
1231
1376
|
|
|
1232
1377
|
// src/components/switch/index.tsx
|
|
1233
|
-
import { jsx as
|
|
1234
|
-
var Switch =
|
|
1235
|
-
const { root:
|
|
1378
|
+
import { jsx as jsx17, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1379
|
+
var Switch = forwardRef13(function Switch2({ checked = false, onChange, label: label8, disabled: disabled4, testId, ...rest }, ref) {
|
|
1380
|
+
const { root: root25, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles13({ checked });
|
|
1236
1381
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1237
|
-
return /* @__PURE__ */
|
|
1238
|
-
/* @__PURE__ */
|
|
1382
|
+
return /* @__PURE__ */ jsxs9("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
|
|
1383
|
+
/* @__PURE__ */ jsx17(
|
|
1239
1384
|
"input",
|
|
1240
1385
|
{
|
|
1241
1386
|
ref,
|
|
@@ -1244,27 +1389,31 @@ var Switch = forwardRef12(function Switch2({ checked = false, onChange, label: l
|
|
|
1244
1389
|
"aria-checked": checked,
|
|
1245
1390
|
className: input6,
|
|
1246
1391
|
checked,
|
|
1247
|
-
disabled:
|
|
1392
|
+
disabled: disabled4,
|
|
1248
1393
|
onChange: (event) => {
|
|
1249
|
-
if (
|
|
1394
|
+
if (disabled4) return;
|
|
1250
1395
|
onChange?.(event.target.checked);
|
|
1251
1396
|
},
|
|
1252
1397
|
...rest
|
|
1253
1398
|
}
|
|
1254
1399
|
),
|
|
1255
|
-
/* @__PURE__ */
|
|
1256
|
-
|
|
1400
|
+
/* @__PURE__ */ jsx17("span", { className: track4, children: /* @__PURE__ */ jsx17("span", { className: knob2 }) }),
|
|
1401
|
+
label8 != null && /* @__PURE__ */ jsx17("span", { className: labelClass, children: label8 })
|
|
1257
1402
|
] });
|
|
1258
1403
|
});
|
|
1259
1404
|
|
|
1260
1405
|
// src/components/text-field/index.tsx
|
|
1261
|
-
import {
|
|
1406
|
+
import {
|
|
1407
|
+
forwardRef as forwardRef15,
|
|
1408
|
+
useImperativeHandle,
|
|
1409
|
+
useRef as useRef3
|
|
1410
|
+
} from "react";
|
|
1262
1411
|
|
|
1263
1412
|
// src/components/base-field/index.tsx
|
|
1264
|
-
import { forwardRef as
|
|
1413
|
+
import { forwardRef as forwardRef14, useId as useId2 } from "react";
|
|
1265
1414
|
|
|
1266
1415
|
// src/components/base-field/use-styles.ts
|
|
1267
|
-
import { useMemo as
|
|
1416
|
+
import { useMemo as useMemo17 } from "react";
|
|
1268
1417
|
|
|
1269
1418
|
// src/components/base-field/use-styles.css.ts
|
|
1270
1419
|
var field = "use-styles_field__1c3cgd3";
|
|
@@ -1276,15 +1425,15 @@ var inputStartPad = "use-styles_inputStartPad__1c3cgd6";
|
|
|
1276
1425
|
var inputTrailingPad = "use-styles_inputTrailingPad__1c3cgd7";
|
|
1277
1426
|
var labelText = "use-styles_labelText__1c3cgd1";
|
|
1278
1427
|
var labelTextError = "use-styles_labelTextError__1c3cgd2";
|
|
1279
|
-
var
|
|
1428
|
+
var root10 = "use-styles_root__1c3cgd0";
|
|
1280
1429
|
var startIconSlot = "use-styles_startIconSlot__1c3cgda";
|
|
1281
1430
|
var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
|
|
1282
1431
|
|
|
1283
1432
|
// src/components/base-field/use-styles.ts
|
|
1284
|
-
function
|
|
1433
|
+
function useStyles14({ error, hasStartIcon, hasTrailing, className }) {
|
|
1285
1434
|
const { themeClass } = useTheme();
|
|
1286
|
-
return
|
|
1287
|
-
const
|
|
1435
|
+
return useMemo17(() => {
|
|
1436
|
+
const root25 = [themeClass, root10].filter(Boolean).join(" ");
|
|
1288
1437
|
const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
|
|
1289
1438
|
const input6 = [
|
|
1290
1439
|
input4,
|
|
@@ -1295,7 +1444,7 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1295
1444
|
].filter(Boolean).join(" ");
|
|
1296
1445
|
const helpText2 = [helpText, error && helpTextError].filter(Boolean).join(" ");
|
|
1297
1446
|
return {
|
|
1298
|
-
root:
|
|
1447
|
+
root: root25,
|
|
1299
1448
|
labelText: labelText2,
|
|
1300
1449
|
field,
|
|
1301
1450
|
input: input6,
|
|
@@ -1307,15 +1456,15 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1307
1456
|
}
|
|
1308
1457
|
|
|
1309
1458
|
// src/components/base-field/index.tsx
|
|
1310
|
-
import { jsx as
|
|
1311
|
-
var BaseField =
|
|
1312
|
-
const autoId =
|
|
1459
|
+
import { jsx as jsx18, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1460
|
+
var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
|
|
1461
|
+
const autoId = useId2();
|
|
1313
1462
|
const controlId = id ?? autoId;
|
|
1314
1463
|
const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
|
|
1315
1464
|
const hasError = error === true || errorMessage != null;
|
|
1316
1465
|
const message2 = errorMessage ?? help;
|
|
1317
1466
|
const messageId = message2 != null ? `${controlId}-msg` : void 0;
|
|
1318
|
-
const classes =
|
|
1467
|
+
const classes = useStyles14({
|
|
1319
1468
|
error: hasError,
|
|
1320
1469
|
hasStartIcon: StartIcon != null,
|
|
1321
1470
|
hasTrailing: trailing2 != null,
|
|
@@ -1330,15 +1479,15 @@ var BaseField = forwardRef13(function BaseField2({ label: label7, help, error, s
|
|
|
1330
1479
|
"aria-invalid": hasError ? true : void 0,
|
|
1331
1480
|
"data-testid": slot("input")
|
|
1332
1481
|
};
|
|
1333
|
-
return /* @__PURE__ */
|
|
1334
|
-
|
|
1335
|
-
/* @__PURE__ */
|
|
1336
|
-
StartIcon != null && /* @__PURE__ */
|
|
1482
|
+
return /* @__PURE__ */ jsxs10("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
|
|
1483
|
+
label8 != null && /* @__PURE__ */ jsx18("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label8 }),
|
|
1484
|
+
/* @__PURE__ */ jsxs10("div", { className: classes.field, children: [
|
|
1485
|
+
StartIcon != null && /* @__PURE__ */ jsx18("span", { className: classes.startIconSlot, children: /* @__PURE__ */ jsx18(StartIcon, { size: 18 }) }),
|
|
1337
1486
|
children(control),
|
|
1338
|
-
trailing2 != null && /* @__PURE__ */
|
|
1487
|
+
trailing2 != null && /* @__PURE__ */ jsx18("span", { className: classes.trailingSlot, children: trailing2 })
|
|
1339
1488
|
] }),
|
|
1340
1489
|
message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
|
|
1341
|
-
/* @__PURE__ */
|
|
1490
|
+
/* @__PURE__ */ jsx18(
|
|
1342
1491
|
"span",
|
|
1343
1492
|
{
|
|
1344
1493
|
id: messageId,
|
|
@@ -1352,68 +1501,73 @@ var BaseField = forwardRef13(function BaseField2({ label: label7, help, error, s
|
|
|
1352
1501
|
});
|
|
1353
1502
|
|
|
1354
1503
|
// src/components/text-field/index.tsx
|
|
1355
|
-
import { jsx as
|
|
1356
|
-
var TextField =
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1504
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
1505
|
+
var TextField = forwardRef15(
|
|
1506
|
+
function TextField2({
|
|
1507
|
+
label: label8,
|
|
1508
|
+
help,
|
|
1509
|
+
error,
|
|
1510
|
+
startIcon,
|
|
1511
|
+
multiline,
|
|
1512
|
+
rows,
|
|
1513
|
+
type = "text",
|
|
1514
|
+
onChange,
|
|
1515
|
+
className,
|
|
1516
|
+
id,
|
|
1517
|
+
testId,
|
|
1518
|
+
...rest
|
|
1519
|
+
}, ref) {
|
|
1520
|
+
const inputRef = useRef3(null);
|
|
1521
|
+
const textareaRef = useRef3(null);
|
|
1522
|
+
useImperativeHandle(
|
|
1374
1523
|
ref,
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1524
|
+
() => multiline ? textareaRef.current : inputRef.current,
|
|
1525
|
+
[multiline]
|
|
1526
|
+
);
|
|
1527
|
+
const rawTestId = rest["data-testid"];
|
|
1528
|
+
return /* @__PURE__ */ jsx19(
|
|
1529
|
+
BaseField,
|
|
1530
|
+
{
|
|
1531
|
+
label: label8,
|
|
1532
|
+
help,
|
|
1533
|
+
error,
|
|
1534
|
+
startIcon,
|
|
1535
|
+
id,
|
|
1536
|
+
className,
|
|
1537
|
+
testId,
|
|
1538
|
+
children: (control) => multiline ? /* @__PURE__ */ jsx19(
|
|
1386
1539
|
"textarea",
|
|
1387
1540
|
{
|
|
1388
1541
|
...rest,
|
|
1389
1542
|
...control,
|
|
1390
1543
|
"data-testid": rawTestId ?? control["data-testid"],
|
|
1544
|
+
ref: textareaRef,
|
|
1391
1545
|
rows: rows ?? 4,
|
|
1392
1546
|
onChange: (e) => onChange?.(e.target.value)
|
|
1393
1547
|
}
|
|
1548
|
+
) : /* @__PURE__ */ jsx19(
|
|
1549
|
+
"input",
|
|
1550
|
+
{
|
|
1551
|
+
...rest,
|
|
1552
|
+
...control,
|
|
1553
|
+
"data-testid": rawTestId ?? control["data-testid"],
|
|
1554
|
+
ref: inputRef,
|
|
1555
|
+
type,
|
|
1556
|
+
onChange: (e) => onChange?.(e.target.value)
|
|
1557
|
+
}
|
|
1394
1558
|
)
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
...control,
|
|
1400
|
-
"data-testid": rawTestId ?? control["data-testid"],
|
|
1401
|
-
ref: controlRef,
|
|
1402
|
-
type,
|
|
1403
|
-
onChange: (e) => onChange?.(e.target.value)
|
|
1404
|
-
}
|
|
1405
|
-
)
|
|
1406
|
-
}
|
|
1407
|
-
);
|
|
1408
|
-
});
|
|
1559
|
+
}
|
|
1560
|
+
);
|
|
1561
|
+
}
|
|
1562
|
+
);
|
|
1409
1563
|
|
|
1410
1564
|
// src/components/password-field/index.tsx
|
|
1411
|
-
import { forwardRef as
|
|
1565
|
+
import { forwardRef as forwardRef16, useState as useState3 } from "react";
|
|
1412
1566
|
|
|
1413
1567
|
// src/components/icons/eye/index.tsx
|
|
1414
|
-
import { jsx as
|
|
1568
|
+
import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1415
1569
|
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1416
|
-
return /* @__PURE__ */
|
|
1570
|
+
return /* @__PURE__ */ jsxs11(
|
|
1417
1571
|
"svg",
|
|
1418
1572
|
{
|
|
1419
1573
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1428,17 +1582,17 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1428
1582
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1429
1583
|
...rest,
|
|
1430
1584
|
children: [
|
|
1431
|
-
/* @__PURE__ */
|
|
1432
|
-
/* @__PURE__ */
|
|
1585
|
+
/* @__PURE__ */ jsx20("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
1586
|
+
/* @__PURE__ */ jsx20("circle", { cx: "12", cy: "12", r: "3" })
|
|
1433
1587
|
]
|
|
1434
1588
|
}
|
|
1435
1589
|
);
|
|
1436
1590
|
}
|
|
1437
1591
|
|
|
1438
1592
|
// src/components/icons/eye-off/index.tsx
|
|
1439
|
-
import { jsx as
|
|
1593
|
+
import { jsx as jsx21, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1440
1594
|
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1441
|
-
return /* @__PURE__ */
|
|
1595
|
+
return /* @__PURE__ */ jsxs12(
|
|
1442
1596
|
"svg",
|
|
1443
1597
|
{
|
|
1444
1598
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1453,39 +1607,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1453
1607
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1454
1608
|
...rest,
|
|
1455
1609
|
children: [
|
|
1456
|
-
/* @__PURE__ */
|
|
1457
|
-
/* @__PURE__ */
|
|
1458
|
-
/* @__PURE__ */
|
|
1459
|
-
/* @__PURE__ */
|
|
1610
|
+
/* @__PURE__ */ jsx21("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
1611
|
+
/* @__PURE__ */ jsx21("path", { d: "M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68" }),
|
|
1612
|
+
/* @__PURE__ */ jsx21("path", { d: "M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61" }),
|
|
1613
|
+
/* @__PURE__ */ jsx21("path", { d: "m2 2 20 20" })
|
|
1460
1614
|
]
|
|
1461
1615
|
}
|
|
1462
1616
|
);
|
|
1463
1617
|
}
|
|
1464
1618
|
|
|
1465
1619
|
// src/components/password-field/use-styles.ts
|
|
1466
|
-
import { useMemo as
|
|
1620
|
+
import { useMemo as useMemo18 } from "react";
|
|
1467
1621
|
|
|
1468
1622
|
// src/components/password-field/use-styles.css.ts
|
|
1469
1623
|
var revealButton = "use-styles_revealButton__rsu9d50";
|
|
1470
1624
|
|
|
1471
1625
|
// src/components/password-field/use-styles.ts
|
|
1472
|
-
function
|
|
1473
|
-
return
|
|
1626
|
+
function useStyles15() {
|
|
1627
|
+
return useMemo18(() => ({ revealButton }), []);
|
|
1474
1628
|
}
|
|
1475
1629
|
|
|
1476
1630
|
// src/components/password-field/index.tsx
|
|
1477
|
-
import { jsx as
|
|
1478
|
-
var PasswordField =
|
|
1479
|
-
function PasswordField2({ label:
|
|
1631
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
1632
|
+
var PasswordField = forwardRef16(
|
|
1633
|
+
function PasswordField2({ label: label8, help, error, startIcon, onChange, id, className, ...rest }, ref) {
|
|
1480
1634
|
const [reveal, setReveal] = useState3(false);
|
|
1481
|
-
const classes =
|
|
1635
|
+
const classes = useStyles15();
|
|
1482
1636
|
const handleChange = (e) => {
|
|
1483
1637
|
onChange?.(e.target.value);
|
|
1484
1638
|
};
|
|
1485
1639
|
const handleToggleMouseDown = (e) => {
|
|
1486
1640
|
e.preventDefault();
|
|
1487
1641
|
};
|
|
1488
|
-
const toggleButton = /* @__PURE__ */
|
|
1642
|
+
const toggleButton = /* @__PURE__ */ jsx22(
|
|
1489
1643
|
"button",
|
|
1490
1644
|
{
|
|
1491
1645
|
type: "button",
|
|
@@ -1494,21 +1648,21 @@ var PasswordField = forwardRef15(
|
|
|
1494
1648
|
"aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
|
|
1495
1649
|
onMouseDown: handleToggleMouseDown,
|
|
1496
1650
|
onClick: () => setReveal((r) => !r),
|
|
1497
|
-
children: reveal ? /* @__PURE__ */
|
|
1651
|
+
children: reveal ? /* @__PURE__ */ jsx22(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ jsx22(EyeIcon, { size: 18 })
|
|
1498
1652
|
}
|
|
1499
1653
|
);
|
|
1500
|
-
return /* @__PURE__ */
|
|
1654
|
+
return /* @__PURE__ */ jsx22(
|
|
1501
1655
|
BaseField,
|
|
1502
1656
|
{
|
|
1503
1657
|
ref,
|
|
1504
|
-
label:
|
|
1658
|
+
label: label8,
|
|
1505
1659
|
help,
|
|
1506
1660
|
error,
|
|
1507
1661
|
startIcon,
|
|
1508
1662
|
trailing: toggleButton,
|
|
1509
1663
|
id,
|
|
1510
1664
|
className,
|
|
1511
|
-
children: (control) => /* @__PURE__ */
|
|
1665
|
+
children: (control) => /* @__PURE__ */ jsx22(
|
|
1512
1666
|
"input",
|
|
1513
1667
|
{
|
|
1514
1668
|
...rest,
|
|
@@ -1523,20 +1677,20 @@ var PasswordField = forwardRef15(
|
|
|
1523
1677
|
);
|
|
1524
1678
|
|
|
1525
1679
|
// src/components/money-field/index.tsx
|
|
1526
|
-
import { forwardRef as
|
|
1527
|
-
import { jsx as
|
|
1680
|
+
import { forwardRef as forwardRef17, useMemo as useMemo19, useState as useState4 } from "react";
|
|
1681
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1528
1682
|
function parseAmount(raw) {
|
|
1529
1683
|
const cleaned = raw.replace(/[^0-9.-]/g, "");
|
|
1530
1684
|
if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
|
|
1531
1685
|
const n = Number.parseFloat(cleaned);
|
|
1532
1686
|
return Number.isNaN(n) ? null : n;
|
|
1533
1687
|
}
|
|
1534
|
-
var MoneyField =
|
|
1688
|
+
var MoneyField = forwardRef17(function MoneyField2({
|
|
1535
1689
|
value,
|
|
1536
1690
|
onChange,
|
|
1537
1691
|
currency = "USD",
|
|
1538
1692
|
locale = "en-US",
|
|
1539
|
-
label:
|
|
1693
|
+
label: label8,
|
|
1540
1694
|
help,
|
|
1541
1695
|
error,
|
|
1542
1696
|
startIcon,
|
|
@@ -1548,7 +1702,7 @@ var MoneyField = forwardRef16(function MoneyField2({
|
|
|
1548
1702
|
}, ref) {
|
|
1549
1703
|
const [focused, setFocused] = useState4(false);
|
|
1550
1704
|
const [draft, setDraft] = useState4("");
|
|
1551
|
-
const formatter =
|
|
1705
|
+
const formatter = useMemo19(
|
|
1552
1706
|
() => new Intl.NumberFormat(locale, { style: "currency", currency }),
|
|
1553
1707
|
[locale, currency]
|
|
1554
1708
|
);
|
|
@@ -1564,17 +1718,17 @@ var MoneyField = forwardRef16(function MoneyField2({
|
|
|
1564
1718
|
onChange?.(parseAmount(draft));
|
|
1565
1719
|
onBlur?.(e);
|
|
1566
1720
|
};
|
|
1567
|
-
return /* @__PURE__ */
|
|
1721
|
+
return /* @__PURE__ */ jsx23(
|
|
1568
1722
|
BaseField,
|
|
1569
1723
|
{
|
|
1570
1724
|
ref,
|
|
1571
|
-
label:
|
|
1725
|
+
label: label8,
|
|
1572
1726
|
help,
|
|
1573
1727
|
error,
|
|
1574
1728
|
startIcon,
|
|
1575
1729
|
id,
|
|
1576
1730
|
className,
|
|
1577
|
-
children: (control) => /* @__PURE__ */
|
|
1731
|
+
children: (control) => /* @__PURE__ */ jsx23(
|
|
1578
1732
|
"input",
|
|
1579
1733
|
{
|
|
1580
1734
|
...rest,
|
|
@@ -1591,32 +1745,32 @@ var MoneyField = forwardRef16(function MoneyField2({
|
|
|
1591
1745
|
});
|
|
1592
1746
|
|
|
1593
1747
|
// src/components/icon-button/index.tsx
|
|
1594
|
-
import { forwardRef as
|
|
1748
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
1595
1749
|
|
|
1596
1750
|
// src/components/icon-button/use-styles.ts
|
|
1597
|
-
import { useMemo as
|
|
1751
|
+
import { useMemo as useMemo20 } from "react";
|
|
1598
1752
|
|
|
1599
1753
|
// src/components/icon-button/use-styles.css.ts
|
|
1600
1754
|
var accent = "use-styles_accent__18np0q02";
|
|
1601
1755
|
var active = "use-styles_active__18np0q01";
|
|
1602
|
-
var
|
|
1756
|
+
var root11 = "use-styles_root__18np0q00";
|
|
1603
1757
|
|
|
1604
1758
|
// src/components/icon-button/use-styles.ts
|
|
1605
|
-
function
|
|
1759
|
+
function useStyles16({
|
|
1606
1760
|
active: active2 = false,
|
|
1607
1761
|
tone: tone4 = "ink"
|
|
1608
1762
|
}) {
|
|
1609
1763
|
const { themeClass } = useTheme();
|
|
1610
|
-
const
|
|
1611
|
-
() => [themeClass,
|
|
1764
|
+
const root25 = useMemo20(
|
|
1765
|
+
() => [themeClass, root11, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
|
|
1612
1766
|
[themeClass, active2, tone4]
|
|
1613
1767
|
);
|
|
1614
|
-
return { root:
|
|
1768
|
+
return { root: root25 };
|
|
1615
1769
|
}
|
|
1616
1770
|
|
|
1617
1771
|
// src/components/icon-button/index.tsx
|
|
1618
|
-
import { jsx as
|
|
1619
|
-
var IconButton =
|
|
1772
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
1773
|
+
var IconButton = forwardRef18(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
|
|
1620
1774
|
if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
|
|
1621
1775
|
const restProps = rest;
|
|
1622
1776
|
const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
|
|
@@ -1624,61 +1778,61 @@ var IconButton = forwardRef17(function IconButton2({ icon: Icon, active: active2
|
|
|
1624
1778
|
console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
|
|
1625
1779
|
}
|
|
1626
1780
|
}
|
|
1627
|
-
const { root:
|
|
1781
|
+
const { root: root25 } = useStyles16({ active: active2, tone: tone4 });
|
|
1628
1782
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
1629
|
-
return /* @__PURE__ */
|
|
1783
|
+
return /* @__PURE__ */ jsx24(
|
|
1630
1784
|
"button",
|
|
1631
1785
|
{
|
|
1632
1786
|
ref,
|
|
1633
1787
|
type,
|
|
1634
|
-
className:
|
|
1788
|
+
className: root25,
|
|
1635
1789
|
"aria-label": title,
|
|
1636
1790
|
title,
|
|
1637
1791
|
"data-testid": dataTestId,
|
|
1638
1792
|
"data-state": states({ active: active2, disabled: rest.disabled }),
|
|
1639
1793
|
...rest,
|
|
1640
|
-
children: /* @__PURE__ */
|
|
1794
|
+
children: /* @__PURE__ */ jsx24(Icon, { size: 18 })
|
|
1641
1795
|
}
|
|
1642
1796
|
);
|
|
1643
1797
|
});
|
|
1644
1798
|
|
|
1645
1799
|
// src/components/card/index.tsx
|
|
1646
|
-
import { forwardRef as
|
|
1800
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1647
1801
|
|
|
1648
1802
|
// src/components/card/use-styles.ts
|
|
1649
|
-
import { useMemo as
|
|
1803
|
+
import { useMemo as useMemo21 } from "react";
|
|
1650
1804
|
|
|
1651
1805
|
// src/components/card/use-styles.css.ts
|
|
1652
1806
|
var body = "use-styles_body__1fuvd022";
|
|
1653
1807
|
var footer = "use-styles_footer__1fuvd023";
|
|
1654
1808
|
var header = "use-styles_header__1fuvd021";
|
|
1655
|
-
var
|
|
1809
|
+
var root12 = "use-styles_root__1fuvd020";
|
|
1656
1810
|
|
|
1657
1811
|
// src/components/card/use-styles.ts
|
|
1658
|
-
function
|
|
1812
|
+
function useStyles17() {
|
|
1659
1813
|
const { themeClass } = useTheme();
|
|
1660
|
-
const
|
|
1661
|
-
return { root:
|
|
1814
|
+
const root25 = useMemo21(() => `${themeClass} ${root12}`, [themeClass]);
|
|
1815
|
+
return { root: root25, header, body, footer };
|
|
1662
1816
|
}
|
|
1663
1817
|
|
|
1664
1818
|
// src/components/card/index.tsx
|
|
1665
|
-
import { jsx as
|
|
1666
|
-
var CardRoot =
|
|
1667
|
-
const { root:
|
|
1819
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1820
|
+
var CardRoot = forwardRef19(function Card({ children, testId, ...rest }, ref) {
|
|
1821
|
+
const { root: root25 } = useStyles17();
|
|
1668
1822
|
const { testId: dataTestId } = useTestId("layout", testId);
|
|
1669
|
-
return /* @__PURE__ */
|
|
1823
|
+
return /* @__PURE__ */ jsx25("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
|
|
1670
1824
|
});
|
|
1671
1825
|
function CardHeader({ children, ...rest }) {
|
|
1672
|
-
const { header: header3 } =
|
|
1673
|
-
return /* @__PURE__ */
|
|
1826
|
+
const { header: header3 } = useStyles17();
|
|
1827
|
+
return /* @__PURE__ */ jsx25("div", { className: header3, ...rest, children });
|
|
1674
1828
|
}
|
|
1675
1829
|
function CardBody({ children, ...rest }) {
|
|
1676
|
-
const { body: body3 } =
|
|
1677
|
-
return /* @__PURE__ */
|
|
1830
|
+
const { body: body3 } = useStyles17();
|
|
1831
|
+
return /* @__PURE__ */ jsx25("div", { className: body3, ...rest, children });
|
|
1678
1832
|
}
|
|
1679
1833
|
function CardFooter({ children, ...rest }) {
|
|
1680
|
-
const { footer: footer2 } =
|
|
1681
|
-
return /* @__PURE__ */
|
|
1834
|
+
const { footer: footer2 } = useStyles17();
|
|
1835
|
+
return /* @__PURE__ */ jsx25("div", { className: footer2, ...rest, children });
|
|
1682
1836
|
}
|
|
1683
1837
|
CardRoot.displayName = "Card";
|
|
1684
1838
|
CardHeader.displayName = "Card.Header";
|
|
@@ -1691,12 +1845,12 @@ var Card2 = Object.assign(CardRoot, {
|
|
|
1691
1845
|
});
|
|
1692
1846
|
|
|
1693
1847
|
// src/components/alert/index.tsx
|
|
1694
|
-
import { forwardRef as
|
|
1848
|
+
import { forwardRef as forwardRef20 } from "react";
|
|
1695
1849
|
|
|
1696
1850
|
// src/components/icons/circle-check/index.tsx
|
|
1697
|
-
import { jsx as
|
|
1851
|
+
import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1698
1852
|
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1699
|
-
return /* @__PURE__ */
|
|
1853
|
+
return /* @__PURE__ */ jsxs13(
|
|
1700
1854
|
"svg",
|
|
1701
1855
|
{
|
|
1702
1856
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1711,17 +1865,17 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
1711
1865
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1712
1866
|
...rest,
|
|
1713
1867
|
children: [
|
|
1714
|
-
/* @__PURE__ */
|
|
1715
|
-
/* @__PURE__ */
|
|
1868
|
+
/* @__PURE__ */ jsx26("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1869
|
+
/* @__PURE__ */ jsx26("path", { d: "m9 12 2 2 4-4" })
|
|
1716
1870
|
]
|
|
1717
1871
|
}
|
|
1718
1872
|
);
|
|
1719
1873
|
}
|
|
1720
1874
|
|
|
1721
1875
|
// src/components/icons/circle-x/index.tsx
|
|
1722
|
-
import { jsx as
|
|
1876
|
+
import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1723
1877
|
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1724
|
-
return /* @__PURE__ */
|
|
1878
|
+
return /* @__PURE__ */ jsxs14(
|
|
1725
1879
|
"svg",
|
|
1726
1880
|
{
|
|
1727
1881
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1736,18 +1890,18 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1736
1890
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1737
1891
|
...rest,
|
|
1738
1892
|
children: [
|
|
1739
|
-
/* @__PURE__ */
|
|
1740
|
-
/* @__PURE__ */
|
|
1741
|
-
/* @__PURE__ */
|
|
1893
|
+
/* @__PURE__ */ jsx27("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1894
|
+
/* @__PURE__ */ jsx27("path", { d: "m15 9-6 6" }),
|
|
1895
|
+
/* @__PURE__ */ jsx27("path", { d: "m9 9 6 6" })
|
|
1742
1896
|
]
|
|
1743
1897
|
}
|
|
1744
1898
|
);
|
|
1745
1899
|
}
|
|
1746
1900
|
|
|
1747
1901
|
// src/components/icons/info/index.tsx
|
|
1748
|
-
import { jsx as
|
|
1902
|
+
import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1749
1903
|
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1750
|
-
return /* @__PURE__ */
|
|
1904
|
+
return /* @__PURE__ */ jsxs15(
|
|
1751
1905
|
"svg",
|
|
1752
1906
|
{
|
|
1753
1907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1762,18 +1916,18 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1762
1916
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1763
1917
|
...rest,
|
|
1764
1918
|
children: [
|
|
1765
|
-
/* @__PURE__ */
|
|
1766
|
-
/* @__PURE__ */
|
|
1767
|
-
/* @__PURE__ */
|
|
1919
|
+
/* @__PURE__ */ jsx28("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1920
|
+
/* @__PURE__ */ jsx28("path", { d: "M12 16v-4" }),
|
|
1921
|
+
/* @__PURE__ */ jsx28("path", { d: "M12 8h.01" })
|
|
1768
1922
|
]
|
|
1769
1923
|
}
|
|
1770
1924
|
);
|
|
1771
1925
|
}
|
|
1772
1926
|
|
|
1773
1927
|
// src/components/icons/triangle-alert/index.tsx
|
|
1774
|
-
import { jsx as
|
|
1928
|
+
import { jsx as jsx29, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1775
1929
|
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1776
|
-
return /* @__PURE__ */
|
|
1930
|
+
return /* @__PURE__ */ jsxs16(
|
|
1777
1931
|
"svg",
|
|
1778
1932
|
{
|
|
1779
1933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1788,42 +1942,42 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
1788
1942
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1789
1943
|
...rest,
|
|
1790
1944
|
children: [
|
|
1791
|
-
/* @__PURE__ */
|
|
1792
|
-
/* @__PURE__ */
|
|
1793
|
-
/* @__PURE__ */
|
|
1945
|
+
/* @__PURE__ */ jsx29("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
1946
|
+
/* @__PURE__ */ jsx29("path", { d: "M12 9v4" }),
|
|
1947
|
+
/* @__PURE__ */ jsx29("path", { d: "M12 17h.01" })
|
|
1794
1948
|
]
|
|
1795
1949
|
}
|
|
1796
1950
|
);
|
|
1797
1951
|
}
|
|
1798
1952
|
|
|
1799
1953
|
// src/components/alert/use-styles.ts
|
|
1800
|
-
import { useMemo as
|
|
1954
|
+
import { useMemo as useMemo22 } from "react";
|
|
1801
1955
|
|
|
1802
1956
|
// src/components/alert/use-styles.css.ts
|
|
1803
1957
|
var content2 = "use-styles_content__ivsh6u6";
|
|
1804
1958
|
var iconSlot = "use-styles_iconSlot__ivsh6u5";
|
|
1805
|
-
var
|
|
1959
|
+
var root13 = "use-styles_root__ivsh6u0";
|
|
1806
1960
|
var severity = { info: "use-styles_severity_info__ivsh6u1", ok: "use-styles_severity_ok__ivsh6u2", warn: "use-styles_severity_warn__ivsh6u3", danger: "use-styles_severity_danger__ivsh6u4" };
|
|
1807
1961
|
|
|
1808
1962
|
// src/components/alert/use-styles.ts
|
|
1809
|
-
function
|
|
1963
|
+
function useStyles18({
|
|
1810
1964
|
severity: severity2 = "info",
|
|
1811
1965
|
className
|
|
1812
1966
|
}) {
|
|
1813
1967
|
const { themeClass } = useTheme();
|
|
1814
|
-
const
|
|
1815
|
-
() => [themeClass,
|
|
1968
|
+
const root25 = useMemo22(
|
|
1969
|
+
() => [themeClass, root13, severity[severity2], className].filter(Boolean).join(" "),
|
|
1816
1970
|
[themeClass, severity2, className]
|
|
1817
1971
|
);
|
|
1818
1972
|
return {
|
|
1819
|
-
root:
|
|
1973
|
+
root: root25,
|
|
1820
1974
|
iconSlot,
|
|
1821
1975
|
content: content2
|
|
1822
1976
|
};
|
|
1823
1977
|
}
|
|
1824
1978
|
|
|
1825
1979
|
// src/components/alert/index.tsx
|
|
1826
|
-
import { jsx as
|
|
1980
|
+
import { jsx as jsx30, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1827
1981
|
var defaultIcons = {
|
|
1828
1982
|
info: InfoIcon,
|
|
1829
1983
|
ok: CircleCheckIcon,
|
|
@@ -1836,11 +1990,11 @@ var roleBySeverity = {
|
|
|
1836
1990
|
warn: "alert",
|
|
1837
1991
|
danger: "alert"
|
|
1838
1992
|
};
|
|
1839
|
-
var Alert =
|
|
1840
|
-
const styles =
|
|
1993
|
+
var Alert = forwardRef20(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
|
|
1994
|
+
const styles = useStyles18({ severity: severity2, className });
|
|
1841
1995
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1842
1996
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
1843
|
-
return /* @__PURE__ */
|
|
1997
|
+
return /* @__PURE__ */ jsxs17(
|
|
1844
1998
|
"div",
|
|
1845
1999
|
{
|
|
1846
2000
|
ref,
|
|
@@ -1849,10 +2003,10 @@ var Alert = forwardRef19(function Alert2({ severity: severity2 = "info", title,
|
|
|
1849
2003
|
"data-testid": dataTestId,
|
|
1850
2004
|
...rest,
|
|
1851
2005
|
children: [
|
|
1852
|
-
/* @__PURE__ */
|
|
1853
|
-
/* @__PURE__ */
|
|
1854
|
-
title != null && /* @__PURE__ */
|
|
1855
|
-
children != null && /* @__PURE__ */
|
|
2006
|
+
/* @__PURE__ */ jsx30("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ jsx30(IconComponent, {}) }),
|
|
2007
|
+
/* @__PURE__ */ jsxs17("div", { className: styles.content, "data-testid": slot("content"), children: [
|
|
2008
|
+
title != null && /* @__PURE__ */ jsx30(Typography, { variant: "h4", children: title }),
|
|
2009
|
+
children != null && /* @__PURE__ */ jsx30(Typography, { variant: "body", color: "muted", children })
|
|
1856
2010
|
] })
|
|
1857
2011
|
]
|
|
1858
2012
|
}
|
|
@@ -1862,15 +2016,15 @@ var Alert = forwardRef19(function Alert2({ severity: severity2 = "info", title,
|
|
|
1862
2016
|
// src/components/tooltip/index.tsx
|
|
1863
2017
|
import {
|
|
1864
2018
|
cloneElement,
|
|
1865
|
-
forwardRef as
|
|
2019
|
+
forwardRef as forwardRef21,
|
|
1866
2020
|
useEffect as useEffect4,
|
|
1867
|
-
useId as
|
|
1868
|
-
useRef as
|
|
2021
|
+
useId as useId3,
|
|
2022
|
+
useRef as useRef4,
|
|
1869
2023
|
useState as useState5
|
|
1870
2024
|
} from "react";
|
|
1871
2025
|
|
|
1872
2026
|
// src/components/tooltip/use-styles.ts
|
|
1873
|
-
import { useMemo as
|
|
2027
|
+
import { useMemo as useMemo23 } from "react";
|
|
1874
2028
|
|
|
1875
2029
|
// src/components/tooltip/use-styles.css.ts
|
|
1876
2030
|
var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
|
|
@@ -1878,15 +2032,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
|
|
|
1878
2032
|
var wrapper = "use-styles_wrapper__h9kvh0";
|
|
1879
2033
|
|
|
1880
2034
|
// src/components/tooltip/use-styles.ts
|
|
1881
|
-
function
|
|
2035
|
+
function useStyles19({
|
|
1882
2036
|
placement: placement2 = "top"
|
|
1883
2037
|
}) {
|
|
1884
2038
|
const { themeClass } = useTheme();
|
|
1885
|
-
const wrapper4 =
|
|
2039
|
+
const wrapper4 = useMemo23(
|
|
1886
2040
|
() => [themeClass, wrapper].filter(Boolean).join(" "),
|
|
1887
2041
|
[themeClass]
|
|
1888
2042
|
);
|
|
1889
|
-
const bubble2 =
|
|
2043
|
+
const bubble2 = useMemo23(
|
|
1890
2044
|
() => [bubble, placement[placement2]].filter(Boolean).join(" "),
|
|
1891
2045
|
[placement2]
|
|
1892
2046
|
);
|
|
@@ -1894,14 +2048,14 @@ function useStyles18({
|
|
|
1894
2048
|
}
|
|
1895
2049
|
|
|
1896
2050
|
// src/components/tooltip/index.tsx
|
|
1897
|
-
import { jsx as
|
|
2051
|
+
import { jsx as jsx31, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1898
2052
|
var HIDE_DELAY = 120;
|
|
1899
|
-
var Tooltip =
|
|
2053
|
+
var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placement: placement2, testId }, ref) {
|
|
1900
2054
|
const [open, setOpen] = useState5(false);
|
|
1901
|
-
const tooltipId =
|
|
1902
|
-
const { wrapper: wrapper4, bubble: bubble2 } =
|
|
2055
|
+
const tooltipId = useId3();
|
|
2056
|
+
const { wrapper: wrapper4, bubble: bubble2 } = useStyles19({ placement: placement2 });
|
|
1903
2057
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1904
|
-
const hideTimer =
|
|
2058
|
+
const hideTimer = useRef4(null);
|
|
1905
2059
|
const clearHide = () => {
|
|
1906
2060
|
if (hideTimer.current) {
|
|
1907
2061
|
clearTimeout(hideTimer.current);
|
|
@@ -1934,7 +2088,7 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1934
2088
|
const previousDescribedBy = children.props["aria-describedby"];
|
|
1935
2089
|
const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
|
|
1936
2090
|
const trigger2 = cloneElement(children, { "aria-describedby": describedBy });
|
|
1937
|
-
return /* @__PURE__ */
|
|
2091
|
+
return /* @__PURE__ */ jsxs18(
|
|
1938
2092
|
"span",
|
|
1939
2093
|
{
|
|
1940
2094
|
ref,
|
|
@@ -1947,7 +2101,7 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1947
2101
|
onKeyDown: handleKeyDown,
|
|
1948
2102
|
children: [
|
|
1949
2103
|
trigger2,
|
|
1950
|
-
open && /* @__PURE__ */
|
|
2104
|
+
open && /* @__PURE__ */ jsx31(
|
|
1951
2105
|
"span",
|
|
1952
2106
|
{
|
|
1953
2107
|
id: tooltipId,
|
|
@@ -1956,7 +2110,7 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1956
2110
|
"data-testid": slot("bubble"),
|
|
1957
2111
|
onMouseEnter: show,
|
|
1958
2112
|
onMouseLeave: scheduleHide,
|
|
1959
|
-
children:
|
|
2113
|
+
children: label8
|
|
1960
2114
|
}
|
|
1961
2115
|
)
|
|
1962
2116
|
]
|
|
@@ -1965,12 +2119,12 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1965
2119
|
});
|
|
1966
2120
|
|
|
1967
2121
|
// src/components/select/index.tsx
|
|
1968
|
-
import { forwardRef as
|
|
2122
|
+
import { forwardRef as forwardRef22, useEffect as useEffect5, useId as useId4, useRef as useRef5, useState as useState6 } from "react";
|
|
1969
2123
|
|
|
1970
2124
|
// src/components/icons/chevron-down/index.tsx
|
|
1971
|
-
import { jsx as
|
|
2125
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
1972
2126
|
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1973
|
-
return /* @__PURE__ */
|
|
2127
|
+
return /* @__PURE__ */ jsx32(
|
|
1974
2128
|
"svg",
|
|
1975
2129
|
{
|
|
1976
2130
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1984,36 +2138,36 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
1984
2138
|
strokeLinejoin: "round",
|
|
1985
2139
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1986
2140
|
...rest,
|
|
1987
|
-
children: /* @__PURE__ */
|
|
2141
|
+
children: /* @__PURE__ */ jsx32("path", { d: "m6 9 6 6 6-6" })
|
|
1988
2142
|
}
|
|
1989
2143
|
);
|
|
1990
2144
|
}
|
|
1991
2145
|
|
|
1992
2146
|
// src/components/select/use-styles.ts
|
|
1993
|
-
import { useMemo as
|
|
2147
|
+
import { useMemo as useMemo24 } from "react";
|
|
1994
2148
|
|
|
1995
2149
|
// src/components/select/use-styles.css.ts
|
|
1996
2150
|
var chevron = "use-styles_chevron__1w1czpb4";
|
|
1997
2151
|
var chevronOpen = "use-styles_chevronOpen__1w1czpb5";
|
|
1998
|
-
var
|
|
2152
|
+
var label5 = "use-styles_label__1w1czpb1";
|
|
1999
2153
|
var menu = "use-styles_menu__1w1czpb6 surfaces_panelSurface__1qa7atn1";
|
|
2000
2154
|
var option = "use-styles_option__1w1czpb7";
|
|
2001
2155
|
var optionActive = "use-styles_optionActive__1w1czpb9";
|
|
2002
2156
|
var optionSelected = "use-styles_optionSelected__1w1czpb8";
|
|
2003
2157
|
var placeholder = "use-styles_placeholder__1w1czpb3";
|
|
2004
|
-
var
|
|
2158
|
+
var root14 = "use-styles_root__1w1czpb0";
|
|
2005
2159
|
var trigger = "use-styles_trigger__1w1czpb2";
|
|
2006
2160
|
|
|
2007
2161
|
// src/components/select/use-styles.ts
|
|
2008
|
-
function
|
|
2162
|
+
function useStyles20({
|
|
2009
2163
|
open = false
|
|
2010
2164
|
}) {
|
|
2011
2165
|
const { themeClass } = useTheme();
|
|
2012
|
-
return
|
|
2166
|
+
return useMemo24(() => {
|
|
2013
2167
|
const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
|
|
2014
2168
|
return {
|
|
2015
|
-
root: [themeClass,
|
|
2016
|
-
label:
|
|
2169
|
+
root: [themeClass, root14].filter(Boolean).join(" "),
|
|
2170
|
+
label: label5,
|
|
2017
2171
|
trigger,
|
|
2018
2172
|
placeholder,
|
|
2019
2173
|
chevron: chevron3,
|
|
@@ -2024,39 +2178,39 @@ function useStyles19({
|
|
|
2024
2178
|
}
|
|
2025
2179
|
|
|
2026
2180
|
// src/components/select/index.tsx
|
|
2027
|
-
import { jsx as
|
|
2028
|
-
var Select =
|
|
2181
|
+
import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
2182
|
+
var Select = forwardRef22(function Select2({
|
|
2029
2183
|
options,
|
|
2030
2184
|
value,
|
|
2031
2185
|
onChange,
|
|
2032
2186
|
placeholder: placeholder2,
|
|
2033
|
-
label:
|
|
2034
|
-
disabled:
|
|
2187
|
+
label: label8,
|
|
2188
|
+
disabled: disabled4,
|
|
2035
2189
|
"aria-label": ariaLabel,
|
|
2036
2190
|
"aria-labelledby": ariaLabelledBy,
|
|
2037
2191
|
...rest
|
|
2038
2192
|
}, ref) {
|
|
2039
2193
|
const [open, setOpen] = useState6(false);
|
|
2040
2194
|
const [activeIndex, setActiveIndex] = useState6(0);
|
|
2041
|
-
const rootRef =
|
|
2195
|
+
const rootRef = useRef5(null);
|
|
2042
2196
|
const setRootRef = (node) => {
|
|
2043
2197
|
rootRef.current = node;
|
|
2044
2198
|
if (typeof ref === "function") ref(node);
|
|
2045
2199
|
else if (ref) ref.current = node;
|
|
2046
2200
|
};
|
|
2047
|
-
const baseId =
|
|
2201
|
+
const baseId = useId4();
|
|
2048
2202
|
const labelId = `${baseId}-label`;
|
|
2049
2203
|
const optionId = (index) => `${baseId}-option-${index}`;
|
|
2050
|
-
const triggerLabelledBy = [
|
|
2204
|
+
const triggerLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
2051
2205
|
const {
|
|
2052
|
-
root:
|
|
2206
|
+
root: root25,
|
|
2053
2207
|
label: labelClass,
|
|
2054
2208
|
trigger: trigger2,
|
|
2055
2209
|
placeholder: placeholderClass,
|
|
2056
2210
|
chevron: chevron3,
|
|
2057
2211
|
menu: menu2,
|
|
2058
2212
|
optionClass
|
|
2059
|
-
} =
|
|
2213
|
+
} = useStyles20({ open });
|
|
2060
2214
|
useEffect5(() => {
|
|
2061
2215
|
if (!open) return;
|
|
2062
2216
|
const onPointerDown = (event) => {
|
|
@@ -2083,7 +2237,7 @@ var Select = forwardRef21(function Select2({
|
|
|
2083
2237
|
setOpen(true);
|
|
2084
2238
|
};
|
|
2085
2239
|
const handleKeyDown = (event) => {
|
|
2086
|
-
if (
|
|
2240
|
+
if (disabled4) return;
|
|
2087
2241
|
switch (event.key) {
|
|
2088
2242
|
case "Escape":
|
|
2089
2243
|
setOpen(false);
|
|
@@ -2117,21 +2271,21 @@ var Select = forwardRef21(function Select2({
|
|
|
2117
2271
|
break;
|
|
2118
2272
|
}
|
|
2119
2273
|
};
|
|
2120
|
-
return /* @__PURE__ */
|
|
2121
|
-
|
|
2122
|
-
/* @__PURE__ */
|
|
2274
|
+
return /* @__PURE__ */ jsxs19("div", { ref: setRootRef, className: root25, ...rest, children: [
|
|
2275
|
+
label8 && /* @__PURE__ */ jsx33("span", { id: labelId, className: labelClass, children: label8 }),
|
|
2276
|
+
/* @__PURE__ */ jsxs19(
|
|
2123
2277
|
"button",
|
|
2124
2278
|
{
|
|
2125
2279
|
type: "button",
|
|
2126
2280
|
className: trigger2,
|
|
2127
|
-
disabled:
|
|
2281
|
+
disabled: disabled4,
|
|
2128
2282
|
"aria-haspopup": "listbox",
|
|
2129
2283
|
"aria-expanded": open,
|
|
2130
2284
|
"aria-label": ariaLabel,
|
|
2131
2285
|
"aria-labelledby": triggerLabelledBy,
|
|
2132
2286
|
"aria-activedescendant": open ? optionId(activeIndex) : void 0,
|
|
2133
2287
|
onClick: () => {
|
|
2134
|
-
if (
|
|
2288
|
+
if (disabled4) return;
|
|
2135
2289
|
if (open) {
|
|
2136
2290
|
setOpen(false);
|
|
2137
2291
|
} else {
|
|
@@ -2140,17 +2294,17 @@ var Select = forwardRef21(function Select2({
|
|
|
2140
2294
|
},
|
|
2141
2295
|
onKeyDown: handleKeyDown,
|
|
2142
2296
|
children: [
|
|
2143
|
-
selected4 ? selected4.label : /* @__PURE__ */
|
|
2144
|
-
/* @__PURE__ */
|
|
2297
|
+
selected4 ? selected4.label : /* @__PURE__ */ jsx33("span", { className: placeholderClass, children: placeholder2 }),
|
|
2298
|
+
/* @__PURE__ */ jsx33("span", { className: chevron3, children: /* @__PURE__ */ jsx33(ChevronDownIcon, { size: 18 }) })
|
|
2145
2299
|
]
|
|
2146
2300
|
}
|
|
2147
2301
|
),
|
|
2148
|
-
open && /* @__PURE__ */
|
|
2302
|
+
open && /* @__PURE__ */ jsx33("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
|
|
2149
2303
|
const isSelected = option2.value === value;
|
|
2150
2304
|
const isActive = index === activeIndex;
|
|
2151
2305
|
return (
|
|
2152
2306
|
// biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
|
|
2153
|
-
/* @__PURE__ */
|
|
2307
|
+
/* @__PURE__ */ jsx33(
|
|
2154
2308
|
"div",
|
|
2155
2309
|
{
|
|
2156
2310
|
id: optionId(index),
|
|
@@ -2169,29 +2323,29 @@ var Select = forwardRef21(function Select2({
|
|
|
2169
2323
|
});
|
|
2170
2324
|
|
|
2171
2325
|
// src/components/slider/index.tsx
|
|
2172
|
-
import { forwardRef as
|
|
2326
|
+
import { forwardRef as forwardRef23 } from "react";
|
|
2173
2327
|
|
|
2174
2328
|
// src/components/slider/use-styles.ts
|
|
2175
|
-
import { useMemo as
|
|
2329
|
+
import { useMemo as useMemo25 } from "react";
|
|
2176
2330
|
|
|
2177
2331
|
// src/components/slider/use-styles.css.ts
|
|
2178
2332
|
var input5 = "use-styles_input__okw59n3";
|
|
2179
|
-
var
|
|
2333
|
+
var label6 = "use-styles_label__okw59n5";
|
|
2180
2334
|
var range = "use-styles_range__okw59n2";
|
|
2181
|
-
var
|
|
2335
|
+
var root15 = "use-styles_root__okw59n0";
|
|
2182
2336
|
var thumb = "use-styles_thumb__okw59n4";
|
|
2183
2337
|
var track3 = "use-styles_track__okw59n1";
|
|
2184
2338
|
var wrapper2 = "use-styles_wrapper__okw59n6";
|
|
2185
2339
|
|
|
2186
2340
|
// src/components/slider/use-styles.ts
|
|
2187
|
-
function
|
|
2341
|
+
function useStyles21() {
|
|
2188
2342
|
const { themeClass } = useTheme();
|
|
2189
|
-
return
|
|
2190
|
-
const
|
|
2343
|
+
return useMemo25(() => {
|
|
2344
|
+
const root25 = [themeClass, root15].filter(Boolean).join(" ");
|
|
2191
2345
|
return {
|
|
2192
2346
|
wrapper: wrapper2,
|
|
2193
|
-
label:
|
|
2194
|
-
root:
|
|
2347
|
+
label: label6,
|
|
2348
|
+
root: root25,
|
|
2195
2349
|
track: track3,
|
|
2196
2350
|
range,
|
|
2197
2351
|
thumb,
|
|
@@ -2201,21 +2355,21 @@ function useStyles20() {
|
|
|
2201
2355
|
}
|
|
2202
2356
|
|
|
2203
2357
|
// src/components/slider/index.tsx
|
|
2204
|
-
import { jsx as
|
|
2205
|
-
var Slider =
|
|
2206
|
-
const { wrapper: wrapper4, label: labelClass, root:
|
|
2358
|
+
import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
2359
|
+
var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled4, label: label8, ...rest }, ref) {
|
|
2360
|
+
const { wrapper: wrapper4, label: labelClass, root: root25, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles21();
|
|
2207
2361
|
const span = max - min;
|
|
2208
2362
|
const percent = span > 0 ? (value - min) / span * 100 : 0;
|
|
2209
2363
|
const clamped = Math.max(0, Math.min(100, percent));
|
|
2210
2364
|
const handleChange = (e) => {
|
|
2211
2365
|
onChange?.(Number(e.target.value));
|
|
2212
2366
|
};
|
|
2213
|
-
return /* @__PURE__ */
|
|
2214
|
-
|
|
2215
|
-
/* @__PURE__ */
|
|
2216
|
-
/* @__PURE__ */
|
|
2217
|
-
/* @__PURE__ */
|
|
2218
|
-
/* @__PURE__ */
|
|
2367
|
+
return /* @__PURE__ */ jsxs20("span", { className: wrapper4, children: [
|
|
2368
|
+
label8 ? /* @__PURE__ */ jsx34("span", { className: labelClass, children: label8 }) : null,
|
|
2369
|
+
/* @__PURE__ */ jsxs20("span", { className: root25, children: [
|
|
2370
|
+
/* @__PURE__ */ jsx34("span", { className: track4 }),
|
|
2371
|
+
/* @__PURE__ */ jsx34("span", { className: range2, style: { width: `${clamped}%` } }),
|
|
2372
|
+
/* @__PURE__ */ jsx34(
|
|
2219
2373
|
"input",
|
|
2220
2374
|
{
|
|
2221
2375
|
ref,
|
|
@@ -2225,21 +2379,21 @@ var Slider = forwardRef22(function Slider2({ value = 0, onChange, min = 0, max =
|
|
|
2225
2379
|
max,
|
|
2226
2380
|
step: step2,
|
|
2227
2381
|
value,
|
|
2228
|
-
disabled:
|
|
2382
|
+
disabled: disabled4,
|
|
2229
2383
|
onChange: handleChange,
|
|
2230
2384
|
...rest
|
|
2231
2385
|
}
|
|
2232
2386
|
),
|
|
2233
|
-
/* @__PURE__ */
|
|
2387
|
+
/* @__PURE__ */ jsx34("span", { className: thumb2, style: { left: `${clamped}%` } })
|
|
2234
2388
|
] })
|
|
2235
2389
|
] });
|
|
2236
2390
|
});
|
|
2237
2391
|
|
|
2238
2392
|
// src/components/accordion/index.tsx
|
|
2239
|
-
import { forwardRef as
|
|
2393
|
+
import { forwardRef as forwardRef24, useState as useState7 } from "react";
|
|
2240
2394
|
|
|
2241
2395
|
// src/components/accordion/use-styles.ts
|
|
2242
|
-
import { useMemo as
|
|
2396
|
+
import { useMemo as useMemo26 } from "react";
|
|
2243
2397
|
|
|
2244
2398
|
// src/components/accordion/use-styles.css.ts
|
|
2245
2399
|
var chevron2 = "use-styles_chevron__1cjrdh93";
|
|
@@ -2247,14 +2401,14 @@ var chevronOpen2 = "use-styles_chevronOpen__1cjrdh94";
|
|
|
2247
2401
|
var header2 = "use-styles_header__1cjrdh92";
|
|
2248
2402
|
var item = "use-styles_item__1cjrdh91";
|
|
2249
2403
|
var panel = "use-styles_panel__1cjrdh95";
|
|
2250
|
-
var
|
|
2404
|
+
var root16 = "use-styles_root__1cjrdh90";
|
|
2251
2405
|
|
|
2252
2406
|
// src/components/accordion/use-styles.ts
|
|
2253
|
-
function
|
|
2407
|
+
function useStyles22({ className }) {
|
|
2254
2408
|
const { themeClass } = useTheme();
|
|
2255
|
-
return
|
|
2409
|
+
return useMemo26(
|
|
2256
2410
|
() => ({
|
|
2257
|
-
root: [themeClass,
|
|
2411
|
+
root: [themeClass, root16, className].filter(Boolean).join(" "),
|
|
2258
2412
|
item,
|
|
2259
2413
|
header: header2,
|
|
2260
2414
|
chevronFor: (open) => [chevron2, open && chevronOpen2].filter(Boolean).join(" "),
|
|
@@ -2265,10 +2419,10 @@ function useStyles21({ className }) {
|
|
|
2265
2419
|
}
|
|
2266
2420
|
|
|
2267
2421
|
// src/components/accordion/index.tsx
|
|
2268
|
-
import { jsx as
|
|
2269
|
-
var Accordion =
|
|
2422
|
+
import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
2423
|
+
var Accordion = forwardRef24(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
|
|
2270
2424
|
const [open, setOpen] = useState7(defaultOpen);
|
|
2271
|
-
const { root:
|
|
2425
|
+
const { root: root25, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles22({ className });
|
|
2272
2426
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
2273
2427
|
const toggle = (id) => {
|
|
2274
2428
|
setOpen((current2) => {
|
|
@@ -2277,19 +2431,19 @@ var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defa
|
|
|
2277
2431
|
return multiple ? [...current2, id] : [id];
|
|
2278
2432
|
});
|
|
2279
2433
|
};
|
|
2280
|
-
return /* @__PURE__ */
|
|
2434
|
+
return /* @__PURE__ */ jsx35("div", { ref, className: root25, "data-testid": dataTestId, children: items.map((it) => {
|
|
2281
2435
|
const isOpen = open.includes(it.id);
|
|
2282
2436
|
const panelId = `accordion-panel-${it.id}`;
|
|
2283
2437
|
const headerId = `accordion-header-${it.id}`;
|
|
2284
2438
|
const itemSlot = slot(`item-${it.id}`);
|
|
2285
|
-
return /* @__PURE__ */
|
|
2439
|
+
return /* @__PURE__ */ jsxs21(
|
|
2286
2440
|
"div",
|
|
2287
2441
|
{
|
|
2288
2442
|
className: item3,
|
|
2289
2443
|
"data-testid": itemSlot,
|
|
2290
2444
|
"data-state": states({ expanded: isOpen }),
|
|
2291
2445
|
children: [
|
|
2292
|
-
/* @__PURE__ */
|
|
2446
|
+
/* @__PURE__ */ jsxs21(
|
|
2293
2447
|
"button",
|
|
2294
2448
|
{
|
|
2295
2449
|
type: "button",
|
|
@@ -2301,11 +2455,11 @@ var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defa
|
|
|
2301
2455
|
onClick: () => toggle(it.id),
|
|
2302
2456
|
children: [
|
|
2303
2457
|
it.title,
|
|
2304
|
-
/* @__PURE__ */
|
|
2458
|
+
/* @__PURE__ */ jsx35(ChevronDownIcon, { className: chevronFor(isOpen) })
|
|
2305
2459
|
]
|
|
2306
2460
|
}
|
|
2307
2461
|
),
|
|
2308
|
-
isOpen && /* @__PURE__ */
|
|
2462
|
+
isOpen && /* @__PURE__ */ jsx35(
|
|
2309
2463
|
"div",
|
|
2310
2464
|
{
|
|
2311
2465
|
id: panelId,
|
|
@@ -2324,12 +2478,12 @@ var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defa
|
|
|
2324
2478
|
});
|
|
2325
2479
|
|
|
2326
2480
|
// src/components/breadcrumbs/index.tsx
|
|
2327
|
-
import { Fragment, forwardRef as
|
|
2481
|
+
import { Fragment, forwardRef as forwardRef25 } from "react";
|
|
2328
2482
|
|
|
2329
2483
|
// src/components/icons/chevron-right/index.tsx
|
|
2330
|
-
import { jsx as
|
|
2484
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
2331
2485
|
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2332
|
-
return /* @__PURE__ */
|
|
2486
|
+
return /* @__PURE__ */ jsx36(
|
|
2333
2487
|
"svg",
|
|
2334
2488
|
{
|
|
2335
2489
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2343,52 +2497,52 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2343
2497
|
strokeLinejoin: "round",
|
|
2344
2498
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2345
2499
|
...rest,
|
|
2346
|
-
children: /* @__PURE__ */
|
|
2500
|
+
children: /* @__PURE__ */ jsx36("path", { d: "m9 18 6-6-6-6" })
|
|
2347
2501
|
}
|
|
2348
2502
|
);
|
|
2349
2503
|
}
|
|
2350
2504
|
|
|
2351
2505
|
// src/components/breadcrumbs/use-styles.ts
|
|
2352
|
-
import { useMemo as
|
|
2506
|
+
import { useMemo as useMemo27 } from "react";
|
|
2353
2507
|
|
|
2354
2508
|
// src/components/breadcrumbs/use-styles.css.ts
|
|
2355
2509
|
var crumb = "use-styles_crumb__7u0du61";
|
|
2356
2510
|
var current = "use-styles_current__7u0du62";
|
|
2357
|
-
var
|
|
2511
|
+
var root17 = "use-styles_root__7u0du60";
|
|
2358
2512
|
var separator = "use-styles_separator__7u0du63";
|
|
2359
2513
|
|
|
2360
2514
|
// src/components/breadcrumbs/use-styles.ts
|
|
2361
|
-
function
|
|
2515
|
+
function useStyles23({ className }) {
|
|
2362
2516
|
const { themeClass } = useTheme();
|
|
2363
|
-
const
|
|
2364
|
-
() => [themeClass,
|
|
2517
|
+
const root25 = useMemo27(
|
|
2518
|
+
() => [themeClass, root17, className].filter(Boolean).join(" "),
|
|
2365
2519
|
[themeClass, className]
|
|
2366
2520
|
);
|
|
2367
|
-
return { root:
|
|
2521
|
+
return { root: root25, crumb, current, separator };
|
|
2368
2522
|
}
|
|
2369
2523
|
|
|
2370
2524
|
// src/components/breadcrumbs/index.tsx
|
|
2371
|
-
import { jsx as
|
|
2372
|
-
var Breadcrumbs =
|
|
2373
|
-
const { root:
|
|
2525
|
+
import { jsx as jsx37, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
2526
|
+
var Breadcrumbs = forwardRef25(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
|
|
2527
|
+
const { root: root25, crumb: crumb2, current: current2, separator: separator2 } = useStyles23({ className });
|
|
2374
2528
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2375
|
-
return /* @__PURE__ */
|
|
2529
|
+
return /* @__PURE__ */ jsx37("nav", { ref, "aria-label": "Breadcrumb", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2376
2530
|
const isLast = index === items.length - 1;
|
|
2377
2531
|
const key = index;
|
|
2378
|
-
return /* @__PURE__ */
|
|
2379
|
-
isLast ? /* @__PURE__ */
|
|
2380
|
-
!isLast && /* @__PURE__ */
|
|
2532
|
+
return /* @__PURE__ */ jsxs22(Fragment, { children: [
|
|
2533
|
+
isLast ? /* @__PURE__ */ jsx37("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ jsx37("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ jsx37("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
|
|
2534
|
+
!isLast && /* @__PURE__ */ jsx37("span", { className: separator2, children: /* @__PURE__ */ jsx37(ChevronRightIcon, { size: 14 }) })
|
|
2381
2535
|
] }, key);
|
|
2382
2536
|
}) });
|
|
2383
2537
|
});
|
|
2384
2538
|
|
|
2385
2539
|
// src/components/pagination/index.tsx
|
|
2386
|
-
import { forwardRef as
|
|
2540
|
+
import { forwardRef as forwardRef26 } from "react";
|
|
2387
2541
|
|
|
2388
2542
|
// src/components/icons/chevron-left/index.tsx
|
|
2389
|
-
import { jsx as
|
|
2543
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2390
2544
|
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2391
|
-
return /* @__PURE__ */
|
|
2545
|
+
return /* @__PURE__ */ jsx38(
|
|
2392
2546
|
"svg",
|
|
2393
2547
|
{
|
|
2394
2548
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2402,27 +2556,27 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2402
2556
|
strokeLinejoin: "round",
|
|
2403
2557
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2404
2558
|
...rest,
|
|
2405
|
-
children: /* @__PURE__ */
|
|
2559
|
+
children: /* @__PURE__ */ jsx38("path", { d: "m15 18-6-6 6-6" })
|
|
2406
2560
|
}
|
|
2407
2561
|
);
|
|
2408
2562
|
}
|
|
2409
2563
|
|
|
2410
2564
|
// src/components/pagination/use-styles.ts
|
|
2411
|
-
import { useMemo as
|
|
2565
|
+
import { useMemo as useMemo28 } from "react";
|
|
2412
2566
|
|
|
2413
2567
|
// src/components/pagination/use-styles.css.ts
|
|
2414
2568
|
var ellipsis = "use-styles_ellipsis__1azgzoh3";
|
|
2415
2569
|
var nav = "use-styles_nav__1azgzoh4";
|
|
2416
2570
|
var pageActive = "use-styles_pageActive__1azgzoh2";
|
|
2417
2571
|
var pageBtn = "use-styles_pageBtn__1azgzoh1";
|
|
2418
|
-
var
|
|
2572
|
+
var root18 = "use-styles_root__1azgzoh0";
|
|
2419
2573
|
|
|
2420
2574
|
// src/components/pagination/use-styles.ts
|
|
2421
|
-
function
|
|
2575
|
+
function useStyles24() {
|
|
2422
2576
|
const { themeClass } = useTheme();
|
|
2423
|
-
return
|
|
2577
|
+
return useMemo28(
|
|
2424
2578
|
() => ({
|
|
2425
|
-
root: [themeClass,
|
|
2579
|
+
root: [themeClass, root18].filter(Boolean).join(" "),
|
|
2426
2580
|
pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
|
|
2427
2581
|
ellipsis,
|
|
2428
2582
|
nav: [pageBtn, nav].join(" ")
|
|
@@ -2432,7 +2586,7 @@ function useStyles23() {
|
|
|
2432
2586
|
}
|
|
2433
2587
|
|
|
2434
2588
|
// src/components/pagination/index.tsx
|
|
2435
|
-
import { jsx as
|
|
2589
|
+
import { jsx as jsx39, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
2436
2590
|
function buildItems(count, page, siblingCount) {
|
|
2437
2591
|
const total = Math.max(1, count);
|
|
2438
2592
|
const first = 1;
|
|
@@ -2446,15 +2600,15 @@ function buildItems(count, page, siblingCount) {
|
|
|
2446
2600
|
if (last > first) items.push(last);
|
|
2447
2601
|
return items;
|
|
2448
2602
|
}
|
|
2449
|
-
var Pagination =
|
|
2450
|
-
const { root:
|
|
2603
|
+
var Pagination = forwardRef26(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
|
|
2604
|
+
const { root: root25, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles24();
|
|
2451
2605
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2452
2606
|
const total = Math.max(1, count);
|
|
2453
2607
|
const current2 = Math.min(Math.max(1, page), total);
|
|
2454
2608
|
const items = buildItems(total, current2, siblingCount);
|
|
2455
2609
|
const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
|
|
2456
|
-
return /* @__PURE__ */
|
|
2457
|
-
/* @__PURE__ */
|
|
2610
|
+
return /* @__PURE__ */ jsxs23("nav", { ref, className: root25, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
|
|
2611
|
+
/* @__PURE__ */ jsx39(
|
|
2458
2612
|
"button",
|
|
2459
2613
|
{
|
|
2460
2614
|
type: "button",
|
|
@@ -2463,11 +2617,11 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2463
2617
|
disabled: current2 <= 1,
|
|
2464
2618
|
"data-testid": slot("prev"),
|
|
2465
2619
|
onClick: () => go(current2 - 1),
|
|
2466
|
-
children: /* @__PURE__ */
|
|
2620
|
+
children: /* @__PURE__ */ jsx39(ChevronLeftIcon, { size: 18 })
|
|
2467
2621
|
}
|
|
2468
2622
|
),
|
|
2469
2623
|
items.map(
|
|
2470
|
-
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */
|
|
2624
|
+
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ jsx39(
|
|
2471
2625
|
"span",
|
|
2472
2626
|
{
|
|
2473
2627
|
className: ellipsis2,
|
|
@@ -2475,7 +2629,7 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2475
2629
|
children: "\u2026"
|
|
2476
2630
|
},
|
|
2477
2631
|
`ellipsis-${index}`
|
|
2478
|
-
) : /* @__PURE__ */
|
|
2632
|
+
) : /* @__PURE__ */ jsx39(
|
|
2479
2633
|
"button",
|
|
2480
2634
|
{
|
|
2481
2635
|
type: "button",
|
|
@@ -2488,7 +2642,7 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2488
2642
|
item3
|
|
2489
2643
|
)
|
|
2490
2644
|
),
|
|
2491
|
-
/* @__PURE__ */
|
|
2645
|
+
/* @__PURE__ */ jsx39(
|
|
2492
2646
|
"button",
|
|
2493
2647
|
{
|
|
2494
2648
|
type: "button",
|
|
@@ -2497,55 +2651,55 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2497
2651
|
disabled: current2 >= total,
|
|
2498
2652
|
"data-testid": slot("next"),
|
|
2499
2653
|
onClick: () => go(current2 + 1),
|
|
2500
|
-
children: /* @__PURE__ */
|
|
2654
|
+
children: /* @__PURE__ */ jsx39(ChevronRightIcon, { size: 18 })
|
|
2501
2655
|
}
|
|
2502
2656
|
)
|
|
2503
2657
|
] });
|
|
2504
2658
|
});
|
|
2505
2659
|
|
|
2506
2660
|
// src/components/stepper/index.tsx
|
|
2507
|
-
import { Fragment as Fragment2, forwardRef as
|
|
2661
|
+
import { Fragment as Fragment2, forwardRef as forwardRef27 } from "react";
|
|
2508
2662
|
|
|
2509
2663
|
// src/components/stepper/use-styles.ts
|
|
2510
|
-
import { useMemo as
|
|
2664
|
+
import { useMemo as useMemo29 } from "react";
|
|
2511
2665
|
|
|
2512
2666
|
// src/components/stepper/use-styles.css.ts
|
|
2513
2667
|
var connector = "use-styles_connector__79pt4e7";
|
|
2514
|
-
var
|
|
2668
|
+
var label7 = "use-styles_label__79pt4e5";
|
|
2515
2669
|
var labelActive = "use-styles_labelActive__79pt4e6";
|
|
2516
2670
|
var marker = "use-styles_marker__79pt4e2";
|
|
2517
2671
|
var markerActive = "use-styles_markerActive__79pt4e3";
|
|
2518
2672
|
var markerDone = "use-styles_markerDone__79pt4e4";
|
|
2519
|
-
var
|
|
2673
|
+
var root19 = "use-styles_root__79pt4e0";
|
|
2520
2674
|
var step = "use-styles_step__79pt4e1";
|
|
2521
2675
|
|
|
2522
2676
|
// src/components/stepper/use-styles.ts
|
|
2523
|
-
function
|
|
2677
|
+
function useStyles25({ className }) {
|
|
2524
2678
|
const { themeClass } = useTheme();
|
|
2525
|
-
return
|
|
2526
|
-
const
|
|
2679
|
+
return useMemo29(() => {
|
|
2680
|
+
const root25 = [themeClass, root19, className].filter(Boolean).join(" ");
|
|
2527
2681
|
const markerFor = (state) => [
|
|
2528
2682
|
marker,
|
|
2529
2683
|
state === "active" && markerActive,
|
|
2530
2684
|
state === "done" && markerDone
|
|
2531
2685
|
].filter(Boolean).join(" ");
|
|
2532
|
-
const labelFor = (active2) => [
|
|
2533
|
-
return { root:
|
|
2686
|
+
const labelFor = (active2) => [label7, active2 && labelActive].filter(Boolean).join(" ");
|
|
2687
|
+
return { root: root25, step, connector, markerFor, labelFor };
|
|
2534
2688
|
}, [themeClass, className]);
|
|
2535
2689
|
}
|
|
2536
2690
|
|
|
2537
2691
|
// src/components/stepper/index.tsx
|
|
2538
|
-
import { jsx as
|
|
2539
|
-
var Stepper =
|
|
2540
|
-
const { root:
|
|
2692
|
+
import { jsx as jsx40, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
2693
|
+
var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
|
|
2694
|
+
const { root: root25, step: step2, connector: connector2, markerFor, labelFor } = useStyles25({ className });
|
|
2541
2695
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2542
|
-
return /* @__PURE__ */
|
|
2696
|
+
return /* @__PURE__ */ jsx40("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
|
|
2543
2697
|
const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
|
|
2544
2698
|
const isActive = state === "active";
|
|
2545
2699
|
return (
|
|
2546
2700
|
// biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
|
|
2547
|
-
/* @__PURE__ */
|
|
2548
|
-
/* @__PURE__ */
|
|
2701
|
+
/* @__PURE__ */ jsxs24(Fragment2, { children: [
|
|
2702
|
+
/* @__PURE__ */ jsxs24(
|
|
2549
2703
|
"div",
|
|
2550
2704
|
{
|
|
2551
2705
|
className: step2,
|
|
@@ -2553,47 +2707,47 @@ var Stepper = forwardRef26(function Stepper2({ steps, active: active2 = 0, class
|
|
|
2553
2707
|
"data-testid": slot(`step-${index}`),
|
|
2554
2708
|
"data-state": states({ done: state === "done", active: isActive }),
|
|
2555
2709
|
children: [
|
|
2556
|
-
/* @__PURE__ */
|
|
2557
|
-
/* @__PURE__ */
|
|
2710
|
+
/* @__PURE__ */ jsx40("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ jsx40(CheckIcon, { size: 14 }) : index + 1 }),
|
|
2711
|
+
/* @__PURE__ */ jsx40("span", { className: labelFor(isActive), children: s.label })
|
|
2558
2712
|
]
|
|
2559
2713
|
}
|
|
2560
2714
|
),
|
|
2561
|
-
index < steps.length - 1 && /* @__PURE__ */
|
|
2715
|
+
index < steps.length - 1 && /* @__PURE__ */ jsx40("span", { "data-part": "connector", className: connector2 })
|
|
2562
2716
|
] }, index)
|
|
2563
2717
|
);
|
|
2564
2718
|
}) });
|
|
2565
2719
|
});
|
|
2566
2720
|
|
|
2567
2721
|
// src/components/tabs/index.tsx
|
|
2568
|
-
import { forwardRef as
|
|
2722
|
+
import { forwardRef as forwardRef28, useId as useId5, useRef as useRef6 } from "react";
|
|
2569
2723
|
|
|
2570
2724
|
// src/components/tabs/use-styles.ts
|
|
2571
|
-
import { useMemo as
|
|
2725
|
+
import { useMemo as useMemo30 } from "react";
|
|
2572
2726
|
|
|
2573
2727
|
// src/components/tabs/use-styles.css.ts
|
|
2574
2728
|
var panel2 = "use-styles_panel__1l4m7t43";
|
|
2575
|
-
var
|
|
2729
|
+
var root20 = "use-styles_root__1l4m7t40";
|
|
2576
2730
|
var tab = "use-styles_tab__1l4m7t41";
|
|
2577
2731
|
var tabActive = "use-styles_tabActive__1l4m7t42";
|
|
2578
2732
|
|
|
2579
2733
|
// src/components/tabs/use-styles.ts
|
|
2580
|
-
function
|
|
2734
|
+
function useStyles26() {
|
|
2581
2735
|
const { themeClass } = useTheme();
|
|
2582
|
-
return
|
|
2583
|
-
const
|
|
2736
|
+
return useMemo30(() => {
|
|
2737
|
+
const root25 = [themeClass, root20].filter(Boolean).join(" ");
|
|
2584
2738
|
const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
|
|
2585
|
-
return { root:
|
|
2739
|
+
return { root: root25, tab, tabClass, panel: panel2 };
|
|
2586
2740
|
}, [themeClass]);
|
|
2587
2741
|
}
|
|
2588
2742
|
|
|
2589
2743
|
// src/components/tabs/index.tsx
|
|
2590
|
-
import { Fragment as Fragment3, jsx as
|
|
2744
|
+
import { Fragment as Fragment3, jsx as jsx41, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
2591
2745
|
var ICON_SIZE3 = 16;
|
|
2592
|
-
var Tabs =
|
|
2593
|
-
const { root:
|
|
2746
|
+
var Tabs = forwardRef28(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
|
|
2747
|
+
const { root: root25, tabClass, panel: panel3 } = useStyles26();
|
|
2594
2748
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2595
|
-
const baseId =
|
|
2596
|
-
const tabRefs =
|
|
2749
|
+
const baseId = useId5();
|
|
2750
|
+
const tabRefs = useRef6([]);
|
|
2597
2751
|
const hasPanels = items.some((item3) => item3.content !== void 0);
|
|
2598
2752
|
const activeIndex = items.findIndex((item3) => item3.value === value);
|
|
2599
2753
|
const tabId = (v) => `${baseId}-tab-${v}`;
|
|
@@ -2625,12 +2779,12 @@ var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2625
2779
|
break;
|
|
2626
2780
|
}
|
|
2627
2781
|
};
|
|
2628
|
-
return /* @__PURE__ */
|
|
2629
|
-
/* @__PURE__ */
|
|
2782
|
+
return /* @__PURE__ */ jsxs25(Fragment3, { children: [
|
|
2783
|
+
/* @__PURE__ */ jsx41("div", { ref, role: "tablist", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2630
2784
|
const active2 = item3.value === value;
|
|
2631
2785
|
const tabbable = active2 || activeIndex === -1 && index === 0;
|
|
2632
2786
|
const ItemIcon = item3.icon;
|
|
2633
|
-
return /* @__PURE__ */
|
|
2787
|
+
return /* @__PURE__ */ jsxs25(
|
|
2634
2788
|
"button",
|
|
2635
2789
|
{
|
|
2636
2790
|
ref: (el) => {
|
|
@@ -2648,14 +2802,14 @@ var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2648
2802
|
onClick: () => onChange?.(item3.value),
|
|
2649
2803
|
onKeyDown: (event) => onKeyDown(event, index),
|
|
2650
2804
|
children: [
|
|
2651
|
-
ItemIcon ? /* @__PURE__ */
|
|
2805
|
+
ItemIcon ? /* @__PURE__ */ jsx41(ItemIcon, { size: ICON_SIZE3 }) : null,
|
|
2652
2806
|
item3.label
|
|
2653
2807
|
]
|
|
2654
2808
|
},
|
|
2655
2809
|
item3.value
|
|
2656
2810
|
);
|
|
2657
2811
|
}) }),
|
|
2658
|
-
hasPanels && items.map((item3) => /* @__PURE__ */
|
|
2812
|
+
hasPanels && items.map((item3) => /* @__PURE__ */ jsx41(
|
|
2659
2813
|
"div",
|
|
2660
2814
|
{
|
|
2661
2815
|
role: "tabpanel",
|
|
@@ -2675,29 +2829,29 @@ var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2675
2829
|
// src/components/menu/index.tsx
|
|
2676
2830
|
import {
|
|
2677
2831
|
cloneElement as cloneElement2,
|
|
2678
|
-
forwardRef as
|
|
2832
|
+
forwardRef as forwardRef29,
|
|
2679
2833
|
useEffect as useEffect6,
|
|
2680
2834
|
useLayoutEffect,
|
|
2681
|
-
useRef as
|
|
2835
|
+
useRef as useRef7,
|
|
2682
2836
|
useState as useState8
|
|
2683
2837
|
} from "react";
|
|
2684
2838
|
|
|
2685
2839
|
// src/components/menu/use-styles.ts
|
|
2686
|
-
import { useMemo as
|
|
2840
|
+
import { useMemo as useMemo31 } from "react";
|
|
2687
2841
|
|
|
2688
2842
|
// src/components/menu/use-styles.css.ts
|
|
2689
2843
|
var danger = "use-styles_danger__1uyxaj3";
|
|
2690
2844
|
var item2 = "use-styles_item__1uyxaj2";
|
|
2691
|
-
var
|
|
2845
|
+
var list2 = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
|
|
2692
2846
|
var wrapper3 = "use-styles_wrapper__1uyxaj0";
|
|
2693
2847
|
|
|
2694
2848
|
// src/components/menu/use-styles.ts
|
|
2695
|
-
function
|
|
2849
|
+
function useStyles27() {
|
|
2696
2850
|
const { themeClass } = useTheme();
|
|
2697
|
-
return
|
|
2851
|
+
return useMemo31(
|
|
2698
2852
|
() => ({
|
|
2699
2853
|
wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
|
|
2700
|
-
list,
|
|
2854
|
+
list: list2,
|
|
2701
2855
|
item: item2,
|
|
2702
2856
|
dangerItem: [item2, danger].join(" ")
|
|
2703
2857
|
}),
|
|
@@ -2706,24 +2860,24 @@ function useStyles26() {
|
|
|
2706
2860
|
}
|
|
2707
2861
|
|
|
2708
2862
|
// src/components/menu/index.tsx
|
|
2709
|
-
import { jsx as
|
|
2863
|
+
import { jsx as jsx42, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2710
2864
|
var ICON_SIZE4 = 16;
|
|
2711
2865
|
function assignRef(ref, value) {
|
|
2712
2866
|
if (typeof ref === "function") ref(value);
|
|
2713
2867
|
else if (ref) ref.current = value;
|
|
2714
2868
|
}
|
|
2715
|
-
var Menu =
|
|
2716
|
-
const { wrapper: wrapper4, list:
|
|
2869
|
+
var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref) {
|
|
2870
|
+
const { wrapper: wrapper4, list: list3, item: item3, dangerItem } = useStyles27();
|
|
2717
2871
|
const { testId: rootTestId, slot } = useTestId("menu", testId);
|
|
2718
2872
|
const [open, setOpen] = useState8(false);
|
|
2719
2873
|
const [alignEnd, setAlignEnd] = useState8(false);
|
|
2720
|
-
const rootRef =
|
|
2874
|
+
const rootRef = useRef7(null);
|
|
2721
2875
|
const setRootRef = (node) => {
|
|
2722
2876
|
rootRef.current = node;
|
|
2723
2877
|
assignRef(ref, node);
|
|
2724
2878
|
};
|
|
2725
|
-
const listRef =
|
|
2726
|
-
const triggerRef =
|
|
2879
|
+
const listRef = useRef7(null);
|
|
2880
|
+
const triggerRef = useRef7(null);
|
|
2727
2881
|
const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
|
|
2728
2882
|
const focusItemAt = (index) => {
|
|
2729
2883
|
const menuItems = getMenuItems();
|
|
@@ -2812,7 +2966,7 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2812
2966
|
setOpen((prev) => !prev);
|
|
2813
2967
|
}
|
|
2814
2968
|
});
|
|
2815
|
-
return /* @__PURE__ */
|
|
2969
|
+
return /* @__PURE__ */ jsxs26(
|
|
2816
2970
|
"div",
|
|
2817
2971
|
{
|
|
2818
2972
|
ref: setRootRef,
|
|
@@ -2821,18 +2975,18 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2821
2975
|
"data-state": open ? "open" : "closed",
|
|
2822
2976
|
children: [
|
|
2823
2977
|
clonedTrigger,
|
|
2824
|
-
open && /* @__PURE__ */
|
|
2978
|
+
open && /* @__PURE__ */ jsx42(
|
|
2825
2979
|
"div",
|
|
2826
2980
|
{
|
|
2827
2981
|
ref: listRef,
|
|
2828
2982
|
role: "menu",
|
|
2829
|
-
className:
|
|
2983
|
+
className: list3,
|
|
2830
2984
|
"data-align": alignEnd ? "end" : "start",
|
|
2831
2985
|
"data-testid": slot("list"),
|
|
2832
2986
|
onKeyDown: onMenuKeyDown,
|
|
2833
2987
|
children: items.map((entry, index) => {
|
|
2834
2988
|
const ItemIcon = entry.icon;
|
|
2835
|
-
return /* @__PURE__ */
|
|
2989
|
+
return /* @__PURE__ */ jsxs26(
|
|
2836
2990
|
"button",
|
|
2837
2991
|
{
|
|
2838
2992
|
type: "button",
|
|
@@ -2845,7 +2999,7 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2845
2999
|
setOpen(false);
|
|
2846
3000
|
},
|
|
2847
3001
|
children: [
|
|
2848
|
-
ItemIcon ? /* @__PURE__ */
|
|
3002
|
+
ItemIcon ? /* @__PURE__ */ jsx42(ItemIcon, { size: ICON_SIZE4 }) : null,
|
|
2849
3003
|
entry.label
|
|
2850
3004
|
]
|
|
2851
3005
|
},
|
|
@@ -2861,15 +3015,15 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2861
3015
|
|
|
2862
3016
|
// src/components/dialog/index.tsx
|
|
2863
3017
|
import {
|
|
2864
|
-
forwardRef as
|
|
3018
|
+
forwardRef as forwardRef30,
|
|
2865
3019
|
useEffect as useEffect7,
|
|
2866
|
-
useId as
|
|
2867
|
-
useRef as
|
|
3020
|
+
useId as useId6,
|
|
3021
|
+
useRef as useRef8
|
|
2868
3022
|
} from "react";
|
|
2869
3023
|
import { createPortal } from "react-dom";
|
|
2870
3024
|
|
|
2871
3025
|
// src/components/dialog/use-styles.ts
|
|
2872
|
-
import { useMemo as
|
|
3026
|
+
import { useMemo as useMemo32 } from "react";
|
|
2873
3027
|
|
|
2874
3028
|
// src/components/dialog/use-styles.css.ts
|
|
2875
3029
|
var actions = "use-styles_actions__5tstu83";
|
|
@@ -2878,9 +3032,9 @@ var overlay = "use-styles_overlay__5tstu80";
|
|
|
2878
3032
|
var surface2 = "use-styles_surface__5tstu81";
|
|
2879
3033
|
|
|
2880
3034
|
// src/components/dialog/use-styles.ts
|
|
2881
|
-
function
|
|
3035
|
+
function useStyles28() {
|
|
2882
3036
|
const { themeClass } = useTheme();
|
|
2883
|
-
return
|
|
3037
|
+
return useMemo32(
|
|
2884
3038
|
() => ({
|
|
2885
3039
|
overlay: [themeClass, overlay].filter(Boolean).join(" "),
|
|
2886
3040
|
surface: surface2,
|
|
@@ -2892,22 +3046,22 @@ function useStyles27() {
|
|
|
2892
3046
|
}
|
|
2893
3047
|
|
|
2894
3048
|
// src/components/dialog/index.tsx
|
|
2895
|
-
import { jsx as
|
|
3049
|
+
import { jsx as jsx43, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2896
3050
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
2897
3051
|
function assignRef2(ref, value) {
|
|
2898
3052
|
if (typeof ref === "function") ref(value);
|
|
2899
3053
|
else if (ref) ref.current = value;
|
|
2900
3054
|
}
|
|
2901
|
-
var Dialog =
|
|
2902
|
-
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } =
|
|
3055
|
+
var Dialog = forwardRef30(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
|
|
3056
|
+
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles28();
|
|
2903
3057
|
const { testId: rootTestId, slot } = useTestId("dialog", testId);
|
|
2904
|
-
const surfaceRef =
|
|
3058
|
+
const surfaceRef = useRef8(null);
|
|
2905
3059
|
const setSurfaceRef = (node) => {
|
|
2906
3060
|
surfaceRef.current = node;
|
|
2907
3061
|
assignRef2(ref, node);
|
|
2908
3062
|
};
|
|
2909
|
-
const previouslyFocused =
|
|
2910
|
-
const generatedId =
|
|
3063
|
+
const previouslyFocused = useRef8(null);
|
|
3064
|
+
const generatedId = useId6();
|
|
2911
3065
|
const titleId = title != null ? generatedId : void 0;
|
|
2912
3066
|
useEffect7(() => {
|
|
2913
3067
|
if (!open) return;
|
|
@@ -2961,7 +3115,7 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2961
3115
|
};
|
|
2962
3116
|
return createPortal(
|
|
2963
3117
|
// biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
|
|
2964
|
-
/* @__PURE__ */
|
|
3118
|
+
/* @__PURE__ */ jsx43("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ jsxs27(
|
|
2965
3119
|
"div",
|
|
2966
3120
|
{
|
|
2967
3121
|
ref: setSurfaceRef,
|
|
@@ -2974,9 +3128,9 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2974
3128
|
onClick: stop,
|
|
2975
3129
|
onKeyDown: onSurfaceKeyDown,
|
|
2976
3130
|
children: [
|
|
2977
|
-
title != null && /* @__PURE__ */
|
|
2978
|
-
children != null && /* @__PURE__ */
|
|
2979
|
-
actions3 != null && /* @__PURE__ */
|
|
3131
|
+
title != null && /* @__PURE__ */ jsx43(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
|
|
3132
|
+
children != null && /* @__PURE__ */ jsx43("div", { className: body3, children: /* @__PURE__ */ jsx43(Typography, { variant: "body", color: "muted", children }) }),
|
|
3133
|
+
actions3 != null && /* @__PURE__ */ jsx43("div", { className: actionsClass, children: actions3 })
|
|
2980
3134
|
]
|
|
2981
3135
|
}
|
|
2982
3136
|
) }),
|
|
@@ -2985,23 +3139,28 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2985
3139
|
});
|
|
2986
3140
|
|
|
2987
3141
|
// src/components/snackbar/index.tsx
|
|
2988
|
-
import {
|
|
3142
|
+
import {
|
|
3143
|
+
forwardRef as forwardRef31,
|
|
3144
|
+
useCallback as useCallback2,
|
|
3145
|
+
useEffect as useEffect8,
|
|
3146
|
+
useRef as useRef9
|
|
3147
|
+
} from "react";
|
|
2989
3148
|
import { createPortal as createPortal2 } from "react-dom";
|
|
2990
3149
|
|
|
2991
3150
|
// src/components/snackbar/use-styles.ts
|
|
2992
|
-
import { useMemo as
|
|
3151
|
+
import { useMemo as useMemo33 } from "react";
|
|
2993
3152
|
|
|
2994
3153
|
// src/components/snackbar/use-styles.css.ts
|
|
2995
3154
|
var closeBtn = "use-styles_closeBtn__ihzsep2";
|
|
2996
3155
|
var message = "use-styles_message__ihzsep1";
|
|
2997
|
-
var
|
|
3156
|
+
var root21 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
|
|
2998
3157
|
|
|
2999
3158
|
// src/components/snackbar/use-styles.ts
|
|
3000
|
-
function
|
|
3159
|
+
function useStyles29() {
|
|
3001
3160
|
const { themeClass } = useTheme();
|
|
3002
|
-
return
|
|
3161
|
+
return useMemo33(
|
|
3003
3162
|
() => ({
|
|
3004
|
-
root: [themeClass,
|
|
3163
|
+
root: [themeClass, root21].filter(Boolean).join(" "),
|
|
3005
3164
|
message,
|
|
3006
3165
|
closeBtn
|
|
3007
3166
|
}),
|
|
@@ -3010,17 +3169,29 @@ function useStyles28() {
|
|
|
3010
3169
|
}
|
|
3011
3170
|
|
|
3012
3171
|
// src/components/snackbar/index.tsx
|
|
3013
|
-
import { jsx as
|
|
3172
|
+
import { jsx as jsx44, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
3014
3173
|
var DEFAULT_DURATION = 5e3;
|
|
3015
|
-
var Snackbar =
|
|
3016
|
-
|
|
3174
|
+
var Snackbar = forwardRef31(function Snackbar2({
|
|
3175
|
+
open,
|
|
3176
|
+
message: message2,
|
|
3177
|
+
action,
|
|
3178
|
+
onClose,
|
|
3179
|
+
duration = DEFAULT_DURATION,
|
|
3180
|
+
testId,
|
|
3181
|
+
onMouseEnter,
|
|
3182
|
+
onMouseLeave,
|
|
3183
|
+
onFocus,
|
|
3184
|
+
onBlur,
|
|
3185
|
+
...rest
|
|
3186
|
+
}, ref) {
|
|
3187
|
+
const { root: root25, message: messageClass, closeBtn: closeBtn2 } = useStyles29();
|
|
3017
3188
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
3018
|
-
const onCloseRef =
|
|
3189
|
+
const onCloseRef = useRef9(onClose);
|
|
3019
3190
|
useEffect8(() => {
|
|
3020
3191
|
onCloseRef.current = onClose;
|
|
3021
3192
|
}, [onClose]);
|
|
3022
|
-
const interactingRef =
|
|
3023
|
-
const timeoutRef =
|
|
3193
|
+
const interactingRef = useRef9({ hover: false, focus: false });
|
|
3194
|
+
const timeoutRef = useRef9();
|
|
3024
3195
|
const clearTimer = useCallback2(() => {
|
|
3025
3196
|
if (timeoutRef.current !== void 0) {
|
|
3026
3197
|
clearTimeout(timeoutRef.current);
|
|
@@ -3039,39 +3210,44 @@ var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action
|
|
|
3039
3210
|
scheduleTimer();
|
|
3040
3211
|
return clearTimer;
|
|
3041
3212
|
}, [scheduleTimer, clearTimer]);
|
|
3042
|
-
const handleMouseEnter = () => {
|
|
3213
|
+
const handleMouseEnter = (event) => {
|
|
3043
3214
|
interactingRef.current.hover = true;
|
|
3044
3215
|
clearTimer();
|
|
3216
|
+
onMouseEnter?.(event);
|
|
3045
3217
|
};
|
|
3046
|
-
const handleMouseLeave = () => {
|
|
3218
|
+
const handleMouseLeave = (event) => {
|
|
3047
3219
|
interactingRef.current.hover = false;
|
|
3048
3220
|
scheduleTimer();
|
|
3221
|
+
onMouseLeave?.(event);
|
|
3049
3222
|
};
|
|
3050
|
-
const handleFocus = () => {
|
|
3223
|
+
const handleFocus = (event) => {
|
|
3051
3224
|
interactingRef.current.focus = true;
|
|
3052
3225
|
clearTimer();
|
|
3226
|
+
onFocus?.(event);
|
|
3053
3227
|
};
|
|
3054
|
-
const handleBlur = () => {
|
|
3228
|
+
const handleBlur = (event) => {
|
|
3055
3229
|
interactingRef.current.focus = false;
|
|
3056
3230
|
scheduleTimer();
|
|
3231
|
+
onBlur?.(event);
|
|
3057
3232
|
};
|
|
3058
3233
|
if (!open || typeof document === "undefined") return null;
|
|
3059
3234
|
return createPortal2(
|
|
3060
|
-
/* @__PURE__ */
|
|
3235
|
+
/* @__PURE__ */ jsxs28(
|
|
3061
3236
|
"div",
|
|
3062
3237
|
{
|
|
3063
3238
|
ref,
|
|
3064
3239
|
role: "status",
|
|
3065
|
-
className: root24,
|
|
3066
3240
|
"data-testid": dataTestId,
|
|
3067
3241
|
onMouseEnter: handleMouseEnter,
|
|
3068
3242
|
onMouseLeave: handleMouseLeave,
|
|
3069
3243
|
onFocus: handleFocus,
|
|
3070
3244
|
onBlur: handleBlur,
|
|
3245
|
+
...rest,
|
|
3246
|
+
className: root25,
|
|
3071
3247
|
children: [
|
|
3072
|
-
/* @__PURE__ */
|
|
3248
|
+
/* @__PURE__ */ jsx44("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
|
|
3073
3249
|
action,
|
|
3074
|
-
onClose && /* @__PURE__ */
|
|
3250
|
+
onClose && /* @__PURE__ */ jsx44(
|
|
3075
3251
|
"button",
|
|
3076
3252
|
{
|
|
3077
3253
|
type: "button",
|
|
@@ -3079,7 +3255,7 @@ var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action
|
|
|
3079
3255
|
className: closeBtn2,
|
|
3080
3256
|
"data-testid": slot("close"),
|
|
3081
3257
|
onClick: onClose,
|
|
3082
|
-
children: /* @__PURE__ */
|
|
3258
|
+
children: /* @__PURE__ */ jsx44(XIcon, { size: 18 })
|
|
3083
3259
|
}
|
|
3084
3260
|
)
|
|
3085
3261
|
]
|
|
@@ -3090,27 +3266,27 @@ var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action
|
|
|
3090
3266
|
});
|
|
3091
3267
|
|
|
3092
3268
|
// src/components/table/index.tsx
|
|
3093
|
-
import { forwardRef as
|
|
3269
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
3094
3270
|
|
|
3095
3271
|
// src/components/table/use-styles.ts
|
|
3096
|
-
import { useMemo as
|
|
3272
|
+
import { useMemo as useMemo34 } from "react";
|
|
3097
3273
|
|
|
3098
3274
|
// src/components/table/use-styles.css.ts
|
|
3099
3275
|
var alignRight = "use-styles_alignRight__1n2cz6i3";
|
|
3100
3276
|
var caption = "use-styles_caption__1n2cz6i4";
|
|
3101
|
-
var
|
|
3277
|
+
var root22 = "use-styles_root__1n2cz6i0";
|
|
3102
3278
|
var td = "use-styles_td__1n2cz6i2";
|
|
3103
3279
|
var th = "use-styles_th__1n2cz6i1";
|
|
3104
3280
|
|
|
3105
3281
|
// src/components/table/use-styles.ts
|
|
3106
|
-
function
|
|
3282
|
+
function useStyles30({ className }) {
|
|
3107
3283
|
const { themeClass } = useTheme();
|
|
3108
|
-
const
|
|
3109
|
-
() => [themeClass,
|
|
3284
|
+
const root25 = useMemo34(
|
|
3285
|
+
() => [themeClass, root22, className].filter(Boolean).join(" "),
|
|
3110
3286
|
[themeClass, className]
|
|
3111
3287
|
);
|
|
3112
3288
|
return {
|
|
3113
|
-
root:
|
|
3289
|
+
root: root25,
|
|
3114
3290
|
th,
|
|
3115
3291
|
td,
|
|
3116
3292
|
alignRight,
|
|
@@ -3119,87 +3295,87 @@ function useStyles29({ className }) {
|
|
|
3119
3295
|
}
|
|
3120
3296
|
|
|
3121
3297
|
// src/components/table/index.tsx
|
|
3122
|
-
import { jsx as
|
|
3298
|
+
import { jsx as jsx45, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
3123
3299
|
function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
|
|
3124
|
-
const { root:
|
|
3300
|
+
const { root: root25, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles30({ className });
|
|
3125
3301
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3126
3302
|
const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
|
|
3127
3303
|
const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
|
|
3128
|
-
return /* @__PURE__ */
|
|
3129
|
-
caption2 != null && /* @__PURE__ */
|
|
3130
|
-
/* @__PURE__ */
|
|
3131
|
-
/* @__PURE__ */
|
|
3304
|
+
return /* @__PURE__ */ jsxs29("table", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
3305
|
+
caption2 != null && /* @__PURE__ */ jsx45("caption", { className: captionClass, children: caption2 }),
|
|
3306
|
+
/* @__PURE__ */ jsx45("thead", { children: /* @__PURE__ */ jsx45("tr", { children: columns.map((column) => /* @__PURE__ */ jsx45("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
|
|
3307
|
+
/* @__PURE__ */ jsx45("tbody", { children: rows.map((row, index) => /* @__PURE__ */ jsx45("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ jsx45("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
|
|
3132
3308
|
] });
|
|
3133
3309
|
}
|
|
3134
|
-
var TableForwarded =
|
|
3310
|
+
var TableForwarded = forwardRef32(TableInner);
|
|
3135
3311
|
TableForwarded.displayName = "Table";
|
|
3136
3312
|
var Table = TableForwarded;
|
|
3137
3313
|
|
|
3138
3314
|
// src/components/app-bar/index.tsx
|
|
3139
|
-
import { forwardRef as
|
|
3315
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
3140
3316
|
|
|
3141
3317
|
// src/components/app-bar/use-styles.ts
|
|
3142
|
-
import { useMemo as
|
|
3318
|
+
import { useMemo as useMemo35 } from "react";
|
|
3143
3319
|
|
|
3144
3320
|
// src/components/app-bar/use-styles.css.ts
|
|
3145
3321
|
var actions2 = "use-styles_actions__1h133nh2";
|
|
3146
3322
|
var brand = "use-styles_brand__1h133nh1";
|
|
3147
|
-
var
|
|
3323
|
+
var root23 = "use-styles_root__1h133nh0";
|
|
3148
3324
|
|
|
3149
3325
|
// src/components/app-bar/use-styles.ts
|
|
3150
|
-
function
|
|
3326
|
+
function useStyles31({ className }) {
|
|
3151
3327
|
const { themeClass } = useTheme();
|
|
3152
|
-
const
|
|
3153
|
-
() => [themeClass,
|
|
3328
|
+
const root25 = useMemo35(
|
|
3329
|
+
() => [themeClass, root23, className].filter(Boolean).join(" "),
|
|
3154
3330
|
[themeClass, className]
|
|
3155
3331
|
);
|
|
3156
|
-
return { root:
|
|
3332
|
+
return { root: root25, brand, actions: actions2 };
|
|
3157
3333
|
}
|
|
3158
3334
|
|
|
3159
3335
|
// src/components/app-bar/index.tsx
|
|
3160
|
-
import { jsx as
|
|
3161
|
-
var AppBar =
|
|
3162
|
-
const styles =
|
|
3336
|
+
import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
3337
|
+
var AppBar = forwardRef33(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
|
|
3338
|
+
const styles = useStyles31({ className });
|
|
3163
3339
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
3164
|
-
return /* @__PURE__ */
|
|
3165
|
-
brand2 !== void 0 ? /* @__PURE__ */
|
|
3340
|
+
return /* @__PURE__ */ jsxs30("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
3341
|
+
brand2 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
|
|
3166
3342
|
children,
|
|
3167
|
-
actions3 !== void 0 ? /* @__PURE__ */
|
|
3343
|
+
actions3 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
|
|
3168
3344
|
] });
|
|
3169
3345
|
});
|
|
3170
3346
|
|
|
3171
3347
|
// src/components/list-item/index.tsx
|
|
3172
|
-
import { forwardRef as
|
|
3348
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
3173
3349
|
|
|
3174
3350
|
// src/components/list-item/use-styles.ts
|
|
3175
|
-
import { useMemo as
|
|
3351
|
+
import { useMemo as useMemo36 } from "react";
|
|
3176
3352
|
|
|
3177
3353
|
// src/components/list-item/use-styles.css.ts
|
|
3178
3354
|
var content3 = "use-styles_content__kbreq13";
|
|
3179
3355
|
var leading = "use-styles_leading__kbreq12";
|
|
3180
|
-
var
|
|
3356
|
+
var root24 = "use-styles_root__kbreq10";
|
|
3181
3357
|
var selected3 = "use-styles_selected__kbreq11";
|
|
3182
3358
|
var trailing = "use-styles_trailing__kbreq14";
|
|
3183
3359
|
|
|
3184
3360
|
// src/components/list-item/use-styles.ts
|
|
3185
|
-
function
|
|
3361
|
+
function useStyles32({
|
|
3186
3362
|
selected: selected4,
|
|
3187
3363
|
className
|
|
3188
3364
|
}) {
|
|
3189
3365
|
const { themeClass } = useTheme();
|
|
3190
|
-
const
|
|
3191
|
-
() => [themeClass,
|
|
3366
|
+
const root25 = useMemo36(
|
|
3367
|
+
() => [themeClass, root24, selected4 && selected3, className].filter(Boolean).join(" "),
|
|
3192
3368
|
[themeClass, selected4, className]
|
|
3193
3369
|
);
|
|
3194
|
-
return { root:
|
|
3370
|
+
return { root: root25, leading, content: content3, trailing };
|
|
3195
3371
|
}
|
|
3196
3372
|
|
|
3197
3373
|
// src/components/list-item/index.tsx
|
|
3198
|
-
import { jsx as
|
|
3199
|
-
var ListItem =
|
|
3200
|
-
const styles =
|
|
3374
|
+
import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
3375
|
+
var ListItem = forwardRef34(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
|
|
3376
|
+
const styles = useStyles32({ selected: selected4, className });
|
|
3201
3377
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3202
|
-
return /* @__PURE__ */
|
|
3378
|
+
return /* @__PURE__ */ jsxs31(
|
|
3203
3379
|
"div",
|
|
3204
3380
|
{
|
|
3205
3381
|
ref,
|
|
@@ -3208,18 +3384,18 @@ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: tr
|
|
|
3208
3384
|
"data-state": states({ selected: selected4 }),
|
|
3209
3385
|
...rest,
|
|
3210
3386
|
children: [
|
|
3211
|
-
leading2 != null && /* @__PURE__ */
|
|
3212
|
-
/* @__PURE__ */
|
|
3213
|
-
trailing2 != null && /* @__PURE__ */
|
|
3387
|
+
leading2 != null && /* @__PURE__ */ jsx47("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
|
|
3388
|
+
/* @__PURE__ */ jsx47("span", { className: styles.content, "data-testid": slot("content"), children }),
|
|
3389
|
+
trailing2 != null && /* @__PURE__ */ jsx47("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
|
|
3214
3390
|
]
|
|
3215
3391
|
}
|
|
3216
3392
|
);
|
|
3217
3393
|
});
|
|
3218
3394
|
|
|
3219
3395
|
// src/components/icons/alert-circle/index.tsx
|
|
3220
|
-
import { jsx as
|
|
3396
|
+
import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
3221
3397
|
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3222
|
-
return /* @__PURE__ */
|
|
3398
|
+
return /* @__PURE__ */ jsxs32(
|
|
3223
3399
|
"svg",
|
|
3224
3400
|
{
|
|
3225
3401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3234,18 +3410,18 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3234
3410
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3235
3411
|
...rest,
|
|
3236
3412
|
children: [
|
|
3237
|
-
/* @__PURE__ */
|
|
3238
|
-
/* @__PURE__ */
|
|
3239
|
-
/* @__PURE__ */
|
|
3413
|
+
/* @__PURE__ */ jsx48("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3414
|
+
/* @__PURE__ */ jsx48("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
|
|
3415
|
+
/* @__PURE__ */ jsx48("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
|
|
3240
3416
|
]
|
|
3241
3417
|
}
|
|
3242
3418
|
);
|
|
3243
3419
|
}
|
|
3244
3420
|
|
|
3245
3421
|
// src/components/icons/archive/index.tsx
|
|
3246
|
-
import { jsx as
|
|
3422
|
+
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
3247
3423
|
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3248
|
-
return /* @__PURE__ */
|
|
3424
|
+
return /* @__PURE__ */ jsxs33(
|
|
3249
3425
|
"svg",
|
|
3250
3426
|
{
|
|
3251
3427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3260,18 +3436,18 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3260
3436
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3261
3437
|
...rest,
|
|
3262
3438
|
children: [
|
|
3263
|
-
/* @__PURE__ */
|
|
3264
|
-
/* @__PURE__ */
|
|
3265
|
-
/* @__PURE__ */
|
|
3439
|
+
/* @__PURE__ */ jsx49("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
3440
|
+
/* @__PURE__ */ jsx49("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
|
|
3441
|
+
/* @__PURE__ */ jsx49("path", { d: "M10 12h4" })
|
|
3266
3442
|
]
|
|
3267
3443
|
}
|
|
3268
3444
|
);
|
|
3269
3445
|
}
|
|
3270
3446
|
|
|
3271
3447
|
// src/components/icons/arrow-down/index.tsx
|
|
3272
|
-
import { jsx as
|
|
3448
|
+
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
3273
3449
|
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3274
|
-
return /* @__PURE__ */
|
|
3450
|
+
return /* @__PURE__ */ jsxs34(
|
|
3275
3451
|
"svg",
|
|
3276
3452
|
{
|
|
3277
3453
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3286,17 +3462,17 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3286
3462
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3287
3463
|
...rest,
|
|
3288
3464
|
children: [
|
|
3289
|
-
/* @__PURE__ */
|
|
3290
|
-
/* @__PURE__ */
|
|
3465
|
+
/* @__PURE__ */ jsx50("path", { d: "M12 5v14" }),
|
|
3466
|
+
/* @__PURE__ */ jsx50("path", { d: "m19 12-7 7-7-7" })
|
|
3291
3467
|
]
|
|
3292
3468
|
}
|
|
3293
3469
|
);
|
|
3294
3470
|
}
|
|
3295
3471
|
|
|
3296
3472
|
// src/components/icons/arrow-left/index.tsx
|
|
3297
|
-
import { jsx as
|
|
3473
|
+
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
3298
3474
|
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3299
|
-
return /* @__PURE__ */
|
|
3475
|
+
return /* @__PURE__ */ jsxs35(
|
|
3300
3476
|
"svg",
|
|
3301
3477
|
{
|
|
3302
3478
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3311,17 +3487,17 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3311
3487
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3312
3488
|
...rest,
|
|
3313
3489
|
children: [
|
|
3314
|
-
/* @__PURE__ */
|
|
3315
|
-
/* @__PURE__ */
|
|
3490
|
+
/* @__PURE__ */ jsx51("path", { d: "m12 19-7-7 7-7" }),
|
|
3491
|
+
/* @__PURE__ */ jsx51("path", { d: "M19 12H5" })
|
|
3316
3492
|
]
|
|
3317
3493
|
}
|
|
3318
3494
|
);
|
|
3319
3495
|
}
|
|
3320
3496
|
|
|
3321
3497
|
// src/components/icons/arrow-right/index.tsx
|
|
3322
|
-
import { jsx as
|
|
3498
|
+
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
3323
3499
|
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3324
|
-
return /* @__PURE__ */
|
|
3500
|
+
return /* @__PURE__ */ jsxs36(
|
|
3325
3501
|
"svg",
|
|
3326
3502
|
{
|
|
3327
3503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3336,17 +3512,17 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3336
3512
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3337
3513
|
...rest,
|
|
3338
3514
|
children: [
|
|
3339
|
-
/* @__PURE__ */
|
|
3340
|
-
/* @__PURE__ */
|
|
3515
|
+
/* @__PURE__ */ jsx52("path", { d: "M5 12h14" }),
|
|
3516
|
+
/* @__PURE__ */ jsx52("path", { d: "m12 5 7 7-7 7" })
|
|
3341
3517
|
]
|
|
3342
3518
|
}
|
|
3343
3519
|
);
|
|
3344
3520
|
}
|
|
3345
3521
|
|
|
3346
3522
|
// src/components/icons/arrow-up/index.tsx
|
|
3347
|
-
import { jsx as
|
|
3523
|
+
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
3348
3524
|
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3349
|
-
return /* @__PURE__ */
|
|
3525
|
+
return /* @__PURE__ */ jsxs37(
|
|
3350
3526
|
"svg",
|
|
3351
3527
|
{
|
|
3352
3528
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3361,17 +3537,17 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3361
3537
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3362
3538
|
...rest,
|
|
3363
3539
|
children: [
|
|
3364
|
-
/* @__PURE__ */
|
|
3365
|
-
/* @__PURE__ */
|
|
3540
|
+
/* @__PURE__ */ jsx53("path", { d: "m5 12 7-7 7 7" }),
|
|
3541
|
+
/* @__PURE__ */ jsx53("path", { d: "M12 19V5" })
|
|
3366
3542
|
]
|
|
3367
3543
|
}
|
|
3368
3544
|
);
|
|
3369
3545
|
}
|
|
3370
3546
|
|
|
3371
3547
|
// src/components/icons/at-sign/index.tsx
|
|
3372
|
-
import { jsx as
|
|
3548
|
+
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3373
3549
|
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3374
|
-
return /* @__PURE__ */
|
|
3550
|
+
return /* @__PURE__ */ jsxs38(
|
|
3375
3551
|
"svg",
|
|
3376
3552
|
{
|
|
3377
3553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3386,17 +3562,17 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3386
3562
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3387
3563
|
...rest,
|
|
3388
3564
|
children: [
|
|
3389
|
-
/* @__PURE__ */
|
|
3390
|
-
/* @__PURE__ */
|
|
3565
|
+
/* @__PURE__ */ jsx54("circle", { cx: "12", cy: "12", r: "4" }),
|
|
3566
|
+
/* @__PURE__ */ jsx54("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
|
|
3391
3567
|
]
|
|
3392
3568
|
}
|
|
3393
3569
|
);
|
|
3394
3570
|
}
|
|
3395
3571
|
|
|
3396
3572
|
// src/components/icons/bell/index.tsx
|
|
3397
|
-
import { jsx as
|
|
3573
|
+
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3398
3574
|
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3399
|
-
return /* @__PURE__ */
|
|
3575
|
+
return /* @__PURE__ */ jsxs39(
|
|
3400
3576
|
"svg",
|
|
3401
3577
|
{
|
|
3402
3578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3411,17 +3587,17 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3411
3587
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3412
3588
|
...rest,
|
|
3413
3589
|
children: [
|
|
3414
|
-
/* @__PURE__ */
|
|
3415
|
-
/* @__PURE__ */
|
|
3590
|
+
/* @__PURE__ */ jsx55("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
3591
|
+
/* @__PURE__ */ jsx55("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
|
|
3416
3592
|
]
|
|
3417
3593
|
}
|
|
3418
3594
|
);
|
|
3419
3595
|
}
|
|
3420
3596
|
|
|
3421
3597
|
// src/components/icons/bell-off/index.tsx
|
|
3422
|
-
import { jsx as
|
|
3598
|
+
import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3423
3599
|
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3424
|
-
return /* @__PURE__ */
|
|
3600
|
+
return /* @__PURE__ */ jsxs40(
|
|
3425
3601
|
"svg",
|
|
3426
3602
|
{
|
|
3427
3603
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3436,19 +3612,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3436
3612
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3437
3613
|
...rest,
|
|
3438
3614
|
children: [
|
|
3439
|
-
/* @__PURE__ */
|
|
3440
|
-
/* @__PURE__ */
|
|
3441
|
-
/* @__PURE__ */
|
|
3442
|
-
/* @__PURE__ */
|
|
3615
|
+
/* @__PURE__ */ jsx56("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
3616
|
+
/* @__PURE__ */ jsx56("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
|
|
3617
|
+
/* @__PURE__ */ jsx56("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
|
|
3618
|
+
/* @__PURE__ */ jsx56("path", { d: "m2 2 20 20" })
|
|
3443
3619
|
]
|
|
3444
3620
|
}
|
|
3445
3621
|
);
|
|
3446
3622
|
}
|
|
3447
3623
|
|
|
3448
3624
|
// src/components/icons/bookmark/index.tsx
|
|
3449
|
-
import { jsx as
|
|
3625
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
3450
3626
|
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3451
|
-
return /* @__PURE__ */
|
|
3627
|
+
return /* @__PURE__ */ jsx57(
|
|
3452
3628
|
"svg",
|
|
3453
3629
|
{
|
|
3454
3630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3462,15 +3638,15 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3462
3638
|
strokeLinejoin: "round",
|
|
3463
3639
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3464
3640
|
...rest,
|
|
3465
|
-
children: /* @__PURE__ */
|
|
3641
|
+
children: /* @__PURE__ */ jsx57("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3466
3642
|
}
|
|
3467
3643
|
);
|
|
3468
3644
|
}
|
|
3469
3645
|
|
|
3470
3646
|
// src/components/icons/calendar/index.tsx
|
|
3471
|
-
import { jsx as
|
|
3647
|
+
import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3472
3648
|
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3473
|
-
return /* @__PURE__ */
|
|
3649
|
+
return /* @__PURE__ */ jsxs41(
|
|
3474
3650
|
"svg",
|
|
3475
3651
|
{
|
|
3476
3652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3485,19 +3661,19 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3485
3661
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3486
3662
|
...rest,
|
|
3487
3663
|
children: [
|
|
3488
|
-
/* @__PURE__ */
|
|
3489
|
-
/* @__PURE__ */
|
|
3490
|
-
/* @__PURE__ */
|
|
3491
|
-
/* @__PURE__ */
|
|
3664
|
+
/* @__PURE__ */ jsx58("path", { d: "M8 2v4" }),
|
|
3665
|
+
/* @__PURE__ */ jsx58("path", { d: "M16 2v4" }),
|
|
3666
|
+
/* @__PURE__ */ jsx58("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
|
|
3667
|
+
/* @__PURE__ */ jsx58("path", { d: "M3 10h18" })
|
|
3492
3668
|
]
|
|
3493
3669
|
}
|
|
3494
3670
|
);
|
|
3495
3671
|
}
|
|
3496
3672
|
|
|
3497
3673
|
// src/components/icons/camera/index.tsx
|
|
3498
|
-
import { jsx as
|
|
3674
|
+
import { jsx as jsx59, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3499
3675
|
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3500
|
-
return /* @__PURE__ */
|
|
3676
|
+
return /* @__PURE__ */ jsxs42(
|
|
3501
3677
|
"svg",
|
|
3502
3678
|
{
|
|
3503
3679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3512,17 +3688,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3512
3688
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3513
3689
|
...rest,
|
|
3514
3690
|
children: [
|
|
3515
|
-
/* @__PURE__ */
|
|
3516
|
-
/* @__PURE__ */
|
|
3691
|
+
/* @__PURE__ */ jsx59("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
|
|
3692
|
+
/* @__PURE__ */ jsx59("circle", { cx: "12", cy: "13", r: "3" })
|
|
3517
3693
|
]
|
|
3518
3694
|
}
|
|
3519
3695
|
);
|
|
3520
3696
|
}
|
|
3521
3697
|
|
|
3522
3698
|
// src/components/icons/chevron-up/index.tsx
|
|
3523
|
-
import { jsx as
|
|
3699
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
3524
3700
|
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3525
|
-
return /* @__PURE__ */
|
|
3701
|
+
return /* @__PURE__ */ jsx60(
|
|
3526
3702
|
"svg",
|
|
3527
3703
|
{
|
|
3528
3704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3536,15 +3712,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3536
3712
|
strokeLinejoin: "round",
|
|
3537
3713
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3538
3714
|
...rest,
|
|
3539
|
-
children: /* @__PURE__ */
|
|
3715
|
+
children: /* @__PURE__ */ jsx60("path", { d: "m18 15-6-6-6 6" })
|
|
3540
3716
|
}
|
|
3541
3717
|
);
|
|
3542
3718
|
}
|
|
3543
3719
|
|
|
3544
3720
|
// src/components/icons/chevrons-left/index.tsx
|
|
3545
|
-
import { jsx as
|
|
3721
|
+
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3546
3722
|
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3547
|
-
return /* @__PURE__ */
|
|
3723
|
+
return /* @__PURE__ */ jsxs43(
|
|
3548
3724
|
"svg",
|
|
3549
3725
|
{
|
|
3550
3726
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3559,17 +3735,17 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3559
3735
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3560
3736
|
...rest,
|
|
3561
3737
|
children: [
|
|
3562
|
-
/* @__PURE__ */
|
|
3563
|
-
/* @__PURE__ */
|
|
3738
|
+
/* @__PURE__ */ jsx61("path", { d: "m11 17-5-5 5-5" }),
|
|
3739
|
+
/* @__PURE__ */ jsx61("path", { d: "m18 17-5-5 5-5" })
|
|
3564
3740
|
]
|
|
3565
3741
|
}
|
|
3566
3742
|
);
|
|
3567
3743
|
}
|
|
3568
3744
|
|
|
3569
3745
|
// src/components/icons/chevrons-right/index.tsx
|
|
3570
|
-
import { jsx as
|
|
3746
|
+
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3571
3747
|
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3572
|
-
return /* @__PURE__ */
|
|
3748
|
+
return /* @__PURE__ */ jsxs44(
|
|
3573
3749
|
"svg",
|
|
3574
3750
|
{
|
|
3575
3751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3584,17 +3760,17 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
3584
3760
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3585
3761
|
...rest,
|
|
3586
3762
|
children: [
|
|
3587
|
-
/* @__PURE__ */
|
|
3588
|
-
/* @__PURE__ */
|
|
3763
|
+
/* @__PURE__ */ jsx62("path", { d: "m6 17 5-5-5-5" }),
|
|
3764
|
+
/* @__PURE__ */ jsx62("path", { d: "m13 17 5-5-5-5" })
|
|
3589
3765
|
]
|
|
3590
3766
|
}
|
|
3591
3767
|
);
|
|
3592
3768
|
}
|
|
3593
3769
|
|
|
3594
3770
|
// src/components/icons/clipboard/index.tsx
|
|
3595
|
-
import { jsx as
|
|
3771
|
+
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3596
3772
|
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3597
|
-
return /* @__PURE__ */
|
|
3773
|
+
return /* @__PURE__ */ jsxs45(
|
|
3598
3774
|
"svg",
|
|
3599
3775
|
{
|
|
3600
3776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3609,17 +3785,17 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3609
3785
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3610
3786
|
...rest,
|
|
3611
3787
|
children: [
|
|
3612
|
-
/* @__PURE__ */
|
|
3613
|
-
/* @__PURE__ */
|
|
3788
|
+
/* @__PURE__ */ jsx63("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
3789
|
+
/* @__PURE__ */ jsx63("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
|
|
3614
3790
|
]
|
|
3615
3791
|
}
|
|
3616
3792
|
);
|
|
3617
3793
|
}
|
|
3618
3794
|
|
|
3619
3795
|
// src/components/icons/clock/index.tsx
|
|
3620
|
-
import { jsx as
|
|
3796
|
+
import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3621
3797
|
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3622
|
-
return /* @__PURE__ */
|
|
3798
|
+
return /* @__PURE__ */ jsxs46(
|
|
3623
3799
|
"svg",
|
|
3624
3800
|
{
|
|
3625
3801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3634,17 +3810,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3634
3810
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3635
3811
|
...rest,
|
|
3636
3812
|
children: [
|
|
3637
|
-
/* @__PURE__ */
|
|
3638
|
-
/* @__PURE__ */
|
|
3813
|
+
/* @__PURE__ */ jsx64("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3814
|
+
/* @__PURE__ */ jsx64("polyline", { points: "12 6 12 12 16 14" })
|
|
3639
3815
|
]
|
|
3640
3816
|
}
|
|
3641
3817
|
);
|
|
3642
3818
|
}
|
|
3643
3819
|
|
|
3644
3820
|
// src/components/icons/cloud/index.tsx
|
|
3645
|
-
import { jsx as
|
|
3821
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
3646
3822
|
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3647
|
-
return /* @__PURE__ */
|
|
3823
|
+
return /* @__PURE__ */ jsx65(
|
|
3648
3824
|
"svg",
|
|
3649
3825
|
{
|
|
3650
3826
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3658,15 +3834,15 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3658
3834
|
strokeLinejoin: "round",
|
|
3659
3835
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3660
3836
|
...rest,
|
|
3661
|
-
children: /* @__PURE__ */
|
|
3837
|
+
children: /* @__PURE__ */ jsx65("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3662
3838
|
}
|
|
3663
3839
|
);
|
|
3664
3840
|
}
|
|
3665
3841
|
|
|
3666
3842
|
// src/components/icons/copy/index.tsx
|
|
3667
|
-
import { jsx as
|
|
3843
|
+
import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3668
3844
|
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3669
|
-
return /* @__PURE__ */
|
|
3845
|
+
return /* @__PURE__ */ jsxs47(
|
|
3670
3846
|
"svg",
|
|
3671
3847
|
{
|
|
3672
3848
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3681,17 +3857,17 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3681
3857
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3682
3858
|
...rest,
|
|
3683
3859
|
children: [
|
|
3684
|
-
/* @__PURE__ */
|
|
3685
|
-
/* @__PURE__ */
|
|
3860
|
+
/* @__PURE__ */ jsx66("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
3861
|
+
/* @__PURE__ */ jsx66("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
3686
3862
|
]
|
|
3687
3863
|
}
|
|
3688
3864
|
);
|
|
3689
3865
|
}
|
|
3690
3866
|
|
|
3691
3867
|
// src/components/icons/corner-down-right/index.tsx
|
|
3692
|
-
import { jsx as
|
|
3868
|
+
import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3693
3869
|
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3694
|
-
return /* @__PURE__ */
|
|
3870
|
+
return /* @__PURE__ */ jsxs48(
|
|
3695
3871
|
"svg",
|
|
3696
3872
|
{
|
|
3697
3873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3706,17 +3882,17 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...r
|
|
|
3706
3882
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3707
3883
|
...rest,
|
|
3708
3884
|
children: [
|
|
3709
|
-
/* @__PURE__ */
|
|
3710
|
-
/* @__PURE__ */
|
|
3885
|
+
/* @__PURE__ */ jsx67("polyline", { points: "15 10 20 15 15 20" }),
|
|
3886
|
+
/* @__PURE__ */ jsx67("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
|
|
3711
3887
|
]
|
|
3712
3888
|
}
|
|
3713
3889
|
);
|
|
3714
3890
|
}
|
|
3715
3891
|
|
|
3716
3892
|
// src/components/icons/credit-card/index.tsx
|
|
3717
|
-
import { jsx as
|
|
3893
|
+
import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3718
3894
|
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3719
|
-
return /* @__PURE__ */
|
|
3895
|
+
return /* @__PURE__ */ jsxs49(
|
|
3720
3896
|
"svg",
|
|
3721
3897
|
{
|
|
3722
3898
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3731,17 +3907,17 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3731
3907
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3732
3908
|
...rest,
|
|
3733
3909
|
children: [
|
|
3734
|
-
/* @__PURE__ */
|
|
3735
|
-
/* @__PURE__ */
|
|
3910
|
+
/* @__PURE__ */ jsx68("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
3911
|
+
/* @__PURE__ */ jsx68("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
|
|
3736
3912
|
]
|
|
3737
3913
|
}
|
|
3738
3914
|
);
|
|
3739
3915
|
}
|
|
3740
3916
|
|
|
3741
3917
|
// src/components/icons/dollar-sign/index.tsx
|
|
3742
|
-
import { jsx as
|
|
3918
|
+
import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3743
3919
|
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3744
|
-
return /* @__PURE__ */
|
|
3920
|
+
return /* @__PURE__ */ jsxs50(
|
|
3745
3921
|
"svg",
|
|
3746
3922
|
{
|
|
3747
3923
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3756,17 +3932,17 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3756
3932
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3757
3933
|
...rest,
|
|
3758
3934
|
children: [
|
|
3759
|
-
/* @__PURE__ */
|
|
3760
|
-
/* @__PURE__ */
|
|
3935
|
+
/* @__PURE__ */ jsx69("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
3936
|
+
/* @__PURE__ */ jsx69("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
|
|
3761
3937
|
]
|
|
3762
3938
|
}
|
|
3763
3939
|
);
|
|
3764
3940
|
}
|
|
3765
3941
|
|
|
3766
3942
|
// src/components/icons/download/index.tsx
|
|
3767
|
-
import { jsx as
|
|
3943
|
+
import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3768
3944
|
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3769
|
-
return /* @__PURE__ */
|
|
3945
|
+
return /* @__PURE__ */ jsxs51(
|
|
3770
3946
|
"svg",
|
|
3771
3947
|
{
|
|
3772
3948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3781,18 +3957,18 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3781
3957
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3782
3958
|
...rest,
|
|
3783
3959
|
children: [
|
|
3784
|
-
/* @__PURE__ */
|
|
3785
|
-
/* @__PURE__ */
|
|
3786
|
-
/* @__PURE__ */
|
|
3960
|
+
/* @__PURE__ */ jsx70("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
3961
|
+
/* @__PURE__ */ jsx70("polyline", { points: "7 10 12 15 17 10" }),
|
|
3962
|
+
/* @__PURE__ */ jsx70("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
|
|
3787
3963
|
]
|
|
3788
3964
|
}
|
|
3789
3965
|
);
|
|
3790
3966
|
}
|
|
3791
3967
|
|
|
3792
3968
|
// src/components/icons/external-link/index.tsx
|
|
3793
|
-
import { jsx as
|
|
3969
|
+
import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3794
3970
|
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3795
|
-
return /* @__PURE__ */
|
|
3971
|
+
return /* @__PURE__ */ jsxs52(
|
|
3796
3972
|
"svg",
|
|
3797
3973
|
{
|
|
3798
3974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3807,18 +3983,18 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3807
3983
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3808
3984
|
...rest,
|
|
3809
3985
|
children: [
|
|
3810
|
-
/* @__PURE__ */
|
|
3811
|
-
/* @__PURE__ */
|
|
3812
|
-
/* @__PURE__ */
|
|
3986
|
+
/* @__PURE__ */ jsx71("path", { d: "M15 3h6v6" }),
|
|
3987
|
+
/* @__PURE__ */ jsx71("path", { d: "M10 14 21 3" }),
|
|
3988
|
+
/* @__PURE__ */ jsx71("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
3813
3989
|
]
|
|
3814
3990
|
}
|
|
3815
3991
|
);
|
|
3816
3992
|
}
|
|
3817
3993
|
|
|
3818
3994
|
// src/components/icons/file/index.tsx
|
|
3819
|
-
import { jsx as
|
|
3995
|
+
import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3820
3996
|
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3821
|
-
return /* @__PURE__ */
|
|
3997
|
+
return /* @__PURE__ */ jsxs53(
|
|
3822
3998
|
"svg",
|
|
3823
3999
|
{
|
|
3824
4000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3833,17 +4009,17 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3833
4009
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3834
4010
|
...rest,
|
|
3835
4011
|
children: [
|
|
3836
|
-
/* @__PURE__ */
|
|
3837
|
-
/* @__PURE__ */
|
|
4012
|
+
/* @__PURE__ */ jsx72("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
4013
|
+
/* @__PURE__ */ jsx72("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
|
|
3838
4014
|
]
|
|
3839
4015
|
}
|
|
3840
4016
|
);
|
|
3841
4017
|
}
|
|
3842
4018
|
|
|
3843
4019
|
// src/components/icons/file-text/index.tsx
|
|
3844
|
-
import { jsx as
|
|
4020
|
+
import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3845
4021
|
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3846
|
-
return /* @__PURE__ */
|
|
4022
|
+
return /* @__PURE__ */ jsxs54(
|
|
3847
4023
|
"svg",
|
|
3848
4024
|
{
|
|
3849
4025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3858,20 +4034,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3858
4034
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3859
4035
|
...rest,
|
|
3860
4036
|
children: [
|
|
3861
|
-
/* @__PURE__ */
|
|
3862
|
-
/* @__PURE__ */
|
|
3863
|
-
/* @__PURE__ */
|
|
3864
|
-
/* @__PURE__ */
|
|
3865
|
-
/* @__PURE__ */
|
|
4037
|
+
/* @__PURE__ */ jsx73("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
4038
|
+
/* @__PURE__ */ jsx73("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
4039
|
+
/* @__PURE__ */ jsx73("path", { d: "M16 13H8" }),
|
|
4040
|
+
/* @__PURE__ */ jsx73("path", { d: "M16 17H8" }),
|
|
4041
|
+
/* @__PURE__ */ jsx73("path", { d: "M10 9H8" })
|
|
3866
4042
|
]
|
|
3867
4043
|
}
|
|
3868
4044
|
);
|
|
3869
4045
|
}
|
|
3870
4046
|
|
|
3871
4047
|
// src/components/icons/filter/index.tsx
|
|
3872
|
-
import { jsx as
|
|
4048
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
3873
4049
|
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3874
|
-
return /* @__PURE__ */
|
|
4050
|
+
return /* @__PURE__ */ jsx74(
|
|
3875
4051
|
"svg",
|
|
3876
4052
|
{
|
|
3877
4053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3885,15 +4061,15 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3885
4061
|
strokeLinejoin: "round",
|
|
3886
4062
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3887
4063
|
...rest,
|
|
3888
|
-
children: /* @__PURE__ */
|
|
4064
|
+
children: /* @__PURE__ */ jsx74("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
3889
4065
|
}
|
|
3890
4066
|
);
|
|
3891
4067
|
}
|
|
3892
4068
|
|
|
3893
4069
|
// src/components/icons/fingerprint/index.tsx
|
|
3894
|
-
import { jsx as
|
|
4070
|
+
import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3895
4071
|
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3896
|
-
return /* @__PURE__ */
|
|
4072
|
+
return /* @__PURE__ */ jsxs55(
|
|
3897
4073
|
"svg",
|
|
3898
4074
|
{
|
|
3899
4075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3908,24 +4084,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3908
4084
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3909
4085
|
...rest,
|
|
3910
4086
|
children: [
|
|
3911
|
-
/* @__PURE__ */
|
|
3912
|
-
/* @__PURE__ */
|
|
3913
|
-
/* @__PURE__ */
|
|
3914
|
-
/* @__PURE__ */
|
|
3915
|
-
/* @__PURE__ */
|
|
3916
|
-
/* @__PURE__ */
|
|
3917
|
-
/* @__PURE__ */
|
|
3918
|
-
/* @__PURE__ */
|
|
3919
|
-
/* @__PURE__ */
|
|
4087
|
+
/* @__PURE__ */ jsx75("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
4088
|
+
/* @__PURE__ */ jsx75("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
|
|
4089
|
+
/* @__PURE__ */ jsx75("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
|
|
4090
|
+
/* @__PURE__ */ jsx75("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
|
|
4091
|
+
/* @__PURE__ */ jsx75("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
|
|
4092
|
+
/* @__PURE__ */ jsx75("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
|
|
4093
|
+
/* @__PURE__ */ jsx75("path", { d: "M2 16h.01" }),
|
|
4094
|
+
/* @__PURE__ */ jsx75("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
|
|
4095
|
+
/* @__PURE__ */ jsx75("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
|
|
3920
4096
|
]
|
|
3921
4097
|
}
|
|
3922
4098
|
);
|
|
3923
4099
|
}
|
|
3924
4100
|
|
|
3925
4101
|
// src/components/icons/folder/index.tsx
|
|
3926
|
-
import { jsx as
|
|
4102
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3927
4103
|
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3928
|
-
return /* @__PURE__ */
|
|
4104
|
+
return /* @__PURE__ */ jsx76(
|
|
3929
4105
|
"svg",
|
|
3930
4106
|
{
|
|
3931
4107
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3939,15 +4115,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3939
4115
|
strokeLinejoin: "round",
|
|
3940
4116
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3941
4117
|
...rest,
|
|
3942
|
-
children: /* @__PURE__ */
|
|
4118
|
+
children: /* @__PURE__ */ jsx76("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
|
|
3943
4119
|
}
|
|
3944
4120
|
);
|
|
3945
4121
|
}
|
|
3946
4122
|
|
|
3947
4123
|
// src/components/icons/folder-open/index.tsx
|
|
3948
|
-
import { jsx as
|
|
4124
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3949
4125
|
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3950
|
-
return /* @__PURE__ */
|
|
4126
|
+
return /* @__PURE__ */ jsx77(
|
|
3951
4127
|
"svg",
|
|
3952
4128
|
{
|
|
3953
4129
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3961,15 +4137,15 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3961
4137
|
strokeLinejoin: "round",
|
|
3962
4138
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3963
4139
|
...rest,
|
|
3964
|
-
children: /* @__PURE__ */
|
|
4140
|
+
children: /* @__PURE__ */ jsx77("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
|
|
3965
4141
|
}
|
|
3966
4142
|
);
|
|
3967
4143
|
}
|
|
3968
4144
|
|
|
3969
4145
|
// src/components/icons/gift/index.tsx
|
|
3970
|
-
import { jsx as
|
|
4146
|
+
import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3971
4147
|
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3972
|
-
return /* @__PURE__ */
|
|
4148
|
+
return /* @__PURE__ */ jsxs56(
|
|
3973
4149
|
"svg",
|
|
3974
4150
|
{
|
|
3975
4151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3984,19 +4160,19 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3984
4160
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3985
4161
|
...rest,
|
|
3986
4162
|
children: [
|
|
3987
|
-
/* @__PURE__ */
|
|
3988
|
-
/* @__PURE__ */
|
|
3989
|
-
/* @__PURE__ */
|
|
3990
|
-
/* @__PURE__ */
|
|
4163
|
+
/* @__PURE__ */ jsx78("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
4164
|
+
/* @__PURE__ */ jsx78("path", { d: "M12 8v13" }),
|
|
4165
|
+
/* @__PURE__ */ jsx78("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
|
|
4166
|
+
/* @__PURE__ */ jsx78("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
|
|
3991
4167
|
]
|
|
3992
4168
|
}
|
|
3993
4169
|
);
|
|
3994
4170
|
}
|
|
3995
4171
|
|
|
3996
4172
|
// src/components/icons/github/index.tsx
|
|
3997
|
-
import { jsx as
|
|
4173
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3998
4174
|
function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3999
|
-
return /* @__PURE__ */
|
|
4175
|
+
return /* @__PURE__ */ jsx79(
|
|
4000
4176
|
"svg",
|
|
4001
4177
|
{
|
|
4002
4178
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4010,15 +4186,15 @@ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4010
4186
|
strokeLinejoin: "round",
|
|
4011
4187
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4012
4188
|
...rest,
|
|
4013
|
-
children: /* @__PURE__ */
|
|
4189
|
+
children: /* @__PURE__ */ jsx79("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
|
|
4014
4190
|
}
|
|
4015
4191
|
);
|
|
4016
4192
|
}
|
|
4017
4193
|
|
|
4018
4194
|
// src/components/icons/globe/index.tsx
|
|
4019
|
-
import { jsx as
|
|
4195
|
+
import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
4020
4196
|
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4021
|
-
return /* @__PURE__ */
|
|
4197
|
+
return /* @__PURE__ */ jsxs57(
|
|
4022
4198
|
"svg",
|
|
4023
4199
|
{
|
|
4024
4200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4033,18 +4209,18 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4033
4209
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4034
4210
|
...rest,
|
|
4035
4211
|
children: [
|
|
4036
|
-
/* @__PURE__ */
|
|
4037
|
-
/* @__PURE__ */
|
|
4038
|
-
/* @__PURE__ */
|
|
4212
|
+
/* @__PURE__ */ jsx80("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4213
|
+
/* @__PURE__ */ jsx80("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4214
|
+
/* @__PURE__ */ jsx80("path", { d: "M2 12h20" })
|
|
4039
4215
|
]
|
|
4040
4216
|
}
|
|
4041
4217
|
);
|
|
4042
4218
|
}
|
|
4043
4219
|
|
|
4044
4220
|
// src/components/icons/grid/index.tsx
|
|
4045
|
-
import { jsx as
|
|
4221
|
+
import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
4046
4222
|
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4047
|
-
return /* @__PURE__ */
|
|
4223
|
+
return /* @__PURE__ */ jsxs58(
|
|
4048
4224
|
"svg",
|
|
4049
4225
|
{
|
|
4050
4226
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4059,20 +4235,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4059
4235
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4060
4236
|
...rest,
|
|
4061
4237
|
children: [
|
|
4062
|
-
/* @__PURE__ */
|
|
4063
|
-
/* @__PURE__ */
|
|
4064
|
-
/* @__PURE__ */
|
|
4065
|
-
/* @__PURE__ */
|
|
4066
|
-
/* @__PURE__ */
|
|
4238
|
+
/* @__PURE__ */ jsx81("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4239
|
+
/* @__PURE__ */ jsx81("path", { d: "M3 9h18" }),
|
|
4240
|
+
/* @__PURE__ */ jsx81("path", { d: "M3 15h18" }),
|
|
4241
|
+
/* @__PURE__ */ jsx81("path", { d: "M9 3v18" }),
|
|
4242
|
+
/* @__PURE__ */ jsx81("path", { d: "M15 3v18" })
|
|
4067
4243
|
]
|
|
4068
4244
|
}
|
|
4069
4245
|
);
|
|
4070
4246
|
}
|
|
4071
4247
|
|
|
4072
4248
|
// src/components/icons/heart/index.tsx
|
|
4073
|
-
import { jsx as
|
|
4249
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
4074
4250
|
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4075
|
-
return /* @__PURE__ */
|
|
4251
|
+
return /* @__PURE__ */ jsx82(
|
|
4076
4252
|
"svg",
|
|
4077
4253
|
{
|
|
4078
4254
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4086,15 +4262,15 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4086
4262
|
strokeLinejoin: "round",
|
|
4087
4263
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4088
4264
|
...rest,
|
|
4089
|
-
children: /* @__PURE__ */
|
|
4265
|
+
children: /* @__PURE__ */ jsx82("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
4090
4266
|
}
|
|
4091
4267
|
);
|
|
4092
4268
|
}
|
|
4093
4269
|
|
|
4094
4270
|
// src/components/icons/help-circle/index.tsx
|
|
4095
|
-
import { jsx as
|
|
4271
|
+
import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
4096
4272
|
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4097
|
-
return /* @__PURE__ */
|
|
4273
|
+
return /* @__PURE__ */ jsxs59(
|
|
4098
4274
|
"svg",
|
|
4099
4275
|
{
|
|
4100
4276
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4109,18 +4285,18 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
4109
4285
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4110
4286
|
...rest,
|
|
4111
4287
|
children: [
|
|
4112
|
-
/* @__PURE__ */
|
|
4113
|
-
/* @__PURE__ */
|
|
4114
|
-
/* @__PURE__ */
|
|
4288
|
+
/* @__PURE__ */ jsx83("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4289
|
+
/* @__PURE__ */ jsx83("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4290
|
+
/* @__PURE__ */ jsx83("path", { d: "M12 17h.01" })
|
|
4115
4291
|
]
|
|
4116
4292
|
}
|
|
4117
4293
|
);
|
|
4118
4294
|
}
|
|
4119
4295
|
|
|
4120
4296
|
// src/components/icons/home/index.tsx
|
|
4121
|
-
import { jsx as
|
|
4297
|
+
import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
4122
4298
|
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4123
|
-
return /* @__PURE__ */
|
|
4299
|
+
return /* @__PURE__ */ jsxs60(
|
|
4124
4300
|
"svg",
|
|
4125
4301
|
{
|
|
4126
4302
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4135,17 +4311,17 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4135
4311
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4136
4312
|
...rest,
|
|
4137
4313
|
children: [
|
|
4138
|
-
/* @__PURE__ */
|
|
4139
|
-
/* @__PURE__ */
|
|
4314
|
+
/* @__PURE__ */ jsx84("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4315
|
+
/* @__PURE__ */ jsx84("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4140
4316
|
]
|
|
4141
4317
|
}
|
|
4142
4318
|
);
|
|
4143
4319
|
}
|
|
4144
4320
|
|
|
4145
4321
|
// src/components/icons/image/index.tsx
|
|
4146
|
-
import { jsx as
|
|
4322
|
+
import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
4147
4323
|
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4148
|
-
return /* @__PURE__ */
|
|
4324
|
+
return /* @__PURE__ */ jsxs61(
|
|
4149
4325
|
"svg",
|
|
4150
4326
|
{
|
|
4151
4327
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4160,18 +4336,18 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4160
4336
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4161
4337
|
...rest,
|
|
4162
4338
|
children: [
|
|
4163
|
-
/* @__PURE__ */
|
|
4164
|
-
/* @__PURE__ */
|
|
4165
|
-
/* @__PURE__ */
|
|
4339
|
+
/* @__PURE__ */ jsx85("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4340
|
+
/* @__PURE__ */ jsx85("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4341
|
+
/* @__PURE__ */ jsx85("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4166
4342
|
]
|
|
4167
4343
|
}
|
|
4168
4344
|
);
|
|
4169
4345
|
}
|
|
4170
4346
|
|
|
4171
4347
|
// src/components/icons/inbox/index.tsx
|
|
4172
|
-
import { jsx as
|
|
4348
|
+
import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4173
4349
|
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4174
|
-
return /* @__PURE__ */
|
|
4350
|
+
return /* @__PURE__ */ jsxs62(
|
|
4175
4351
|
"svg",
|
|
4176
4352
|
{
|
|
4177
4353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4186,17 +4362,17 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4186
4362
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4187
4363
|
...rest,
|
|
4188
4364
|
children: [
|
|
4189
|
-
/* @__PURE__ */
|
|
4190
|
-
/* @__PURE__ */
|
|
4365
|
+
/* @__PURE__ */ jsx86("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4366
|
+
/* @__PURE__ */ jsx86("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
4191
4367
|
]
|
|
4192
4368
|
}
|
|
4193
4369
|
);
|
|
4194
4370
|
}
|
|
4195
4371
|
|
|
4196
4372
|
// src/components/icons/key/index.tsx
|
|
4197
|
-
import { jsx as
|
|
4373
|
+
import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4198
4374
|
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4199
|
-
return /* @__PURE__ */
|
|
4375
|
+
return /* @__PURE__ */ jsxs63(
|
|
4200
4376
|
"svg",
|
|
4201
4377
|
{
|
|
4202
4378
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4211,18 +4387,18 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4211
4387
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4212
4388
|
...rest,
|
|
4213
4389
|
children: [
|
|
4214
|
-
/* @__PURE__ */
|
|
4215
|
-
/* @__PURE__ */
|
|
4216
|
-
/* @__PURE__ */
|
|
4390
|
+
/* @__PURE__ */ jsx87("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
|
|
4391
|
+
/* @__PURE__ */ jsx87("path", { d: "m21 2-9.6 9.6" }),
|
|
4392
|
+
/* @__PURE__ */ jsx87("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4217
4393
|
]
|
|
4218
4394
|
}
|
|
4219
4395
|
);
|
|
4220
4396
|
}
|
|
4221
4397
|
|
|
4222
4398
|
// src/components/icons/layout/index.tsx
|
|
4223
|
-
import { jsx as
|
|
4399
|
+
import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4224
4400
|
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4225
|
-
return /* @__PURE__ */
|
|
4401
|
+
return /* @__PURE__ */ jsxs64(
|
|
4226
4402
|
"svg",
|
|
4227
4403
|
{
|
|
4228
4404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4237,19 +4413,19 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4237
4413
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4238
4414
|
...rest,
|
|
4239
4415
|
children: [
|
|
4240
|
-
/* @__PURE__ */
|
|
4241
|
-
/* @__PURE__ */
|
|
4242
|
-
/* @__PURE__ */
|
|
4243
|
-
/* @__PURE__ */
|
|
4416
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4417
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4418
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4419
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4244
4420
|
]
|
|
4245
4421
|
}
|
|
4246
4422
|
);
|
|
4247
4423
|
}
|
|
4248
4424
|
|
|
4249
4425
|
// src/components/icons/link/index.tsx
|
|
4250
|
-
import { jsx as
|
|
4426
|
+
import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4251
4427
|
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4252
|
-
return /* @__PURE__ */
|
|
4428
|
+
return /* @__PURE__ */ jsxs65(
|
|
4253
4429
|
"svg",
|
|
4254
4430
|
{
|
|
4255
4431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4264,17 +4440,17 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4264
4440
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4265
4441
|
...rest,
|
|
4266
4442
|
children: [
|
|
4267
|
-
/* @__PURE__ */
|
|
4268
|
-
/* @__PURE__ */
|
|
4443
|
+
/* @__PURE__ */ jsx89("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4444
|
+
/* @__PURE__ */ jsx89("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4269
4445
|
]
|
|
4270
4446
|
}
|
|
4271
4447
|
);
|
|
4272
4448
|
}
|
|
4273
4449
|
|
|
4274
4450
|
// src/components/icons/list/index.tsx
|
|
4275
|
-
import { jsx as
|
|
4451
|
+
import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4276
4452
|
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4277
|
-
return /* @__PURE__ */
|
|
4453
|
+
return /* @__PURE__ */ jsxs66(
|
|
4278
4454
|
"svg",
|
|
4279
4455
|
{
|
|
4280
4456
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4289,21 +4465,21 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4289
4465
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4290
4466
|
...rest,
|
|
4291
4467
|
children: [
|
|
4292
|
-
/* @__PURE__ */
|
|
4293
|
-
/* @__PURE__ */
|
|
4294
|
-
/* @__PURE__ */
|
|
4295
|
-
/* @__PURE__ */
|
|
4296
|
-
/* @__PURE__ */
|
|
4297
|
-
/* @__PURE__ */
|
|
4468
|
+
/* @__PURE__ */ jsx90("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4469
|
+
/* @__PURE__ */ jsx90("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4470
|
+
/* @__PURE__ */ jsx90("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4471
|
+
/* @__PURE__ */ jsx90("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4472
|
+
/* @__PURE__ */ jsx90("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4473
|
+
/* @__PURE__ */ jsx90("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4298
4474
|
]
|
|
4299
4475
|
}
|
|
4300
4476
|
);
|
|
4301
4477
|
}
|
|
4302
4478
|
|
|
4303
4479
|
// src/components/icons/loader/index.tsx
|
|
4304
|
-
import { jsx as
|
|
4480
|
+
import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4305
4481
|
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4306
|
-
return /* @__PURE__ */
|
|
4482
|
+
return /* @__PURE__ */ jsxs67(
|
|
4307
4483
|
"svg",
|
|
4308
4484
|
{
|
|
4309
4485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4318,23 +4494,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4318
4494
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4319
4495
|
...rest,
|
|
4320
4496
|
children: [
|
|
4321
|
-
/* @__PURE__ */
|
|
4322
|
-
/* @__PURE__ */
|
|
4323
|
-
/* @__PURE__ */
|
|
4324
|
-
/* @__PURE__ */
|
|
4325
|
-
/* @__PURE__ */
|
|
4326
|
-
/* @__PURE__ */
|
|
4327
|
-
/* @__PURE__ */
|
|
4328
|
-
/* @__PURE__ */
|
|
4497
|
+
/* @__PURE__ */ jsx91("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4498
|
+
/* @__PURE__ */ jsx91("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4499
|
+
/* @__PURE__ */ jsx91("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4500
|
+
/* @__PURE__ */ jsx91("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4501
|
+
/* @__PURE__ */ jsx91("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4502
|
+
/* @__PURE__ */ jsx91("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4503
|
+
/* @__PURE__ */ jsx91("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4504
|
+
/* @__PURE__ */ jsx91("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4329
4505
|
]
|
|
4330
4506
|
}
|
|
4331
4507
|
);
|
|
4332
4508
|
}
|
|
4333
4509
|
|
|
4334
4510
|
// src/components/icons/lock/index.tsx
|
|
4335
|
-
import { jsx as
|
|
4511
|
+
import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4336
4512
|
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4337
|
-
return /* @__PURE__ */
|
|
4513
|
+
return /* @__PURE__ */ jsxs68(
|
|
4338
4514
|
"svg",
|
|
4339
4515
|
{
|
|
4340
4516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4349,17 +4525,17 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4349
4525
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4350
4526
|
...rest,
|
|
4351
4527
|
children: [
|
|
4352
|
-
/* @__PURE__ */
|
|
4353
|
-
/* @__PURE__ */
|
|
4528
|
+
/* @__PURE__ */ jsx92("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4529
|
+
/* @__PURE__ */ jsx92("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4354
4530
|
]
|
|
4355
4531
|
}
|
|
4356
4532
|
);
|
|
4357
4533
|
}
|
|
4358
4534
|
|
|
4359
4535
|
// src/components/icons/log-in/index.tsx
|
|
4360
|
-
import { jsx as
|
|
4536
|
+
import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4361
4537
|
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4362
|
-
return /* @__PURE__ */
|
|
4538
|
+
return /* @__PURE__ */ jsxs69(
|
|
4363
4539
|
"svg",
|
|
4364
4540
|
{
|
|
4365
4541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4374,18 +4550,18 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4374
4550
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4375
4551
|
...rest,
|
|
4376
4552
|
children: [
|
|
4377
|
-
/* @__PURE__ */
|
|
4378
|
-
/* @__PURE__ */
|
|
4379
|
-
/* @__PURE__ */
|
|
4553
|
+
/* @__PURE__ */ jsx93("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4554
|
+
/* @__PURE__ */ jsx93("polyline", { points: "10 17 15 12 10 7" }),
|
|
4555
|
+
/* @__PURE__ */ jsx93("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4380
4556
|
]
|
|
4381
4557
|
}
|
|
4382
4558
|
);
|
|
4383
4559
|
}
|
|
4384
4560
|
|
|
4385
4561
|
// src/components/icons/log-out/index.tsx
|
|
4386
|
-
import { jsx as
|
|
4562
|
+
import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4387
4563
|
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4388
|
-
return /* @__PURE__ */
|
|
4564
|
+
return /* @__PURE__ */ jsxs70(
|
|
4389
4565
|
"svg",
|
|
4390
4566
|
{
|
|
4391
4567
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4400,18 +4576,18 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4400
4576
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4401
4577
|
...rest,
|
|
4402
4578
|
children: [
|
|
4403
|
-
/* @__PURE__ */
|
|
4404
|
-
/* @__PURE__ */
|
|
4405
|
-
/* @__PURE__ */
|
|
4579
|
+
/* @__PURE__ */ jsx94("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4580
|
+
/* @__PURE__ */ jsx94("polyline", { points: "16 17 21 12 16 7" }),
|
|
4581
|
+
/* @__PURE__ */ jsx94("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4406
4582
|
]
|
|
4407
4583
|
}
|
|
4408
4584
|
);
|
|
4409
4585
|
}
|
|
4410
4586
|
|
|
4411
4587
|
// src/components/icons/mail/index.tsx
|
|
4412
|
-
import { jsx as
|
|
4588
|
+
import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4413
4589
|
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4414
|
-
return /* @__PURE__ */
|
|
4590
|
+
return /* @__PURE__ */ jsxs71(
|
|
4415
4591
|
"svg",
|
|
4416
4592
|
{
|
|
4417
4593
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4426,17 +4602,17 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4426
4602
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4427
4603
|
...rest,
|
|
4428
4604
|
children: [
|
|
4429
|
-
/* @__PURE__ */
|
|
4430
|
-
/* @__PURE__ */
|
|
4605
|
+
/* @__PURE__ */ jsx95("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4606
|
+
/* @__PURE__ */ jsx95("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4431
4607
|
]
|
|
4432
4608
|
}
|
|
4433
4609
|
);
|
|
4434
4610
|
}
|
|
4435
4611
|
|
|
4436
4612
|
// src/components/icons/map-pin/index.tsx
|
|
4437
|
-
import { jsx as
|
|
4613
|
+
import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4438
4614
|
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4439
|
-
return /* @__PURE__ */
|
|
4615
|
+
return /* @__PURE__ */ jsxs72(
|
|
4440
4616
|
"svg",
|
|
4441
4617
|
{
|
|
4442
4618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4451,17 +4627,17 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4451
4627
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4452
4628
|
...rest,
|
|
4453
4629
|
children: [
|
|
4454
|
-
/* @__PURE__ */
|
|
4455
|
-
/* @__PURE__ */
|
|
4630
|
+
/* @__PURE__ */ jsx96("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
4631
|
+
/* @__PURE__ */ jsx96("circle", { cx: "12", cy: "10", r: "3" })
|
|
4456
4632
|
]
|
|
4457
4633
|
}
|
|
4458
4634
|
);
|
|
4459
4635
|
}
|
|
4460
4636
|
|
|
4461
4637
|
// src/components/icons/maximize/index.tsx
|
|
4462
|
-
import { jsx as
|
|
4638
|
+
import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4463
4639
|
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4464
|
-
return /* @__PURE__ */
|
|
4640
|
+
return /* @__PURE__ */ jsxs73(
|
|
4465
4641
|
"svg",
|
|
4466
4642
|
{
|
|
4467
4643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4476,19 +4652,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4476
4652
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4477
4653
|
...rest,
|
|
4478
4654
|
children: [
|
|
4479
|
-
/* @__PURE__ */
|
|
4480
|
-
/* @__PURE__ */
|
|
4481
|
-
/* @__PURE__ */
|
|
4482
|
-
/* @__PURE__ */
|
|
4655
|
+
/* @__PURE__ */ jsx97("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4656
|
+
/* @__PURE__ */ jsx97("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4657
|
+
/* @__PURE__ */ jsx97("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4658
|
+
/* @__PURE__ */ jsx97("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4483
4659
|
]
|
|
4484
4660
|
}
|
|
4485
4661
|
);
|
|
4486
4662
|
}
|
|
4487
4663
|
|
|
4488
4664
|
// src/components/icons/menu/index.tsx
|
|
4489
|
-
import { jsx as
|
|
4665
|
+
import { jsx as jsx98, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4490
4666
|
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4491
|
-
return /* @__PURE__ */
|
|
4667
|
+
return /* @__PURE__ */ jsxs74(
|
|
4492
4668
|
"svg",
|
|
4493
4669
|
{
|
|
4494
4670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4503,18 +4679,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4503
4679
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4504
4680
|
...rest,
|
|
4505
4681
|
children: [
|
|
4506
|
-
/* @__PURE__ */
|
|
4507
|
-
/* @__PURE__ */
|
|
4508
|
-
/* @__PURE__ */
|
|
4682
|
+
/* @__PURE__ */ jsx98("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4683
|
+
/* @__PURE__ */ jsx98("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4684
|
+
/* @__PURE__ */ jsx98("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4509
4685
|
]
|
|
4510
4686
|
}
|
|
4511
4687
|
);
|
|
4512
4688
|
}
|
|
4513
4689
|
|
|
4514
4690
|
// src/components/icons/message-circle/index.tsx
|
|
4515
|
-
import { jsx as
|
|
4691
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4516
4692
|
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4517
|
-
return /* @__PURE__ */
|
|
4693
|
+
return /* @__PURE__ */ jsx99(
|
|
4518
4694
|
"svg",
|
|
4519
4695
|
{
|
|
4520
4696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4528,15 +4704,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
4528
4704
|
strokeLinejoin: "round",
|
|
4529
4705
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4530
4706
|
...rest,
|
|
4531
|
-
children: /* @__PURE__ */
|
|
4707
|
+
children: /* @__PURE__ */ jsx99("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4532
4708
|
}
|
|
4533
4709
|
);
|
|
4534
4710
|
}
|
|
4535
4711
|
|
|
4536
4712
|
// src/components/icons/message-square/index.tsx
|
|
4537
|
-
import { jsx as
|
|
4713
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
4538
4714
|
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4539
|
-
return /* @__PURE__ */
|
|
4715
|
+
return /* @__PURE__ */ jsx100(
|
|
4540
4716
|
"svg",
|
|
4541
4717
|
{
|
|
4542
4718
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4550,15 +4726,15 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
4550
4726
|
strokeLinejoin: "round",
|
|
4551
4727
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4552
4728
|
...rest,
|
|
4553
|
-
children: /* @__PURE__ */
|
|
4729
|
+
children: /* @__PURE__ */ jsx100("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4554
4730
|
}
|
|
4555
4731
|
);
|
|
4556
4732
|
}
|
|
4557
4733
|
|
|
4558
4734
|
// src/components/icons/mic/index.tsx
|
|
4559
|
-
import { jsx as
|
|
4735
|
+
import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4560
4736
|
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4561
|
-
return /* @__PURE__ */
|
|
4737
|
+
return /* @__PURE__ */ jsxs75(
|
|
4562
4738
|
"svg",
|
|
4563
4739
|
{
|
|
4564
4740
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4573,18 +4749,18 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4573
4749
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4574
4750
|
...rest,
|
|
4575
4751
|
children: [
|
|
4576
|
-
/* @__PURE__ */
|
|
4577
|
-
/* @__PURE__ */
|
|
4578
|
-
/* @__PURE__ */
|
|
4752
|
+
/* @__PURE__ */ jsx101("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4753
|
+
/* @__PURE__ */ jsx101("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4754
|
+
/* @__PURE__ */ jsx101("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4579
4755
|
]
|
|
4580
4756
|
}
|
|
4581
4757
|
);
|
|
4582
4758
|
}
|
|
4583
4759
|
|
|
4584
4760
|
// src/components/icons/minimize/index.tsx
|
|
4585
|
-
import { jsx as
|
|
4761
|
+
import { jsx as jsx102, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4586
4762
|
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4587
|
-
return /* @__PURE__ */
|
|
4763
|
+
return /* @__PURE__ */ jsxs76(
|
|
4588
4764
|
"svg",
|
|
4589
4765
|
{
|
|
4590
4766
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4599,19 +4775,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4599
4775
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4600
4776
|
...rest,
|
|
4601
4777
|
children: [
|
|
4602
|
-
/* @__PURE__ */
|
|
4603
|
-
/* @__PURE__ */
|
|
4604
|
-
/* @__PURE__ */
|
|
4605
|
-
/* @__PURE__ */
|
|
4778
|
+
/* @__PURE__ */ jsx102("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4779
|
+
/* @__PURE__ */ jsx102("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4780
|
+
/* @__PURE__ */ jsx102("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4781
|
+
/* @__PURE__ */ jsx102("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4606
4782
|
]
|
|
4607
4783
|
}
|
|
4608
4784
|
);
|
|
4609
4785
|
}
|
|
4610
4786
|
|
|
4611
4787
|
// src/components/icons/minus/index.tsx
|
|
4612
|
-
import { jsx as
|
|
4788
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
4613
4789
|
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4614
|
-
return /* @__PURE__ */
|
|
4790
|
+
return /* @__PURE__ */ jsx103(
|
|
4615
4791
|
"svg",
|
|
4616
4792
|
{
|
|
4617
4793
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4625,15 +4801,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4625
4801
|
strokeLinejoin: "round",
|
|
4626
4802
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4627
4803
|
...rest,
|
|
4628
|
-
children: /* @__PURE__ */
|
|
4804
|
+
children: /* @__PURE__ */ jsx103("path", { d: "M5 12h14" })
|
|
4629
4805
|
}
|
|
4630
4806
|
);
|
|
4631
4807
|
}
|
|
4632
4808
|
|
|
4633
4809
|
// src/components/icons/moon/index.tsx
|
|
4634
|
-
import { jsx as
|
|
4810
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
4635
4811
|
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4636
|
-
return /* @__PURE__ */
|
|
4812
|
+
return /* @__PURE__ */ jsx104(
|
|
4637
4813
|
"svg",
|
|
4638
4814
|
{
|
|
4639
4815
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4647,15 +4823,15 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4647
4823
|
strokeLinejoin: "round",
|
|
4648
4824
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4649
4825
|
...rest,
|
|
4650
|
-
children: /* @__PURE__ */
|
|
4826
|
+
children: /* @__PURE__ */ jsx104("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4651
4827
|
}
|
|
4652
4828
|
);
|
|
4653
4829
|
}
|
|
4654
4830
|
|
|
4655
4831
|
// src/components/icons/more-horizontal/index.tsx
|
|
4656
|
-
import { jsx as
|
|
4832
|
+
import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4657
4833
|
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4658
|
-
return /* @__PURE__ */
|
|
4834
|
+
return /* @__PURE__ */ jsxs77(
|
|
4659
4835
|
"svg",
|
|
4660
4836
|
{
|
|
4661
4837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4670,18 +4846,18 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...re
|
|
|
4670
4846
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4671
4847
|
...rest,
|
|
4672
4848
|
children: [
|
|
4673
|
-
/* @__PURE__ */
|
|
4674
|
-
/* @__PURE__ */
|
|
4675
|
-
/* @__PURE__ */
|
|
4849
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4850
|
+
/* @__PURE__ */ jsx105("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4851
|
+
/* @__PURE__ */ jsx105("circle", { cx: "5", cy: "12", r: "1" })
|
|
4676
4852
|
]
|
|
4677
4853
|
}
|
|
4678
4854
|
);
|
|
4679
4855
|
}
|
|
4680
4856
|
|
|
4681
4857
|
// src/components/icons/more-vertical/index.tsx
|
|
4682
|
-
import { jsx as
|
|
4858
|
+
import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4683
4859
|
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4684
|
-
return /* @__PURE__ */
|
|
4860
|
+
return /* @__PURE__ */ jsxs78(
|
|
4685
4861
|
"svg",
|
|
4686
4862
|
{
|
|
4687
4863
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4696,18 +4872,18 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
4696
4872
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4697
4873
|
...rest,
|
|
4698
4874
|
children: [
|
|
4699
|
-
/* @__PURE__ */
|
|
4700
|
-
/* @__PURE__ */
|
|
4701
|
-
/* @__PURE__ */
|
|
4875
|
+
/* @__PURE__ */ jsx106("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4876
|
+
/* @__PURE__ */ jsx106("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4877
|
+
/* @__PURE__ */ jsx106("circle", { cx: "12", cy: "19", r: "1" })
|
|
4702
4878
|
]
|
|
4703
4879
|
}
|
|
4704
4880
|
);
|
|
4705
4881
|
}
|
|
4706
4882
|
|
|
4707
4883
|
// src/components/icons/package/index.tsx
|
|
4708
|
-
import { jsx as
|
|
4884
|
+
import { jsx as jsx107, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4709
4885
|
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4710
|
-
return /* @__PURE__ */
|
|
4886
|
+
return /* @__PURE__ */ jsxs79(
|
|
4711
4887
|
"svg",
|
|
4712
4888
|
{
|
|
4713
4889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4722,18 +4898,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4722
4898
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4723
4899
|
...rest,
|
|
4724
4900
|
children: [
|
|
4725
|
-
/* @__PURE__ */
|
|
4726
|
-
/* @__PURE__ */
|
|
4727
|
-
/* @__PURE__ */
|
|
4901
|
+
/* @__PURE__ */ jsx107("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
|
|
4902
|
+
/* @__PURE__ */ jsx107("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4903
|
+
/* @__PURE__ */ jsx107("path", { d: "M12 22V12" })
|
|
4728
4904
|
]
|
|
4729
4905
|
}
|
|
4730
4906
|
);
|
|
4731
4907
|
}
|
|
4732
4908
|
|
|
4733
4909
|
// src/components/icons/paperclip/index.tsx
|
|
4734
|
-
import { jsx as
|
|
4910
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
4735
4911
|
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4736
|
-
return /* @__PURE__ */
|
|
4912
|
+
return /* @__PURE__ */ jsx108(
|
|
4737
4913
|
"svg",
|
|
4738
4914
|
{
|
|
4739
4915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4747,15 +4923,15 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4747
4923
|
strokeLinejoin: "round",
|
|
4748
4924
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4749
4925
|
...rest,
|
|
4750
|
-
children: /* @__PURE__ */
|
|
4926
|
+
children: /* @__PURE__ */ jsx108("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
|
|
4751
4927
|
}
|
|
4752
4928
|
);
|
|
4753
4929
|
}
|
|
4754
4930
|
|
|
4755
4931
|
// src/components/icons/pause/index.tsx
|
|
4756
|
-
import { jsx as
|
|
4932
|
+
import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4757
4933
|
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4758
|
-
return /* @__PURE__ */
|
|
4934
|
+
return /* @__PURE__ */ jsxs80(
|
|
4759
4935
|
"svg",
|
|
4760
4936
|
{
|
|
4761
4937
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4770,17 +4946,17 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4770
4946
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4771
4947
|
...rest,
|
|
4772
4948
|
children: [
|
|
4773
|
-
/* @__PURE__ */
|
|
4774
|
-
/* @__PURE__ */
|
|
4949
|
+
/* @__PURE__ */ jsx109("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4950
|
+
/* @__PURE__ */ jsx109("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4775
4951
|
]
|
|
4776
4952
|
}
|
|
4777
4953
|
);
|
|
4778
4954
|
}
|
|
4779
4955
|
|
|
4780
4956
|
// src/components/icons/pencil/index.tsx
|
|
4781
|
-
import { jsx as
|
|
4957
|
+
import { jsx as jsx110, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
4782
4958
|
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4783
|
-
return /* @__PURE__ */
|
|
4959
|
+
return /* @__PURE__ */ jsxs81(
|
|
4784
4960
|
"svg",
|
|
4785
4961
|
{
|
|
4786
4962
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4795,17 +4971,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4795
4971
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4796
4972
|
...rest,
|
|
4797
4973
|
children: [
|
|
4798
|
-
/* @__PURE__ */
|
|
4799
|
-
/* @__PURE__ */
|
|
4974
|
+
/* @__PURE__ */ jsx110("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4975
|
+
/* @__PURE__ */ jsx110("path", { d: "m15 5 4 4" })
|
|
4800
4976
|
]
|
|
4801
4977
|
}
|
|
4802
4978
|
);
|
|
4803
4979
|
}
|
|
4804
4980
|
|
|
4805
4981
|
// src/components/icons/phone/index.tsx
|
|
4806
|
-
import { jsx as
|
|
4982
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4807
4983
|
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4808
|
-
return /* @__PURE__ */
|
|
4984
|
+
return /* @__PURE__ */ jsx111(
|
|
4809
4985
|
"svg",
|
|
4810
4986
|
{
|
|
4811
4987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4819,15 +4995,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4819
4995
|
strokeLinejoin: "round",
|
|
4820
4996
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4821
4997
|
...rest,
|
|
4822
|
-
children: /* @__PURE__ */
|
|
4998
|
+
children: /* @__PURE__ */ jsx111("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
4823
4999
|
}
|
|
4824
5000
|
);
|
|
4825
5001
|
}
|
|
4826
5002
|
|
|
4827
5003
|
// src/components/icons/play/index.tsx
|
|
4828
|
-
import { jsx as
|
|
5004
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
4829
5005
|
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4830
|
-
return /* @__PURE__ */
|
|
5006
|
+
return /* @__PURE__ */ jsx112(
|
|
4831
5007
|
"svg",
|
|
4832
5008
|
{
|
|
4833
5009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4841,15 +5017,15 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4841
5017
|
strokeLinejoin: "round",
|
|
4842
5018
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4843
5019
|
...rest,
|
|
4844
|
-
children: /* @__PURE__ */
|
|
5020
|
+
children: /* @__PURE__ */ jsx112("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4845
5021
|
}
|
|
4846
5022
|
);
|
|
4847
5023
|
}
|
|
4848
5024
|
|
|
4849
5025
|
// src/components/icons/plus/index.tsx
|
|
4850
|
-
import { jsx as
|
|
5026
|
+
import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
4851
5027
|
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4852
|
-
return /* @__PURE__ */
|
|
5028
|
+
return /* @__PURE__ */ jsxs82(
|
|
4853
5029
|
"svg",
|
|
4854
5030
|
{
|
|
4855
5031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4864,17 +5040,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4864
5040
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4865
5041
|
...rest,
|
|
4866
5042
|
children: [
|
|
4867
|
-
/* @__PURE__ */
|
|
4868
|
-
/* @__PURE__ */
|
|
5043
|
+
/* @__PURE__ */ jsx113("path", { d: "M5 12h14" }),
|
|
5044
|
+
/* @__PURE__ */ jsx113("path", { d: "M12 5v14" })
|
|
4869
5045
|
]
|
|
4870
5046
|
}
|
|
4871
5047
|
);
|
|
4872
5048
|
}
|
|
4873
5049
|
|
|
4874
5050
|
// src/components/icons/printer/index.tsx
|
|
4875
|
-
import { jsx as
|
|
5051
|
+
import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
4876
5052
|
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4877
|
-
return /* @__PURE__ */
|
|
5053
|
+
return /* @__PURE__ */ jsxs83(
|
|
4878
5054
|
"svg",
|
|
4879
5055
|
{
|
|
4880
5056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4889,18 +5065,18 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4889
5065
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4890
5066
|
...rest,
|
|
4891
5067
|
children: [
|
|
4892
|
-
/* @__PURE__ */
|
|
4893
|
-
/* @__PURE__ */
|
|
4894
|
-
/* @__PURE__ */
|
|
5068
|
+
/* @__PURE__ */ jsx114("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
5069
|
+
/* @__PURE__ */ jsx114("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
5070
|
+
/* @__PURE__ */ jsx114("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4895
5071
|
]
|
|
4896
5072
|
}
|
|
4897
5073
|
);
|
|
4898
5074
|
}
|
|
4899
5075
|
|
|
4900
5076
|
// src/components/icons/redo/index.tsx
|
|
4901
|
-
import { jsx as
|
|
5077
|
+
import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
4902
5078
|
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4903
|
-
return /* @__PURE__ */
|
|
5079
|
+
return /* @__PURE__ */ jsxs84(
|
|
4904
5080
|
"svg",
|
|
4905
5081
|
{
|
|
4906
5082
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4915,17 +5091,17 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4915
5091
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4916
5092
|
...rest,
|
|
4917
5093
|
children: [
|
|
4918
|
-
/* @__PURE__ */
|
|
4919
|
-
/* @__PURE__ */
|
|
5094
|
+
/* @__PURE__ */ jsx115("path", { d: "M21 7v6h-6" }),
|
|
5095
|
+
/* @__PURE__ */ jsx115("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
4920
5096
|
]
|
|
4921
5097
|
}
|
|
4922
5098
|
);
|
|
4923
5099
|
}
|
|
4924
5100
|
|
|
4925
5101
|
// src/components/icons/refresh-cw/index.tsx
|
|
4926
|
-
import { jsx as
|
|
5102
|
+
import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
4927
5103
|
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4928
|
-
return /* @__PURE__ */
|
|
5104
|
+
return /* @__PURE__ */ jsxs85(
|
|
4929
5105
|
"svg",
|
|
4930
5106
|
{
|
|
4931
5107
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4940,19 +5116,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4940
5116
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4941
5117
|
...rest,
|
|
4942
5118
|
children: [
|
|
4943
|
-
/* @__PURE__ */
|
|
4944
|
-
/* @__PURE__ */
|
|
4945
|
-
/* @__PURE__ */
|
|
4946
|
-
/* @__PURE__ */
|
|
5119
|
+
/* @__PURE__ */ jsx116("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
5120
|
+
/* @__PURE__ */ jsx116("path", { d: "M21 3v5h-5" }),
|
|
5121
|
+
/* @__PURE__ */ jsx116("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
5122
|
+
/* @__PURE__ */ jsx116("path", { d: "M3 21v-5h5" })
|
|
4947
5123
|
]
|
|
4948
5124
|
}
|
|
4949
5125
|
);
|
|
4950
5126
|
}
|
|
4951
5127
|
|
|
4952
5128
|
// src/components/icons/save/index.tsx
|
|
4953
|
-
import { jsx as
|
|
5129
|
+
import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
4954
5130
|
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4955
|
-
return /* @__PURE__ */
|
|
5131
|
+
return /* @__PURE__ */ jsxs86(
|
|
4956
5132
|
"svg",
|
|
4957
5133
|
{
|
|
4958
5134
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4967,18 +5143,18 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4967
5143
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4968
5144
|
...rest,
|
|
4969
5145
|
children: [
|
|
4970
|
-
/* @__PURE__ */
|
|
4971
|
-
/* @__PURE__ */
|
|
4972
|
-
/* @__PURE__ */
|
|
5146
|
+
/* @__PURE__ */ jsx117("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
5147
|
+
/* @__PURE__ */ jsx117("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
5148
|
+
/* @__PURE__ */ jsx117("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
4973
5149
|
]
|
|
4974
5150
|
}
|
|
4975
5151
|
);
|
|
4976
5152
|
}
|
|
4977
5153
|
|
|
4978
5154
|
// src/components/icons/search/index.tsx
|
|
4979
|
-
import { jsx as
|
|
5155
|
+
import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
4980
5156
|
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4981
|
-
return /* @__PURE__ */
|
|
5157
|
+
return /* @__PURE__ */ jsxs87(
|
|
4982
5158
|
"svg",
|
|
4983
5159
|
{
|
|
4984
5160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4993,17 +5169,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4993
5169
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4994
5170
|
...rest,
|
|
4995
5171
|
children: [
|
|
4996
|
-
/* @__PURE__ */
|
|
4997
|
-
/* @__PURE__ */
|
|
5172
|
+
/* @__PURE__ */ jsx118("circle", { cx: "11", cy: "11", r: "8" }),
|
|
5173
|
+
/* @__PURE__ */ jsx118("path", { d: "m21 21-4.3-4.3" })
|
|
4998
5174
|
]
|
|
4999
5175
|
}
|
|
5000
5176
|
);
|
|
5001
5177
|
}
|
|
5002
5178
|
|
|
5003
5179
|
// src/components/icons/send/index.tsx
|
|
5004
|
-
import { jsx as
|
|
5180
|
+
import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
5005
5181
|
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5006
|
-
return /* @__PURE__ */
|
|
5182
|
+
return /* @__PURE__ */ jsxs88(
|
|
5007
5183
|
"svg",
|
|
5008
5184
|
{
|
|
5009
5185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5018,17 +5194,17 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5018
5194
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5019
5195
|
...rest,
|
|
5020
5196
|
children: [
|
|
5021
|
-
/* @__PURE__ */
|
|
5022
|
-
/* @__PURE__ */
|
|
5197
|
+
/* @__PURE__ */ jsx119("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
5198
|
+
/* @__PURE__ */ jsx119("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
5023
5199
|
]
|
|
5024
5200
|
}
|
|
5025
5201
|
);
|
|
5026
5202
|
}
|
|
5027
5203
|
|
|
5028
5204
|
// src/components/icons/settings/index.tsx
|
|
5029
|
-
import { jsx as
|
|
5205
|
+
import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
5030
5206
|
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5031
|
-
return /* @__PURE__ */
|
|
5207
|
+
return /* @__PURE__ */ jsxs89(
|
|
5032
5208
|
"svg",
|
|
5033
5209
|
{
|
|
5034
5210
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5043,17 +5219,17 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5043
5219
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5044
5220
|
...rest,
|
|
5045
5221
|
children: [
|
|
5046
|
-
/* @__PURE__ */
|
|
5047
|
-
/* @__PURE__ */
|
|
5222
|
+
/* @__PURE__ */ jsx120("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
5223
|
+
/* @__PURE__ */ jsx120("circle", { cx: "12", cy: "12", r: "3" })
|
|
5048
5224
|
]
|
|
5049
5225
|
}
|
|
5050
5226
|
);
|
|
5051
5227
|
}
|
|
5052
5228
|
|
|
5053
5229
|
// src/components/icons/share/index.tsx
|
|
5054
|
-
import { jsx as
|
|
5230
|
+
import { jsx as jsx121, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
5055
5231
|
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5056
|
-
return /* @__PURE__ */
|
|
5232
|
+
return /* @__PURE__ */ jsxs90(
|
|
5057
5233
|
"svg",
|
|
5058
5234
|
{
|
|
5059
5235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5068,18 +5244,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5068
5244
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5069
5245
|
...rest,
|
|
5070
5246
|
children: [
|
|
5071
|
-
/* @__PURE__ */
|
|
5072
|
-
/* @__PURE__ */
|
|
5073
|
-
/* @__PURE__ */
|
|
5247
|
+
/* @__PURE__ */ jsx121("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5248
|
+
/* @__PURE__ */ jsx121("polyline", { points: "16 6 12 2 8 6" }),
|
|
5249
|
+
/* @__PURE__ */ jsx121("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
5074
5250
|
]
|
|
5075
5251
|
}
|
|
5076
5252
|
);
|
|
5077
5253
|
}
|
|
5078
5254
|
|
|
5079
5255
|
// src/components/icons/shield/index.tsx
|
|
5080
|
-
import { jsx as
|
|
5256
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
5081
5257
|
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5082
|
-
return /* @__PURE__ */
|
|
5258
|
+
return /* @__PURE__ */ jsx122(
|
|
5083
5259
|
"svg",
|
|
5084
5260
|
{
|
|
5085
5261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5093,15 +5269,15 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5093
5269
|
strokeLinejoin: "round",
|
|
5094
5270
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5095
5271
|
...rest,
|
|
5096
|
-
children: /* @__PURE__ */
|
|
5272
|
+
children: /* @__PURE__ */ jsx122("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
|
|
5097
5273
|
}
|
|
5098
5274
|
);
|
|
5099
5275
|
}
|
|
5100
5276
|
|
|
5101
5277
|
// src/components/icons/shield-check/index.tsx
|
|
5102
|
-
import { jsx as
|
|
5278
|
+
import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
5103
5279
|
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5104
|
-
return /* @__PURE__ */
|
|
5280
|
+
return /* @__PURE__ */ jsxs91(
|
|
5105
5281
|
"svg",
|
|
5106
5282
|
{
|
|
5107
5283
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5116,17 +5292,17 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5116
5292
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5117
5293
|
...rest,
|
|
5118
5294
|
children: [
|
|
5119
|
-
/* @__PURE__ */
|
|
5120
|
-
/* @__PURE__ */
|
|
5295
|
+
/* @__PURE__ */ jsx123("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
5296
|
+
/* @__PURE__ */ jsx123("path", { d: "m9 12 2 2 4-4" })
|
|
5121
5297
|
]
|
|
5122
5298
|
}
|
|
5123
5299
|
);
|
|
5124
5300
|
}
|
|
5125
5301
|
|
|
5126
5302
|
// src/components/icons/shopping-bag/index.tsx
|
|
5127
|
-
import { jsx as
|
|
5303
|
+
import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
5128
5304
|
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5129
|
-
return /* @__PURE__ */
|
|
5305
|
+
return /* @__PURE__ */ jsxs92(
|
|
5130
5306
|
"svg",
|
|
5131
5307
|
{
|
|
5132
5308
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5141,18 +5317,18 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5141
5317
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5142
5318
|
...rest,
|
|
5143
5319
|
children: [
|
|
5144
|
-
/* @__PURE__ */
|
|
5145
|
-
/* @__PURE__ */
|
|
5146
|
-
/* @__PURE__ */
|
|
5320
|
+
/* @__PURE__ */ jsx124("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5321
|
+
/* @__PURE__ */ jsx124("path", { d: "M3 6h18" }),
|
|
5322
|
+
/* @__PURE__ */ jsx124("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5147
5323
|
]
|
|
5148
5324
|
}
|
|
5149
5325
|
);
|
|
5150
5326
|
}
|
|
5151
5327
|
|
|
5152
5328
|
// src/components/icons/shopping-cart/index.tsx
|
|
5153
|
-
import { jsx as
|
|
5329
|
+
import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
5154
5330
|
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5155
|
-
return /* @__PURE__ */
|
|
5331
|
+
return /* @__PURE__ */ jsxs93(
|
|
5156
5332
|
"svg",
|
|
5157
5333
|
{
|
|
5158
5334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5167,18 +5343,18 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5167
5343
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5168
5344
|
...rest,
|
|
5169
5345
|
children: [
|
|
5170
|
-
/* @__PURE__ */
|
|
5171
|
-
/* @__PURE__ */
|
|
5172
|
-
/* @__PURE__ */
|
|
5346
|
+
/* @__PURE__ */ jsx125("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5347
|
+
/* @__PURE__ */ jsx125("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5348
|
+
/* @__PURE__ */ jsx125("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
|
|
5173
5349
|
]
|
|
5174
5350
|
}
|
|
5175
5351
|
);
|
|
5176
5352
|
}
|
|
5177
5353
|
|
|
5178
5354
|
// src/components/icons/sidebar/index.tsx
|
|
5179
|
-
import { jsx as
|
|
5355
|
+
import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
5180
5356
|
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5181
|
-
return /* @__PURE__ */
|
|
5357
|
+
return /* @__PURE__ */ jsxs94(
|
|
5182
5358
|
"svg",
|
|
5183
5359
|
{
|
|
5184
5360
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5193,17 +5369,17 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5193
5369
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5194
5370
|
...rest,
|
|
5195
5371
|
children: [
|
|
5196
|
-
/* @__PURE__ */
|
|
5197
|
-
/* @__PURE__ */
|
|
5372
|
+
/* @__PURE__ */ jsx126("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5373
|
+
/* @__PURE__ */ jsx126("path", { d: "M9 3v18" })
|
|
5198
5374
|
]
|
|
5199
5375
|
}
|
|
5200
5376
|
);
|
|
5201
5377
|
}
|
|
5202
5378
|
|
|
5203
5379
|
// src/components/icons/skip-back/index.tsx
|
|
5204
|
-
import { jsx as
|
|
5380
|
+
import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
5205
5381
|
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5206
|
-
return /* @__PURE__ */
|
|
5382
|
+
return /* @__PURE__ */ jsxs95(
|
|
5207
5383
|
"svg",
|
|
5208
5384
|
{
|
|
5209
5385
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5218,17 +5394,17 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5218
5394
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5219
5395
|
...rest,
|
|
5220
5396
|
children: [
|
|
5221
|
-
/* @__PURE__ */
|
|
5222
|
-
/* @__PURE__ */
|
|
5397
|
+
/* @__PURE__ */ jsx127("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5398
|
+
/* @__PURE__ */ jsx127("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5223
5399
|
]
|
|
5224
5400
|
}
|
|
5225
5401
|
);
|
|
5226
5402
|
}
|
|
5227
5403
|
|
|
5228
5404
|
// src/components/icons/skip-forward/index.tsx
|
|
5229
|
-
import { jsx as
|
|
5405
|
+
import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
5230
5406
|
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5231
|
-
return /* @__PURE__ */
|
|
5407
|
+
return /* @__PURE__ */ jsxs96(
|
|
5232
5408
|
"svg",
|
|
5233
5409
|
{
|
|
5234
5410
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5243,17 +5419,17 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5243
5419
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5244
5420
|
...rest,
|
|
5245
5421
|
children: [
|
|
5246
|
-
/* @__PURE__ */
|
|
5247
|
-
/* @__PURE__ */
|
|
5422
|
+
/* @__PURE__ */ jsx128("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5423
|
+
/* @__PURE__ */ jsx128("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5248
5424
|
]
|
|
5249
5425
|
}
|
|
5250
5426
|
);
|
|
5251
5427
|
}
|
|
5252
5428
|
|
|
5253
5429
|
// src/components/icons/sliders/index.tsx
|
|
5254
|
-
import { jsx as
|
|
5430
|
+
import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
5255
5431
|
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5256
|
-
return /* @__PURE__ */
|
|
5432
|
+
return /* @__PURE__ */ jsxs97(
|
|
5257
5433
|
"svg",
|
|
5258
5434
|
{
|
|
5259
5435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5268,24 +5444,24 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5268
5444
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5269
5445
|
...rest,
|
|
5270
5446
|
children: [
|
|
5271
|
-
/* @__PURE__ */
|
|
5272
|
-
/* @__PURE__ */
|
|
5273
|
-
/* @__PURE__ */
|
|
5274
|
-
/* @__PURE__ */
|
|
5275
|
-
/* @__PURE__ */
|
|
5276
|
-
/* @__PURE__ */
|
|
5277
|
-
/* @__PURE__ */
|
|
5278
|
-
/* @__PURE__ */
|
|
5279
|
-
/* @__PURE__ */
|
|
5447
|
+
/* @__PURE__ */ jsx129("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5448
|
+
/* @__PURE__ */ jsx129("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5449
|
+
/* @__PURE__ */ jsx129("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5450
|
+
/* @__PURE__ */ jsx129("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5451
|
+
/* @__PURE__ */ jsx129("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5452
|
+
/* @__PURE__ */ jsx129("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5453
|
+
/* @__PURE__ */ jsx129("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5454
|
+
/* @__PURE__ */ jsx129("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5455
|
+
/* @__PURE__ */ jsx129("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5280
5456
|
]
|
|
5281
5457
|
}
|
|
5282
5458
|
);
|
|
5283
5459
|
}
|
|
5284
5460
|
|
|
5285
5461
|
// src/components/icons/smile/index.tsx
|
|
5286
|
-
import { jsx as
|
|
5462
|
+
import { jsx as jsx130, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
5287
5463
|
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5288
|
-
return /* @__PURE__ */
|
|
5464
|
+
return /* @__PURE__ */ jsxs98(
|
|
5289
5465
|
"svg",
|
|
5290
5466
|
{
|
|
5291
5467
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5300,19 +5476,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5300
5476
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5301
5477
|
...rest,
|
|
5302
5478
|
children: [
|
|
5303
|
-
/* @__PURE__ */
|
|
5304
|
-
/* @__PURE__ */
|
|
5305
|
-
/* @__PURE__ */
|
|
5306
|
-
/* @__PURE__ */
|
|
5479
|
+
/* @__PURE__ */ jsx130("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5480
|
+
/* @__PURE__ */ jsx130("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5481
|
+
/* @__PURE__ */ jsx130("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5482
|
+
/* @__PURE__ */ jsx130("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5307
5483
|
]
|
|
5308
5484
|
}
|
|
5309
5485
|
);
|
|
5310
5486
|
}
|
|
5311
5487
|
|
|
5312
5488
|
// src/components/icons/star/index.tsx
|
|
5313
|
-
import { jsx as
|
|
5489
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
5314
5490
|
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5315
|
-
return /* @__PURE__ */
|
|
5491
|
+
return /* @__PURE__ */ jsx131(
|
|
5316
5492
|
"svg",
|
|
5317
5493
|
{
|
|
5318
5494
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5326,15 +5502,15 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5326
5502
|
strokeLinejoin: "round",
|
|
5327
5503
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5328
5504
|
...rest,
|
|
5329
|
-
children: /* @__PURE__ */
|
|
5505
|
+
children: /* @__PURE__ */ jsx131("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
|
|
5330
5506
|
}
|
|
5331
5507
|
);
|
|
5332
5508
|
}
|
|
5333
5509
|
|
|
5334
5510
|
// src/components/icons/sun/index.tsx
|
|
5335
|
-
import { jsx as
|
|
5511
|
+
import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
5336
5512
|
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5337
|
-
return /* @__PURE__ */
|
|
5513
|
+
return /* @__PURE__ */ jsxs99(
|
|
5338
5514
|
"svg",
|
|
5339
5515
|
{
|
|
5340
5516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5349,24 +5525,24 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5349
5525
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5350
5526
|
...rest,
|
|
5351
5527
|
children: [
|
|
5352
|
-
/* @__PURE__ */
|
|
5353
|
-
/* @__PURE__ */
|
|
5354
|
-
/* @__PURE__ */
|
|
5355
|
-
/* @__PURE__ */
|
|
5356
|
-
/* @__PURE__ */
|
|
5357
|
-
/* @__PURE__ */
|
|
5358
|
-
/* @__PURE__ */
|
|
5359
|
-
/* @__PURE__ */
|
|
5360
|
-
/* @__PURE__ */
|
|
5528
|
+
/* @__PURE__ */ jsx132("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5529
|
+
/* @__PURE__ */ jsx132("path", { d: "M12 2v2" }),
|
|
5530
|
+
/* @__PURE__ */ jsx132("path", { d: "M12 20v2" }),
|
|
5531
|
+
/* @__PURE__ */ jsx132("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5532
|
+
/* @__PURE__ */ jsx132("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5533
|
+
/* @__PURE__ */ jsx132("path", { d: "M2 12h2" }),
|
|
5534
|
+
/* @__PURE__ */ jsx132("path", { d: "M20 12h2" }),
|
|
5535
|
+
/* @__PURE__ */ jsx132("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5536
|
+
/* @__PURE__ */ jsx132("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5361
5537
|
]
|
|
5362
5538
|
}
|
|
5363
5539
|
);
|
|
5364
5540
|
}
|
|
5365
5541
|
|
|
5366
5542
|
// src/components/icons/tag/index.tsx
|
|
5367
|
-
import { jsx as
|
|
5543
|
+
import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
5368
5544
|
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5369
|
-
return /* @__PURE__ */
|
|
5545
|
+
return /* @__PURE__ */ jsxs100(
|
|
5370
5546
|
"svg",
|
|
5371
5547
|
{
|
|
5372
5548
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5381,17 +5557,17 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5381
5557
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5382
5558
|
...rest,
|
|
5383
5559
|
children: [
|
|
5384
|
-
/* @__PURE__ */
|
|
5385
|
-
/* @__PURE__ */
|
|
5560
|
+
/* @__PURE__ */ jsx133("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
|
|
5561
|
+
/* @__PURE__ */ jsx133("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5386
5562
|
]
|
|
5387
5563
|
}
|
|
5388
5564
|
);
|
|
5389
5565
|
}
|
|
5390
5566
|
|
|
5391
5567
|
// src/components/icons/thumbs-down/index.tsx
|
|
5392
|
-
import { jsx as
|
|
5568
|
+
import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
5393
5569
|
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5394
|
-
return /* @__PURE__ */
|
|
5570
|
+
return /* @__PURE__ */ jsxs101(
|
|
5395
5571
|
"svg",
|
|
5396
5572
|
{
|
|
5397
5573
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5406,17 +5582,17 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
5406
5582
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5407
5583
|
...rest,
|
|
5408
5584
|
children: [
|
|
5409
|
-
/* @__PURE__ */
|
|
5410
|
-
/* @__PURE__ */
|
|
5585
|
+
/* @__PURE__ */ jsx134("path", { d: "M17 14V2" }),
|
|
5586
|
+
/* @__PURE__ */ jsx134("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
5411
5587
|
]
|
|
5412
5588
|
}
|
|
5413
5589
|
);
|
|
5414
5590
|
}
|
|
5415
5591
|
|
|
5416
5592
|
// src/components/icons/thumbs-up/index.tsx
|
|
5417
|
-
import { jsx as
|
|
5593
|
+
import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
5418
5594
|
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5419
|
-
return /* @__PURE__ */
|
|
5595
|
+
return /* @__PURE__ */ jsxs102(
|
|
5420
5596
|
"svg",
|
|
5421
5597
|
{
|
|
5422
5598
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5431,17 +5607,17 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5431
5607
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5432
5608
|
...rest,
|
|
5433
5609
|
children: [
|
|
5434
|
-
/* @__PURE__ */
|
|
5435
|
-
/* @__PURE__ */
|
|
5610
|
+
/* @__PURE__ */ jsx135("path", { d: "M7 10v12" }),
|
|
5611
|
+
/* @__PURE__ */ jsx135("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
5436
5612
|
]
|
|
5437
5613
|
}
|
|
5438
5614
|
);
|
|
5439
5615
|
}
|
|
5440
5616
|
|
|
5441
5617
|
// src/components/icons/trash/index.tsx
|
|
5442
|
-
import { jsx as
|
|
5618
|
+
import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
5443
5619
|
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5444
|
-
return /* @__PURE__ */
|
|
5620
|
+
return /* @__PURE__ */ jsxs103(
|
|
5445
5621
|
"svg",
|
|
5446
5622
|
{
|
|
5447
5623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5456,18 +5632,18 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5456
5632
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5457
5633
|
...rest,
|
|
5458
5634
|
children: [
|
|
5459
|
-
/* @__PURE__ */
|
|
5460
|
-
/* @__PURE__ */
|
|
5461
|
-
/* @__PURE__ */
|
|
5635
|
+
/* @__PURE__ */ jsx136("path", { d: "M3 6h18" }),
|
|
5636
|
+
/* @__PURE__ */ jsx136("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5637
|
+
/* @__PURE__ */ jsx136("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5462
5638
|
]
|
|
5463
5639
|
}
|
|
5464
5640
|
);
|
|
5465
5641
|
}
|
|
5466
5642
|
|
|
5467
5643
|
// src/components/icons/undo/index.tsx
|
|
5468
|
-
import { jsx as
|
|
5644
|
+
import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
5469
5645
|
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5470
|
-
return /* @__PURE__ */
|
|
5646
|
+
return /* @__PURE__ */ jsxs104(
|
|
5471
5647
|
"svg",
|
|
5472
5648
|
{
|
|
5473
5649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5482,17 +5658,17 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5482
5658
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5483
5659
|
...rest,
|
|
5484
5660
|
children: [
|
|
5485
|
-
/* @__PURE__ */
|
|
5486
|
-
/* @__PURE__ */
|
|
5661
|
+
/* @__PURE__ */ jsx137("path", { d: "M3 7v6h6" }),
|
|
5662
|
+
/* @__PURE__ */ jsx137("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5487
5663
|
]
|
|
5488
5664
|
}
|
|
5489
5665
|
);
|
|
5490
5666
|
}
|
|
5491
5667
|
|
|
5492
5668
|
// src/components/icons/unlock/index.tsx
|
|
5493
|
-
import { jsx as
|
|
5669
|
+
import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
5494
5670
|
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5495
|
-
return /* @__PURE__ */
|
|
5671
|
+
return /* @__PURE__ */ jsxs105(
|
|
5496
5672
|
"svg",
|
|
5497
5673
|
{
|
|
5498
5674
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5507,17 +5683,17 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5507
5683
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5508
5684
|
...rest,
|
|
5509
5685
|
children: [
|
|
5510
|
-
/* @__PURE__ */
|
|
5511
|
-
/* @__PURE__ */
|
|
5686
|
+
/* @__PURE__ */ jsx138("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5687
|
+
/* @__PURE__ */ jsx138("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5512
5688
|
]
|
|
5513
5689
|
}
|
|
5514
5690
|
);
|
|
5515
5691
|
}
|
|
5516
5692
|
|
|
5517
5693
|
// src/components/icons/upload/index.tsx
|
|
5518
|
-
import { jsx as
|
|
5694
|
+
import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
5519
5695
|
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5520
|
-
return /* @__PURE__ */
|
|
5696
|
+
return /* @__PURE__ */ jsxs106(
|
|
5521
5697
|
"svg",
|
|
5522
5698
|
{
|
|
5523
5699
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5532,18 +5708,18 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5532
5708
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5533
5709
|
...rest,
|
|
5534
5710
|
children: [
|
|
5535
|
-
/* @__PURE__ */
|
|
5536
|
-
/* @__PURE__ */
|
|
5537
|
-
/* @__PURE__ */
|
|
5711
|
+
/* @__PURE__ */ jsx139("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5712
|
+
/* @__PURE__ */ jsx139("polyline", { points: "17 8 12 3 7 8" }),
|
|
5713
|
+
/* @__PURE__ */ jsx139("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5538
5714
|
]
|
|
5539
5715
|
}
|
|
5540
5716
|
);
|
|
5541
5717
|
}
|
|
5542
5718
|
|
|
5543
5719
|
// src/components/icons/user/index.tsx
|
|
5544
|
-
import { jsx as
|
|
5720
|
+
import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
5545
5721
|
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5546
|
-
return /* @__PURE__ */
|
|
5722
|
+
return /* @__PURE__ */ jsxs107(
|
|
5547
5723
|
"svg",
|
|
5548
5724
|
{
|
|
5549
5725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5558,17 +5734,17 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5558
5734
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5559
5735
|
...rest,
|
|
5560
5736
|
children: [
|
|
5561
|
-
/* @__PURE__ */
|
|
5562
|
-
/* @__PURE__ */
|
|
5737
|
+
/* @__PURE__ */ jsx140("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5738
|
+
/* @__PURE__ */ jsx140("circle", { cx: "12", cy: "7", r: "4" })
|
|
5563
5739
|
]
|
|
5564
5740
|
}
|
|
5565
5741
|
);
|
|
5566
5742
|
}
|
|
5567
5743
|
|
|
5568
5744
|
// src/components/icons/user-check/index.tsx
|
|
5569
|
-
import { jsx as
|
|
5745
|
+
import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
5570
5746
|
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5571
|
-
return /* @__PURE__ */
|
|
5747
|
+
return /* @__PURE__ */ jsxs108(
|
|
5572
5748
|
"svg",
|
|
5573
5749
|
{
|
|
5574
5750
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5583,18 +5759,18 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5583
5759
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5584
5760
|
...rest,
|
|
5585
5761
|
children: [
|
|
5586
|
-
/* @__PURE__ */
|
|
5587
|
-
/* @__PURE__ */
|
|
5588
|
-
/* @__PURE__ */
|
|
5762
|
+
/* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5763
|
+
/* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5764
|
+
/* @__PURE__ */ jsx141("polyline", { points: "16 11 18 13 22 9" })
|
|
5589
5765
|
]
|
|
5590
5766
|
}
|
|
5591
5767
|
);
|
|
5592
5768
|
}
|
|
5593
5769
|
|
|
5594
5770
|
// src/components/icons/user-plus/index.tsx
|
|
5595
|
-
import { jsx as
|
|
5771
|
+
import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
5596
5772
|
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5597
|
-
return /* @__PURE__ */
|
|
5773
|
+
return /* @__PURE__ */ jsxs109(
|
|
5598
5774
|
"svg",
|
|
5599
5775
|
{
|
|
5600
5776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5609,19 +5785,19 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5609
5785
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5610
5786
|
...rest,
|
|
5611
5787
|
children: [
|
|
5612
|
-
/* @__PURE__ */
|
|
5613
|
-
/* @__PURE__ */
|
|
5614
|
-
/* @__PURE__ */
|
|
5615
|
-
/* @__PURE__ */
|
|
5788
|
+
/* @__PURE__ */ jsx142("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5789
|
+
/* @__PURE__ */ jsx142("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5790
|
+
/* @__PURE__ */ jsx142("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5791
|
+
/* @__PURE__ */ jsx142("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5616
5792
|
]
|
|
5617
5793
|
}
|
|
5618
5794
|
);
|
|
5619
5795
|
}
|
|
5620
5796
|
|
|
5621
5797
|
// src/components/icons/users/index.tsx
|
|
5622
|
-
import { jsx as
|
|
5798
|
+
import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
5623
5799
|
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5624
|
-
return /* @__PURE__ */
|
|
5800
|
+
return /* @__PURE__ */ jsxs110(
|
|
5625
5801
|
"svg",
|
|
5626
5802
|
{
|
|
5627
5803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5636,19 +5812,19 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5636
5812
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5637
5813
|
...rest,
|
|
5638
5814
|
children: [
|
|
5639
|
-
/* @__PURE__ */
|
|
5640
|
-
/* @__PURE__ */
|
|
5641
|
-
/* @__PURE__ */
|
|
5642
|
-
/* @__PURE__ */
|
|
5815
|
+
/* @__PURE__ */ jsx143("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5816
|
+
/* @__PURE__ */ jsx143("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5817
|
+
/* @__PURE__ */ jsx143("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5818
|
+
/* @__PURE__ */ jsx143("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5643
5819
|
]
|
|
5644
5820
|
}
|
|
5645
5821
|
);
|
|
5646
5822
|
}
|
|
5647
5823
|
|
|
5648
5824
|
// src/components/icons/volume-2/index.tsx
|
|
5649
|
-
import { jsx as
|
|
5825
|
+
import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
5650
5826
|
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5651
|
-
return /* @__PURE__ */
|
|
5827
|
+
return /* @__PURE__ */ jsxs111(
|
|
5652
5828
|
"svg",
|
|
5653
5829
|
{
|
|
5654
5830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5663,18 +5839,18 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5663
5839
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5664
5840
|
...rest,
|
|
5665
5841
|
children: [
|
|
5666
|
-
/* @__PURE__ */
|
|
5667
|
-
/* @__PURE__ */
|
|
5668
|
-
/* @__PURE__ */
|
|
5842
|
+
/* @__PURE__ */ jsx144("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5843
|
+
/* @__PURE__ */ jsx144("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5844
|
+
/* @__PURE__ */ jsx144("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5669
5845
|
]
|
|
5670
5846
|
}
|
|
5671
5847
|
);
|
|
5672
5848
|
}
|
|
5673
5849
|
|
|
5674
5850
|
// src/components/icons/volume-x/index.tsx
|
|
5675
|
-
import { jsx as
|
|
5851
|
+
import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
5676
5852
|
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5677
|
-
return /* @__PURE__ */
|
|
5853
|
+
return /* @__PURE__ */ jsxs112(
|
|
5678
5854
|
"svg",
|
|
5679
5855
|
{
|
|
5680
5856
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5689,18 +5865,18 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5689
5865
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5690
5866
|
...rest,
|
|
5691
5867
|
children: [
|
|
5692
|
-
/* @__PURE__ */
|
|
5693
|
-
/* @__PURE__ */
|
|
5694
|
-
/* @__PURE__ */
|
|
5868
|
+
/* @__PURE__ */ jsx145("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5869
|
+
/* @__PURE__ */ jsx145("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5870
|
+
/* @__PURE__ */ jsx145("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5695
5871
|
]
|
|
5696
5872
|
}
|
|
5697
5873
|
);
|
|
5698
5874
|
}
|
|
5699
5875
|
|
|
5700
5876
|
// src/components/icons/wifi/index.tsx
|
|
5701
|
-
import { jsx as
|
|
5877
|
+
import { jsx as jsx146, jsxs as jsxs113 } from "react/jsx-runtime";
|
|
5702
5878
|
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5703
|
-
return /* @__PURE__ */
|
|
5879
|
+
return /* @__PURE__ */ jsxs113(
|
|
5704
5880
|
"svg",
|
|
5705
5881
|
{
|
|
5706
5882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5715,19 +5891,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5715
5891
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5716
5892
|
...rest,
|
|
5717
5893
|
children: [
|
|
5718
|
-
/* @__PURE__ */
|
|
5719
|
-
/* @__PURE__ */
|
|
5720
|
-
/* @__PURE__ */
|
|
5721
|
-
/* @__PURE__ */
|
|
5894
|
+
/* @__PURE__ */ jsx146("path", { d: "M12 20h.01" }),
|
|
5895
|
+
/* @__PURE__ */ jsx146("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5896
|
+
/* @__PURE__ */ jsx146("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5897
|
+
/* @__PURE__ */ jsx146("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5722
5898
|
]
|
|
5723
5899
|
}
|
|
5724
5900
|
);
|
|
5725
5901
|
}
|
|
5726
5902
|
|
|
5727
5903
|
// src/components/icons/zap/index.tsx
|
|
5728
|
-
import { jsx as
|
|
5904
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
5729
5905
|
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5730
|
-
return /* @__PURE__ */
|
|
5906
|
+
return /* @__PURE__ */ jsx147(
|
|
5731
5907
|
"svg",
|
|
5732
5908
|
{
|
|
5733
5909
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5741,7 +5917,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5741
5917
|
strokeLinejoin: "round",
|
|
5742
5918
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5743
5919
|
...rest,
|
|
5744
|
-
children: /* @__PURE__ */
|
|
5920
|
+
children: /* @__PURE__ */ jsx147("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5745
5921
|
}
|
|
5746
5922
|
);
|
|
5747
5923
|
}
|
|
@@ -5958,6 +6134,7 @@ export {
|
|
|
5958
6134
|
PrinterIcon,
|
|
5959
6135
|
Progress,
|
|
5960
6136
|
Radio,
|
|
6137
|
+
RadioGroup,
|
|
5961
6138
|
RedoIcon,
|
|
5962
6139
|
RefreshCwIcon,
|
|
5963
6140
|
SaveIcon,
|