@octavius2929-personal/design-system 1.3.0 → 1.4.0
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 +1052 -905
- 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 +24 -1
- package/dist/index.d.ts +24 -1
- package/dist/index.js +1034 -888
- 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,27 @@ 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 { forwardRef as
|
|
1406
|
+
import { forwardRef as forwardRef15 } from "react";
|
|
1262
1407
|
|
|
1263
1408
|
// src/components/base-field/index.tsx
|
|
1264
|
-
import { forwardRef as
|
|
1409
|
+
import { forwardRef as forwardRef14, useId as useId2 } from "react";
|
|
1265
1410
|
|
|
1266
1411
|
// src/components/base-field/use-styles.ts
|
|
1267
|
-
import { useMemo as
|
|
1412
|
+
import { useMemo as useMemo17 } from "react";
|
|
1268
1413
|
|
|
1269
1414
|
// src/components/base-field/use-styles.css.ts
|
|
1270
1415
|
var field = "use-styles_field__1c3cgd3";
|
|
@@ -1276,15 +1421,15 @@ var inputStartPad = "use-styles_inputStartPad__1c3cgd6";
|
|
|
1276
1421
|
var inputTrailingPad = "use-styles_inputTrailingPad__1c3cgd7";
|
|
1277
1422
|
var labelText = "use-styles_labelText__1c3cgd1";
|
|
1278
1423
|
var labelTextError = "use-styles_labelTextError__1c3cgd2";
|
|
1279
|
-
var
|
|
1424
|
+
var root10 = "use-styles_root__1c3cgd0";
|
|
1280
1425
|
var startIconSlot = "use-styles_startIconSlot__1c3cgda";
|
|
1281
1426
|
var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
|
|
1282
1427
|
|
|
1283
1428
|
// src/components/base-field/use-styles.ts
|
|
1284
|
-
function
|
|
1429
|
+
function useStyles14({ error, hasStartIcon, hasTrailing, className }) {
|
|
1285
1430
|
const { themeClass } = useTheme();
|
|
1286
|
-
return
|
|
1287
|
-
const
|
|
1431
|
+
return useMemo17(() => {
|
|
1432
|
+
const root25 = [themeClass, root10].filter(Boolean).join(" ");
|
|
1288
1433
|
const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
|
|
1289
1434
|
const input6 = [
|
|
1290
1435
|
input4,
|
|
@@ -1295,7 +1440,7 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1295
1440
|
].filter(Boolean).join(" ");
|
|
1296
1441
|
const helpText2 = [helpText, error && helpTextError].filter(Boolean).join(" ");
|
|
1297
1442
|
return {
|
|
1298
|
-
root:
|
|
1443
|
+
root: root25,
|
|
1299
1444
|
labelText: labelText2,
|
|
1300
1445
|
field,
|
|
1301
1446
|
input: input6,
|
|
@@ -1307,15 +1452,15 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1307
1452
|
}
|
|
1308
1453
|
|
|
1309
1454
|
// src/components/base-field/index.tsx
|
|
1310
|
-
import { jsx as
|
|
1311
|
-
var BaseField =
|
|
1312
|
-
const autoId =
|
|
1455
|
+
import { jsx as jsx18, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1456
|
+
var BaseField = forwardRef14(function BaseField2({ label: label8, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
|
|
1457
|
+
const autoId = useId2();
|
|
1313
1458
|
const controlId = id ?? autoId;
|
|
1314
1459
|
const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
|
|
1315
1460
|
const hasError = error === true || errorMessage != null;
|
|
1316
1461
|
const message2 = errorMessage ?? help;
|
|
1317
1462
|
const messageId = message2 != null ? `${controlId}-msg` : void 0;
|
|
1318
|
-
const classes =
|
|
1463
|
+
const classes = useStyles14({
|
|
1319
1464
|
error: hasError,
|
|
1320
1465
|
hasStartIcon: StartIcon != null,
|
|
1321
1466
|
hasTrailing: trailing2 != null,
|
|
@@ -1330,15 +1475,15 @@ var BaseField = forwardRef13(function BaseField2({ label: label7, help, error, s
|
|
|
1330
1475
|
"aria-invalid": hasError ? true : void 0,
|
|
1331
1476
|
"data-testid": slot("input")
|
|
1332
1477
|
};
|
|
1333
|
-
return /* @__PURE__ */
|
|
1334
|
-
|
|
1335
|
-
/* @__PURE__ */
|
|
1336
|
-
StartIcon != null && /* @__PURE__ */
|
|
1478
|
+
return /* @__PURE__ */ jsxs10("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
|
|
1479
|
+
label8 != null && /* @__PURE__ */ jsx18("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label8 }),
|
|
1480
|
+
/* @__PURE__ */ jsxs10("div", { className: classes.field, children: [
|
|
1481
|
+
StartIcon != null && /* @__PURE__ */ jsx18("span", { className: classes.startIconSlot, children: /* @__PURE__ */ jsx18(StartIcon, { size: 18 }) }),
|
|
1337
1482
|
children(control),
|
|
1338
|
-
trailing2 != null && /* @__PURE__ */
|
|
1483
|
+
trailing2 != null && /* @__PURE__ */ jsx18("span", { className: classes.trailingSlot, children: trailing2 })
|
|
1339
1484
|
] }),
|
|
1340
1485
|
message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
|
|
1341
|
-
/* @__PURE__ */
|
|
1486
|
+
/* @__PURE__ */ jsx18(
|
|
1342
1487
|
"span",
|
|
1343
1488
|
{
|
|
1344
1489
|
id: messageId,
|
|
@@ -1352,9 +1497,9 @@ var BaseField = forwardRef13(function BaseField2({ label: label7, help, error, s
|
|
|
1352
1497
|
});
|
|
1353
1498
|
|
|
1354
1499
|
// src/components/text-field/index.tsx
|
|
1355
|
-
import { jsx as
|
|
1356
|
-
var TextField =
|
|
1357
|
-
label:
|
|
1500
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
1501
|
+
var TextField = forwardRef15(function TextField2({
|
|
1502
|
+
label: label8,
|
|
1358
1503
|
help,
|
|
1359
1504
|
error,
|
|
1360
1505
|
startIcon,
|
|
@@ -1368,11 +1513,11 @@ var TextField = forwardRef14(function TextField2({
|
|
|
1368
1513
|
...rest
|
|
1369
1514
|
}, ref) {
|
|
1370
1515
|
const rawTestId = rest["data-testid"];
|
|
1371
|
-
return /* @__PURE__ */
|
|
1516
|
+
return /* @__PURE__ */ jsx19(
|
|
1372
1517
|
BaseField,
|
|
1373
1518
|
{
|
|
1374
1519
|
ref,
|
|
1375
|
-
label:
|
|
1520
|
+
label: label8,
|
|
1376
1521
|
help,
|
|
1377
1522
|
error,
|
|
1378
1523
|
startIcon,
|
|
@@ -1382,7 +1527,7 @@ var TextField = forwardRef14(function TextField2({
|
|
|
1382
1527
|
children: ({ ref: controlRef, ...control }) => multiline ? (
|
|
1383
1528
|
// En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
|
|
1384
1529
|
// tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
|
|
1385
|
-
/* @__PURE__ */
|
|
1530
|
+
/* @__PURE__ */ jsx19(
|
|
1386
1531
|
"textarea",
|
|
1387
1532
|
{
|
|
1388
1533
|
...rest,
|
|
@@ -1392,7 +1537,7 @@ var TextField = forwardRef14(function TextField2({
|
|
|
1392
1537
|
onChange: (e) => onChange?.(e.target.value)
|
|
1393
1538
|
}
|
|
1394
1539
|
)
|
|
1395
|
-
) : /* @__PURE__ */
|
|
1540
|
+
) : /* @__PURE__ */ jsx19(
|
|
1396
1541
|
"input",
|
|
1397
1542
|
{
|
|
1398
1543
|
...rest,
|
|
@@ -1408,12 +1553,12 @@ var TextField = forwardRef14(function TextField2({
|
|
|
1408
1553
|
});
|
|
1409
1554
|
|
|
1410
1555
|
// src/components/password-field/index.tsx
|
|
1411
|
-
import { forwardRef as
|
|
1556
|
+
import { forwardRef as forwardRef16, useState as useState3 } from "react";
|
|
1412
1557
|
|
|
1413
1558
|
// src/components/icons/eye/index.tsx
|
|
1414
|
-
import { jsx as
|
|
1559
|
+
import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1415
1560
|
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1416
|
-
return /* @__PURE__ */
|
|
1561
|
+
return /* @__PURE__ */ jsxs11(
|
|
1417
1562
|
"svg",
|
|
1418
1563
|
{
|
|
1419
1564
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1428,17 +1573,17 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1428
1573
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1429
1574
|
...rest,
|
|
1430
1575
|
children: [
|
|
1431
|
-
/* @__PURE__ */
|
|
1432
|
-
/* @__PURE__ */
|
|
1576
|
+
/* @__PURE__ */ jsx20("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
1577
|
+
/* @__PURE__ */ jsx20("circle", { cx: "12", cy: "12", r: "3" })
|
|
1433
1578
|
]
|
|
1434
1579
|
}
|
|
1435
1580
|
);
|
|
1436
1581
|
}
|
|
1437
1582
|
|
|
1438
1583
|
// src/components/icons/eye-off/index.tsx
|
|
1439
|
-
import { jsx as
|
|
1584
|
+
import { jsx as jsx21, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1440
1585
|
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1441
|
-
return /* @__PURE__ */
|
|
1586
|
+
return /* @__PURE__ */ jsxs12(
|
|
1442
1587
|
"svg",
|
|
1443
1588
|
{
|
|
1444
1589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1453,39 +1598,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1453
1598
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1454
1599
|
...rest,
|
|
1455
1600
|
children: [
|
|
1456
|
-
/* @__PURE__ */
|
|
1457
|
-
/* @__PURE__ */
|
|
1458
|
-
/* @__PURE__ */
|
|
1459
|
-
/* @__PURE__ */
|
|
1601
|
+
/* @__PURE__ */ jsx21("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
1602
|
+
/* @__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" }),
|
|
1603
|
+
/* @__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" }),
|
|
1604
|
+
/* @__PURE__ */ jsx21("path", { d: "m2 2 20 20" })
|
|
1460
1605
|
]
|
|
1461
1606
|
}
|
|
1462
1607
|
);
|
|
1463
1608
|
}
|
|
1464
1609
|
|
|
1465
1610
|
// src/components/password-field/use-styles.ts
|
|
1466
|
-
import { useMemo as
|
|
1611
|
+
import { useMemo as useMemo18 } from "react";
|
|
1467
1612
|
|
|
1468
1613
|
// src/components/password-field/use-styles.css.ts
|
|
1469
1614
|
var revealButton = "use-styles_revealButton__rsu9d50";
|
|
1470
1615
|
|
|
1471
1616
|
// src/components/password-field/use-styles.ts
|
|
1472
|
-
function
|
|
1473
|
-
return
|
|
1617
|
+
function useStyles15() {
|
|
1618
|
+
return useMemo18(() => ({ revealButton }), []);
|
|
1474
1619
|
}
|
|
1475
1620
|
|
|
1476
1621
|
// src/components/password-field/index.tsx
|
|
1477
|
-
import { jsx as
|
|
1478
|
-
var PasswordField =
|
|
1479
|
-
function PasswordField2({ label:
|
|
1622
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
1623
|
+
var PasswordField = forwardRef16(
|
|
1624
|
+
function PasswordField2({ label: label8, help, error, startIcon, onChange, id, className, ...rest }, ref) {
|
|
1480
1625
|
const [reveal, setReveal] = useState3(false);
|
|
1481
|
-
const classes =
|
|
1626
|
+
const classes = useStyles15();
|
|
1482
1627
|
const handleChange = (e) => {
|
|
1483
1628
|
onChange?.(e.target.value);
|
|
1484
1629
|
};
|
|
1485
1630
|
const handleToggleMouseDown = (e) => {
|
|
1486
1631
|
e.preventDefault();
|
|
1487
1632
|
};
|
|
1488
|
-
const toggleButton = /* @__PURE__ */
|
|
1633
|
+
const toggleButton = /* @__PURE__ */ jsx22(
|
|
1489
1634
|
"button",
|
|
1490
1635
|
{
|
|
1491
1636
|
type: "button",
|
|
@@ -1494,21 +1639,21 @@ var PasswordField = forwardRef15(
|
|
|
1494
1639
|
"aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
|
|
1495
1640
|
onMouseDown: handleToggleMouseDown,
|
|
1496
1641
|
onClick: () => setReveal((r) => !r),
|
|
1497
|
-
children: reveal ? /* @__PURE__ */
|
|
1642
|
+
children: reveal ? /* @__PURE__ */ jsx22(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ jsx22(EyeIcon, { size: 18 })
|
|
1498
1643
|
}
|
|
1499
1644
|
);
|
|
1500
|
-
return /* @__PURE__ */
|
|
1645
|
+
return /* @__PURE__ */ jsx22(
|
|
1501
1646
|
BaseField,
|
|
1502
1647
|
{
|
|
1503
1648
|
ref,
|
|
1504
|
-
label:
|
|
1649
|
+
label: label8,
|
|
1505
1650
|
help,
|
|
1506
1651
|
error,
|
|
1507
1652
|
startIcon,
|
|
1508
1653
|
trailing: toggleButton,
|
|
1509
1654
|
id,
|
|
1510
1655
|
className,
|
|
1511
|
-
children: (control) => /* @__PURE__ */
|
|
1656
|
+
children: (control) => /* @__PURE__ */ jsx22(
|
|
1512
1657
|
"input",
|
|
1513
1658
|
{
|
|
1514
1659
|
...rest,
|
|
@@ -1523,20 +1668,20 @@ var PasswordField = forwardRef15(
|
|
|
1523
1668
|
);
|
|
1524
1669
|
|
|
1525
1670
|
// src/components/money-field/index.tsx
|
|
1526
|
-
import { forwardRef as
|
|
1527
|
-
import { jsx as
|
|
1671
|
+
import { forwardRef as forwardRef17, useMemo as useMemo19, useState as useState4 } from "react";
|
|
1672
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1528
1673
|
function parseAmount(raw) {
|
|
1529
1674
|
const cleaned = raw.replace(/[^0-9.-]/g, "");
|
|
1530
1675
|
if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
|
|
1531
1676
|
const n = Number.parseFloat(cleaned);
|
|
1532
1677
|
return Number.isNaN(n) ? null : n;
|
|
1533
1678
|
}
|
|
1534
|
-
var MoneyField =
|
|
1679
|
+
var MoneyField = forwardRef17(function MoneyField2({
|
|
1535
1680
|
value,
|
|
1536
1681
|
onChange,
|
|
1537
1682
|
currency = "USD",
|
|
1538
1683
|
locale = "en-US",
|
|
1539
|
-
label:
|
|
1684
|
+
label: label8,
|
|
1540
1685
|
help,
|
|
1541
1686
|
error,
|
|
1542
1687
|
startIcon,
|
|
@@ -1548,7 +1693,7 @@ var MoneyField = forwardRef16(function MoneyField2({
|
|
|
1548
1693
|
}, ref) {
|
|
1549
1694
|
const [focused, setFocused] = useState4(false);
|
|
1550
1695
|
const [draft, setDraft] = useState4("");
|
|
1551
|
-
const formatter =
|
|
1696
|
+
const formatter = useMemo19(
|
|
1552
1697
|
() => new Intl.NumberFormat(locale, { style: "currency", currency }),
|
|
1553
1698
|
[locale, currency]
|
|
1554
1699
|
);
|
|
@@ -1564,17 +1709,17 @@ var MoneyField = forwardRef16(function MoneyField2({
|
|
|
1564
1709
|
onChange?.(parseAmount(draft));
|
|
1565
1710
|
onBlur?.(e);
|
|
1566
1711
|
};
|
|
1567
|
-
return /* @__PURE__ */
|
|
1712
|
+
return /* @__PURE__ */ jsx23(
|
|
1568
1713
|
BaseField,
|
|
1569
1714
|
{
|
|
1570
1715
|
ref,
|
|
1571
|
-
label:
|
|
1716
|
+
label: label8,
|
|
1572
1717
|
help,
|
|
1573
1718
|
error,
|
|
1574
1719
|
startIcon,
|
|
1575
1720
|
id,
|
|
1576
1721
|
className,
|
|
1577
|
-
children: (control) => /* @__PURE__ */
|
|
1722
|
+
children: (control) => /* @__PURE__ */ jsx23(
|
|
1578
1723
|
"input",
|
|
1579
1724
|
{
|
|
1580
1725
|
...rest,
|
|
@@ -1591,32 +1736,32 @@ var MoneyField = forwardRef16(function MoneyField2({
|
|
|
1591
1736
|
});
|
|
1592
1737
|
|
|
1593
1738
|
// src/components/icon-button/index.tsx
|
|
1594
|
-
import { forwardRef as
|
|
1739
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
1595
1740
|
|
|
1596
1741
|
// src/components/icon-button/use-styles.ts
|
|
1597
|
-
import { useMemo as
|
|
1742
|
+
import { useMemo as useMemo20 } from "react";
|
|
1598
1743
|
|
|
1599
1744
|
// src/components/icon-button/use-styles.css.ts
|
|
1600
1745
|
var accent = "use-styles_accent__18np0q02";
|
|
1601
1746
|
var active = "use-styles_active__18np0q01";
|
|
1602
|
-
var
|
|
1747
|
+
var root11 = "use-styles_root__18np0q00";
|
|
1603
1748
|
|
|
1604
1749
|
// src/components/icon-button/use-styles.ts
|
|
1605
|
-
function
|
|
1750
|
+
function useStyles16({
|
|
1606
1751
|
active: active2 = false,
|
|
1607
1752
|
tone: tone4 = "ink"
|
|
1608
1753
|
}) {
|
|
1609
1754
|
const { themeClass } = useTheme();
|
|
1610
|
-
const
|
|
1611
|
-
() => [themeClass,
|
|
1755
|
+
const root25 = useMemo20(
|
|
1756
|
+
() => [themeClass, root11, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
|
|
1612
1757
|
[themeClass, active2, tone4]
|
|
1613
1758
|
);
|
|
1614
|
-
return { root:
|
|
1759
|
+
return { root: root25 };
|
|
1615
1760
|
}
|
|
1616
1761
|
|
|
1617
1762
|
// src/components/icon-button/index.tsx
|
|
1618
|
-
import { jsx as
|
|
1619
|
-
var IconButton =
|
|
1763
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
1764
|
+
var IconButton = forwardRef18(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
|
|
1620
1765
|
if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
|
|
1621
1766
|
const restProps = rest;
|
|
1622
1767
|
const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
|
|
@@ -1624,61 +1769,61 @@ var IconButton = forwardRef17(function IconButton2({ icon: Icon, active: active2
|
|
|
1624
1769
|
console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
|
|
1625
1770
|
}
|
|
1626
1771
|
}
|
|
1627
|
-
const { root:
|
|
1772
|
+
const { root: root25 } = useStyles16({ active: active2, tone: tone4 });
|
|
1628
1773
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
1629
|
-
return /* @__PURE__ */
|
|
1774
|
+
return /* @__PURE__ */ jsx24(
|
|
1630
1775
|
"button",
|
|
1631
1776
|
{
|
|
1632
1777
|
ref,
|
|
1633
1778
|
type,
|
|
1634
|
-
className:
|
|
1779
|
+
className: root25,
|
|
1635
1780
|
"aria-label": title,
|
|
1636
1781
|
title,
|
|
1637
1782
|
"data-testid": dataTestId,
|
|
1638
1783
|
"data-state": states({ active: active2, disabled: rest.disabled }),
|
|
1639
1784
|
...rest,
|
|
1640
|
-
children: /* @__PURE__ */
|
|
1785
|
+
children: /* @__PURE__ */ jsx24(Icon, { size: 18 })
|
|
1641
1786
|
}
|
|
1642
1787
|
);
|
|
1643
1788
|
});
|
|
1644
1789
|
|
|
1645
1790
|
// src/components/card/index.tsx
|
|
1646
|
-
import { forwardRef as
|
|
1791
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1647
1792
|
|
|
1648
1793
|
// src/components/card/use-styles.ts
|
|
1649
|
-
import { useMemo as
|
|
1794
|
+
import { useMemo as useMemo21 } from "react";
|
|
1650
1795
|
|
|
1651
1796
|
// src/components/card/use-styles.css.ts
|
|
1652
1797
|
var body = "use-styles_body__1fuvd022";
|
|
1653
1798
|
var footer = "use-styles_footer__1fuvd023";
|
|
1654
1799
|
var header = "use-styles_header__1fuvd021";
|
|
1655
|
-
var
|
|
1800
|
+
var root12 = "use-styles_root__1fuvd020";
|
|
1656
1801
|
|
|
1657
1802
|
// src/components/card/use-styles.ts
|
|
1658
|
-
function
|
|
1803
|
+
function useStyles17() {
|
|
1659
1804
|
const { themeClass } = useTheme();
|
|
1660
|
-
const
|
|
1661
|
-
return { root:
|
|
1805
|
+
const root25 = useMemo21(() => `${themeClass} ${root12}`, [themeClass]);
|
|
1806
|
+
return { root: root25, header, body, footer };
|
|
1662
1807
|
}
|
|
1663
1808
|
|
|
1664
1809
|
// src/components/card/index.tsx
|
|
1665
|
-
import { jsx as
|
|
1666
|
-
var CardRoot =
|
|
1667
|
-
const { root:
|
|
1810
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1811
|
+
var CardRoot = forwardRef19(function Card({ children, testId, ...rest }, ref) {
|
|
1812
|
+
const { root: root25 } = useStyles17();
|
|
1668
1813
|
const { testId: dataTestId } = useTestId("layout", testId);
|
|
1669
|
-
return /* @__PURE__ */
|
|
1814
|
+
return /* @__PURE__ */ jsx25("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
|
|
1670
1815
|
});
|
|
1671
1816
|
function CardHeader({ children, ...rest }) {
|
|
1672
|
-
const { header: header3 } =
|
|
1673
|
-
return /* @__PURE__ */
|
|
1817
|
+
const { header: header3 } = useStyles17();
|
|
1818
|
+
return /* @__PURE__ */ jsx25("div", { className: header3, ...rest, children });
|
|
1674
1819
|
}
|
|
1675
1820
|
function CardBody({ children, ...rest }) {
|
|
1676
|
-
const { body: body3 } =
|
|
1677
|
-
return /* @__PURE__ */
|
|
1821
|
+
const { body: body3 } = useStyles17();
|
|
1822
|
+
return /* @__PURE__ */ jsx25("div", { className: body3, ...rest, children });
|
|
1678
1823
|
}
|
|
1679
1824
|
function CardFooter({ children, ...rest }) {
|
|
1680
|
-
const { footer: footer2 } =
|
|
1681
|
-
return /* @__PURE__ */
|
|
1825
|
+
const { footer: footer2 } = useStyles17();
|
|
1826
|
+
return /* @__PURE__ */ jsx25("div", { className: footer2, ...rest, children });
|
|
1682
1827
|
}
|
|
1683
1828
|
CardRoot.displayName = "Card";
|
|
1684
1829
|
CardHeader.displayName = "Card.Header";
|
|
@@ -1691,12 +1836,12 @@ var Card2 = Object.assign(CardRoot, {
|
|
|
1691
1836
|
});
|
|
1692
1837
|
|
|
1693
1838
|
// src/components/alert/index.tsx
|
|
1694
|
-
import { forwardRef as
|
|
1839
|
+
import { forwardRef as forwardRef20 } from "react";
|
|
1695
1840
|
|
|
1696
1841
|
// src/components/icons/circle-check/index.tsx
|
|
1697
|
-
import { jsx as
|
|
1842
|
+
import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1698
1843
|
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1699
|
-
return /* @__PURE__ */
|
|
1844
|
+
return /* @__PURE__ */ jsxs13(
|
|
1700
1845
|
"svg",
|
|
1701
1846
|
{
|
|
1702
1847
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1711,17 +1856,17 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
1711
1856
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1712
1857
|
...rest,
|
|
1713
1858
|
children: [
|
|
1714
|
-
/* @__PURE__ */
|
|
1715
|
-
/* @__PURE__ */
|
|
1859
|
+
/* @__PURE__ */ jsx26("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1860
|
+
/* @__PURE__ */ jsx26("path", { d: "m9 12 2 2 4-4" })
|
|
1716
1861
|
]
|
|
1717
1862
|
}
|
|
1718
1863
|
);
|
|
1719
1864
|
}
|
|
1720
1865
|
|
|
1721
1866
|
// src/components/icons/circle-x/index.tsx
|
|
1722
|
-
import { jsx as
|
|
1867
|
+
import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1723
1868
|
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1724
|
-
return /* @__PURE__ */
|
|
1869
|
+
return /* @__PURE__ */ jsxs14(
|
|
1725
1870
|
"svg",
|
|
1726
1871
|
{
|
|
1727
1872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1736,18 +1881,18 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1736
1881
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1737
1882
|
...rest,
|
|
1738
1883
|
children: [
|
|
1739
|
-
/* @__PURE__ */
|
|
1740
|
-
/* @__PURE__ */
|
|
1741
|
-
/* @__PURE__ */
|
|
1884
|
+
/* @__PURE__ */ jsx27("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1885
|
+
/* @__PURE__ */ jsx27("path", { d: "m15 9-6 6" }),
|
|
1886
|
+
/* @__PURE__ */ jsx27("path", { d: "m9 9 6 6" })
|
|
1742
1887
|
]
|
|
1743
1888
|
}
|
|
1744
1889
|
);
|
|
1745
1890
|
}
|
|
1746
1891
|
|
|
1747
1892
|
// src/components/icons/info/index.tsx
|
|
1748
|
-
import { jsx as
|
|
1893
|
+
import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1749
1894
|
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1750
|
-
return /* @__PURE__ */
|
|
1895
|
+
return /* @__PURE__ */ jsxs15(
|
|
1751
1896
|
"svg",
|
|
1752
1897
|
{
|
|
1753
1898
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1762,18 +1907,18 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1762
1907
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1763
1908
|
...rest,
|
|
1764
1909
|
children: [
|
|
1765
|
-
/* @__PURE__ */
|
|
1766
|
-
/* @__PURE__ */
|
|
1767
|
-
/* @__PURE__ */
|
|
1910
|
+
/* @__PURE__ */ jsx28("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1911
|
+
/* @__PURE__ */ jsx28("path", { d: "M12 16v-4" }),
|
|
1912
|
+
/* @__PURE__ */ jsx28("path", { d: "M12 8h.01" })
|
|
1768
1913
|
]
|
|
1769
1914
|
}
|
|
1770
1915
|
);
|
|
1771
1916
|
}
|
|
1772
1917
|
|
|
1773
1918
|
// src/components/icons/triangle-alert/index.tsx
|
|
1774
|
-
import { jsx as
|
|
1919
|
+
import { jsx as jsx29, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1775
1920
|
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1776
|
-
return /* @__PURE__ */
|
|
1921
|
+
return /* @__PURE__ */ jsxs16(
|
|
1777
1922
|
"svg",
|
|
1778
1923
|
{
|
|
1779
1924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1788,42 +1933,42 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
1788
1933
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1789
1934
|
...rest,
|
|
1790
1935
|
children: [
|
|
1791
|
-
/* @__PURE__ */
|
|
1792
|
-
/* @__PURE__ */
|
|
1793
|
-
/* @__PURE__ */
|
|
1936
|
+
/* @__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" }),
|
|
1937
|
+
/* @__PURE__ */ jsx29("path", { d: "M12 9v4" }),
|
|
1938
|
+
/* @__PURE__ */ jsx29("path", { d: "M12 17h.01" })
|
|
1794
1939
|
]
|
|
1795
1940
|
}
|
|
1796
1941
|
);
|
|
1797
1942
|
}
|
|
1798
1943
|
|
|
1799
1944
|
// src/components/alert/use-styles.ts
|
|
1800
|
-
import { useMemo as
|
|
1945
|
+
import { useMemo as useMemo22 } from "react";
|
|
1801
1946
|
|
|
1802
1947
|
// src/components/alert/use-styles.css.ts
|
|
1803
1948
|
var content2 = "use-styles_content__ivsh6u6";
|
|
1804
1949
|
var iconSlot = "use-styles_iconSlot__ivsh6u5";
|
|
1805
|
-
var
|
|
1950
|
+
var root13 = "use-styles_root__ivsh6u0";
|
|
1806
1951
|
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
1952
|
|
|
1808
1953
|
// src/components/alert/use-styles.ts
|
|
1809
|
-
function
|
|
1954
|
+
function useStyles18({
|
|
1810
1955
|
severity: severity2 = "info",
|
|
1811
1956
|
className
|
|
1812
1957
|
}) {
|
|
1813
1958
|
const { themeClass } = useTheme();
|
|
1814
|
-
const
|
|
1815
|
-
() => [themeClass,
|
|
1959
|
+
const root25 = useMemo22(
|
|
1960
|
+
() => [themeClass, root13, severity[severity2], className].filter(Boolean).join(" "),
|
|
1816
1961
|
[themeClass, severity2, className]
|
|
1817
1962
|
);
|
|
1818
1963
|
return {
|
|
1819
|
-
root:
|
|
1964
|
+
root: root25,
|
|
1820
1965
|
iconSlot,
|
|
1821
1966
|
content: content2
|
|
1822
1967
|
};
|
|
1823
1968
|
}
|
|
1824
1969
|
|
|
1825
1970
|
// src/components/alert/index.tsx
|
|
1826
|
-
import { jsx as
|
|
1971
|
+
import { jsx as jsx30, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1827
1972
|
var defaultIcons = {
|
|
1828
1973
|
info: InfoIcon,
|
|
1829
1974
|
ok: CircleCheckIcon,
|
|
@@ -1836,11 +1981,11 @@ var roleBySeverity = {
|
|
|
1836
1981
|
warn: "alert",
|
|
1837
1982
|
danger: "alert"
|
|
1838
1983
|
};
|
|
1839
|
-
var Alert =
|
|
1840
|
-
const styles =
|
|
1984
|
+
var Alert = forwardRef20(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
|
|
1985
|
+
const styles = useStyles18({ severity: severity2, className });
|
|
1841
1986
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1842
1987
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
1843
|
-
return /* @__PURE__ */
|
|
1988
|
+
return /* @__PURE__ */ jsxs17(
|
|
1844
1989
|
"div",
|
|
1845
1990
|
{
|
|
1846
1991
|
ref,
|
|
@@ -1849,10 +1994,10 @@ var Alert = forwardRef19(function Alert2({ severity: severity2 = "info", title,
|
|
|
1849
1994
|
"data-testid": dataTestId,
|
|
1850
1995
|
...rest,
|
|
1851
1996
|
children: [
|
|
1852
|
-
/* @__PURE__ */
|
|
1853
|
-
/* @__PURE__ */
|
|
1854
|
-
title != null && /* @__PURE__ */
|
|
1855
|
-
children != null && /* @__PURE__ */
|
|
1997
|
+
/* @__PURE__ */ jsx30("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ jsx30(IconComponent, {}) }),
|
|
1998
|
+
/* @__PURE__ */ jsxs17("div", { className: styles.content, "data-testid": slot("content"), children: [
|
|
1999
|
+
title != null && /* @__PURE__ */ jsx30(Typography, { variant: "h4", children: title }),
|
|
2000
|
+
children != null && /* @__PURE__ */ jsx30(Typography, { variant: "body", color: "muted", children })
|
|
1856
2001
|
] })
|
|
1857
2002
|
]
|
|
1858
2003
|
}
|
|
@@ -1862,15 +2007,15 @@ var Alert = forwardRef19(function Alert2({ severity: severity2 = "info", title,
|
|
|
1862
2007
|
// src/components/tooltip/index.tsx
|
|
1863
2008
|
import {
|
|
1864
2009
|
cloneElement,
|
|
1865
|
-
forwardRef as
|
|
2010
|
+
forwardRef as forwardRef21,
|
|
1866
2011
|
useEffect as useEffect4,
|
|
1867
|
-
useId as
|
|
1868
|
-
useRef as
|
|
2012
|
+
useId as useId3,
|
|
2013
|
+
useRef as useRef3,
|
|
1869
2014
|
useState as useState5
|
|
1870
2015
|
} from "react";
|
|
1871
2016
|
|
|
1872
2017
|
// src/components/tooltip/use-styles.ts
|
|
1873
|
-
import { useMemo as
|
|
2018
|
+
import { useMemo as useMemo23 } from "react";
|
|
1874
2019
|
|
|
1875
2020
|
// src/components/tooltip/use-styles.css.ts
|
|
1876
2021
|
var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
|
|
@@ -1878,15 +2023,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
|
|
|
1878
2023
|
var wrapper = "use-styles_wrapper__h9kvh0";
|
|
1879
2024
|
|
|
1880
2025
|
// src/components/tooltip/use-styles.ts
|
|
1881
|
-
function
|
|
2026
|
+
function useStyles19({
|
|
1882
2027
|
placement: placement2 = "top"
|
|
1883
2028
|
}) {
|
|
1884
2029
|
const { themeClass } = useTheme();
|
|
1885
|
-
const wrapper4 =
|
|
2030
|
+
const wrapper4 = useMemo23(
|
|
1886
2031
|
() => [themeClass, wrapper].filter(Boolean).join(" "),
|
|
1887
2032
|
[themeClass]
|
|
1888
2033
|
);
|
|
1889
|
-
const bubble2 =
|
|
2034
|
+
const bubble2 = useMemo23(
|
|
1890
2035
|
() => [bubble, placement[placement2]].filter(Boolean).join(" "),
|
|
1891
2036
|
[placement2]
|
|
1892
2037
|
);
|
|
@@ -1894,14 +2039,14 @@ function useStyles18({
|
|
|
1894
2039
|
}
|
|
1895
2040
|
|
|
1896
2041
|
// src/components/tooltip/index.tsx
|
|
1897
|
-
import { jsx as
|
|
2042
|
+
import { jsx as jsx31, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1898
2043
|
var HIDE_DELAY = 120;
|
|
1899
|
-
var Tooltip =
|
|
2044
|
+
var Tooltip = forwardRef21(function Tooltip2({ label: label8, children, placement: placement2, testId }, ref) {
|
|
1900
2045
|
const [open, setOpen] = useState5(false);
|
|
1901
|
-
const tooltipId =
|
|
1902
|
-
const { wrapper: wrapper4, bubble: bubble2 } =
|
|
2046
|
+
const tooltipId = useId3();
|
|
2047
|
+
const { wrapper: wrapper4, bubble: bubble2 } = useStyles19({ placement: placement2 });
|
|
1903
2048
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1904
|
-
const hideTimer =
|
|
2049
|
+
const hideTimer = useRef3(null);
|
|
1905
2050
|
const clearHide = () => {
|
|
1906
2051
|
if (hideTimer.current) {
|
|
1907
2052
|
clearTimeout(hideTimer.current);
|
|
@@ -1934,7 +2079,7 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1934
2079
|
const previousDescribedBy = children.props["aria-describedby"];
|
|
1935
2080
|
const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
|
|
1936
2081
|
const trigger2 = cloneElement(children, { "aria-describedby": describedBy });
|
|
1937
|
-
return /* @__PURE__ */
|
|
2082
|
+
return /* @__PURE__ */ jsxs18(
|
|
1938
2083
|
"span",
|
|
1939
2084
|
{
|
|
1940
2085
|
ref,
|
|
@@ -1947,7 +2092,7 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1947
2092
|
onKeyDown: handleKeyDown,
|
|
1948
2093
|
children: [
|
|
1949
2094
|
trigger2,
|
|
1950
|
-
open && /* @__PURE__ */
|
|
2095
|
+
open && /* @__PURE__ */ jsx31(
|
|
1951
2096
|
"span",
|
|
1952
2097
|
{
|
|
1953
2098
|
id: tooltipId,
|
|
@@ -1956,7 +2101,7 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1956
2101
|
"data-testid": slot("bubble"),
|
|
1957
2102
|
onMouseEnter: show,
|
|
1958
2103
|
onMouseLeave: scheduleHide,
|
|
1959
|
-
children:
|
|
2104
|
+
children: label8
|
|
1960
2105
|
}
|
|
1961
2106
|
)
|
|
1962
2107
|
]
|
|
@@ -1965,12 +2110,12 @@ var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placemen
|
|
|
1965
2110
|
});
|
|
1966
2111
|
|
|
1967
2112
|
// src/components/select/index.tsx
|
|
1968
|
-
import { forwardRef as
|
|
2113
|
+
import { forwardRef as forwardRef22, useEffect as useEffect5, useId as useId4, useRef as useRef4, useState as useState6 } from "react";
|
|
1969
2114
|
|
|
1970
2115
|
// src/components/icons/chevron-down/index.tsx
|
|
1971
|
-
import { jsx as
|
|
2116
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
1972
2117
|
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1973
|
-
return /* @__PURE__ */
|
|
2118
|
+
return /* @__PURE__ */ jsx32(
|
|
1974
2119
|
"svg",
|
|
1975
2120
|
{
|
|
1976
2121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1984,36 +2129,36 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
1984
2129
|
strokeLinejoin: "round",
|
|
1985
2130
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1986
2131
|
...rest,
|
|
1987
|
-
children: /* @__PURE__ */
|
|
2132
|
+
children: /* @__PURE__ */ jsx32("path", { d: "m6 9 6 6 6-6" })
|
|
1988
2133
|
}
|
|
1989
2134
|
);
|
|
1990
2135
|
}
|
|
1991
2136
|
|
|
1992
2137
|
// src/components/select/use-styles.ts
|
|
1993
|
-
import { useMemo as
|
|
2138
|
+
import { useMemo as useMemo24 } from "react";
|
|
1994
2139
|
|
|
1995
2140
|
// src/components/select/use-styles.css.ts
|
|
1996
2141
|
var chevron = "use-styles_chevron__1w1czpb4";
|
|
1997
2142
|
var chevronOpen = "use-styles_chevronOpen__1w1czpb5";
|
|
1998
|
-
var
|
|
2143
|
+
var label5 = "use-styles_label__1w1czpb1";
|
|
1999
2144
|
var menu = "use-styles_menu__1w1czpb6 surfaces_panelSurface__1qa7atn1";
|
|
2000
2145
|
var option = "use-styles_option__1w1czpb7";
|
|
2001
2146
|
var optionActive = "use-styles_optionActive__1w1czpb9";
|
|
2002
2147
|
var optionSelected = "use-styles_optionSelected__1w1czpb8";
|
|
2003
2148
|
var placeholder = "use-styles_placeholder__1w1czpb3";
|
|
2004
|
-
var
|
|
2149
|
+
var root14 = "use-styles_root__1w1czpb0";
|
|
2005
2150
|
var trigger = "use-styles_trigger__1w1czpb2";
|
|
2006
2151
|
|
|
2007
2152
|
// src/components/select/use-styles.ts
|
|
2008
|
-
function
|
|
2153
|
+
function useStyles20({
|
|
2009
2154
|
open = false
|
|
2010
2155
|
}) {
|
|
2011
2156
|
const { themeClass } = useTheme();
|
|
2012
|
-
return
|
|
2157
|
+
return useMemo24(() => {
|
|
2013
2158
|
const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
|
|
2014
2159
|
return {
|
|
2015
|
-
root: [themeClass,
|
|
2016
|
-
label:
|
|
2160
|
+
root: [themeClass, root14].filter(Boolean).join(" "),
|
|
2161
|
+
label: label5,
|
|
2017
2162
|
trigger,
|
|
2018
2163
|
placeholder,
|
|
2019
2164
|
chevron: chevron3,
|
|
@@ -2024,39 +2169,39 @@ function useStyles19({
|
|
|
2024
2169
|
}
|
|
2025
2170
|
|
|
2026
2171
|
// src/components/select/index.tsx
|
|
2027
|
-
import { jsx as
|
|
2028
|
-
var Select =
|
|
2172
|
+
import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
2173
|
+
var Select = forwardRef22(function Select2({
|
|
2029
2174
|
options,
|
|
2030
2175
|
value,
|
|
2031
2176
|
onChange,
|
|
2032
2177
|
placeholder: placeholder2,
|
|
2033
|
-
label:
|
|
2034
|
-
disabled:
|
|
2178
|
+
label: label8,
|
|
2179
|
+
disabled: disabled4,
|
|
2035
2180
|
"aria-label": ariaLabel,
|
|
2036
2181
|
"aria-labelledby": ariaLabelledBy,
|
|
2037
2182
|
...rest
|
|
2038
2183
|
}, ref) {
|
|
2039
2184
|
const [open, setOpen] = useState6(false);
|
|
2040
2185
|
const [activeIndex, setActiveIndex] = useState6(0);
|
|
2041
|
-
const rootRef =
|
|
2186
|
+
const rootRef = useRef4(null);
|
|
2042
2187
|
const setRootRef = (node) => {
|
|
2043
2188
|
rootRef.current = node;
|
|
2044
2189
|
if (typeof ref === "function") ref(node);
|
|
2045
2190
|
else if (ref) ref.current = node;
|
|
2046
2191
|
};
|
|
2047
|
-
const baseId =
|
|
2192
|
+
const baseId = useId4();
|
|
2048
2193
|
const labelId = `${baseId}-label`;
|
|
2049
2194
|
const optionId = (index) => `${baseId}-option-${index}`;
|
|
2050
|
-
const triggerLabelledBy = [
|
|
2195
|
+
const triggerLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
2051
2196
|
const {
|
|
2052
|
-
root:
|
|
2197
|
+
root: root25,
|
|
2053
2198
|
label: labelClass,
|
|
2054
2199
|
trigger: trigger2,
|
|
2055
2200
|
placeholder: placeholderClass,
|
|
2056
2201
|
chevron: chevron3,
|
|
2057
2202
|
menu: menu2,
|
|
2058
2203
|
optionClass
|
|
2059
|
-
} =
|
|
2204
|
+
} = useStyles20({ open });
|
|
2060
2205
|
useEffect5(() => {
|
|
2061
2206
|
if (!open) return;
|
|
2062
2207
|
const onPointerDown = (event) => {
|
|
@@ -2083,7 +2228,7 @@ var Select = forwardRef21(function Select2({
|
|
|
2083
2228
|
setOpen(true);
|
|
2084
2229
|
};
|
|
2085
2230
|
const handleKeyDown = (event) => {
|
|
2086
|
-
if (
|
|
2231
|
+
if (disabled4) return;
|
|
2087
2232
|
switch (event.key) {
|
|
2088
2233
|
case "Escape":
|
|
2089
2234
|
setOpen(false);
|
|
@@ -2117,21 +2262,21 @@ var Select = forwardRef21(function Select2({
|
|
|
2117
2262
|
break;
|
|
2118
2263
|
}
|
|
2119
2264
|
};
|
|
2120
|
-
return /* @__PURE__ */
|
|
2121
|
-
|
|
2122
|
-
/* @__PURE__ */
|
|
2265
|
+
return /* @__PURE__ */ jsxs19("div", { ref: setRootRef, className: root25, ...rest, children: [
|
|
2266
|
+
label8 && /* @__PURE__ */ jsx33("span", { id: labelId, className: labelClass, children: label8 }),
|
|
2267
|
+
/* @__PURE__ */ jsxs19(
|
|
2123
2268
|
"button",
|
|
2124
2269
|
{
|
|
2125
2270
|
type: "button",
|
|
2126
2271
|
className: trigger2,
|
|
2127
|
-
disabled:
|
|
2272
|
+
disabled: disabled4,
|
|
2128
2273
|
"aria-haspopup": "listbox",
|
|
2129
2274
|
"aria-expanded": open,
|
|
2130
2275
|
"aria-label": ariaLabel,
|
|
2131
2276
|
"aria-labelledby": triggerLabelledBy,
|
|
2132
2277
|
"aria-activedescendant": open ? optionId(activeIndex) : void 0,
|
|
2133
2278
|
onClick: () => {
|
|
2134
|
-
if (
|
|
2279
|
+
if (disabled4) return;
|
|
2135
2280
|
if (open) {
|
|
2136
2281
|
setOpen(false);
|
|
2137
2282
|
} else {
|
|
@@ -2140,17 +2285,17 @@ var Select = forwardRef21(function Select2({
|
|
|
2140
2285
|
},
|
|
2141
2286
|
onKeyDown: handleKeyDown,
|
|
2142
2287
|
children: [
|
|
2143
|
-
selected4 ? selected4.label : /* @__PURE__ */
|
|
2144
|
-
/* @__PURE__ */
|
|
2288
|
+
selected4 ? selected4.label : /* @__PURE__ */ jsx33("span", { className: placeholderClass, children: placeholder2 }),
|
|
2289
|
+
/* @__PURE__ */ jsx33("span", { className: chevron3, children: /* @__PURE__ */ jsx33(ChevronDownIcon, { size: 18 }) })
|
|
2145
2290
|
]
|
|
2146
2291
|
}
|
|
2147
2292
|
),
|
|
2148
|
-
open && /* @__PURE__ */
|
|
2293
|
+
open && /* @__PURE__ */ jsx33("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
|
|
2149
2294
|
const isSelected = option2.value === value;
|
|
2150
2295
|
const isActive = index === activeIndex;
|
|
2151
2296
|
return (
|
|
2152
2297
|
// biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
|
|
2153
|
-
/* @__PURE__ */
|
|
2298
|
+
/* @__PURE__ */ jsx33(
|
|
2154
2299
|
"div",
|
|
2155
2300
|
{
|
|
2156
2301
|
id: optionId(index),
|
|
@@ -2169,29 +2314,29 @@ var Select = forwardRef21(function Select2({
|
|
|
2169
2314
|
});
|
|
2170
2315
|
|
|
2171
2316
|
// src/components/slider/index.tsx
|
|
2172
|
-
import { forwardRef as
|
|
2317
|
+
import { forwardRef as forwardRef23 } from "react";
|
|
2173
2318
|
|
|
2174
2319
|
// src/components/slider/use-styles.ts
|
|
2175
|
-
import { useMemo as
|
|
2320
|
+
import { useMemo as useMemo25 } from "react";
|
|
2176
2321
|
|
|
2177
2322
|
// src/components/slider/use-styles.css.ts
|
|
2178
2323
|
var input5 = "use-styles_input__okw59n3";
|
|
2179
|
-
var
|
|
2324
|
+
var label6 = "use-styles_label__okw59n5";
|
|
2180
2325
|
var range = "use-styles_range__okw59n2";
|
|
2181
|
-
var
|
|
2326
|
+
var root15 = "use-styles_root__okw59n0";
|
|
2182
2327
|
var thumb = "use-styles_thumb__okw59n4";
|
|
2183
2328
|
var track3 = "use-styles_track__okw59n1";
|
|
2184
2329
|
var wrapper2 = "use-styles_wrapper__okw59n6";
|
|
2185
2330
|
|
|
2186
2331
|
// src/components/slider/use-styles.ts
|
|
2187
|
-
function
|
|
2332
|
+
function useStyles21() {
|
|
2188
2333
|
const { themeClass } = useTheme();
|
|
2189
|
-
return
|
|
2190
|
-
const
|
|
2334
|
+
return useMemo25(() => {
|
|
2335
|
+
const root25 = [themeClass, root15].filter(Boolean).join(" ");
|
|
2191
2336
|
return {
|
|
2192
2337
|
wrapper: wrapper2,
|
|
2193
|
-
label:
|
|
2194
|
-
root:
|
|
2338
|
+
label: label6,
|
|
2339
|
+
root: root25,
|
|
2195
2340
|
track: track3,
|
|
2196
2341
|
range,
|
|
2197
2342
|
thumb,
|
|
@@ -2201,21 +2346,21 @@ function useStyles20() {
|
|
|
2201
2346
|
}
|
|
2202
2347
|
|
|
2203
2348
|
// src/components/slider/index.tsx
|
|
2204
|
-
import { jsx as
|
|
2205
|
-
var Slider =
|
|
2206
|
-
const { wrapper: wrapper4, label: labelClass, root:
|
|
2349
|
+
import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
2350
|
+
var Slider = forwardRef23(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled4, label: label8, ...rest }, ref) {
|
|
2351
|
+
const { wrapper: wrapper4, label: labelClass, root: root25, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles21();
|
|
2207
2352
|
const span = max - min;
|
|
2208
2353
|
const percent = span > 0 ? (value - min) / span * 100 : 0;
|
|
2209
2354
|
const clamped = Math.max(0, Math.min(100, percent));
|
|
2210
2355
|
const handleChange = (e) => {
|
|
2211
2356
|
onChange?.(Number(e.target.value));
|
|
2212
2357
|
};
|
|
2213
|
-
return /* @__PURE__ */
|
|
2214
|
-
|
|
2215
|
-
/* @__PURE__ */
|
|
2216
|
-
/* @__PURE__ */
|
|
2217
|
-
/* @__PURE__ */
|
|
2218
|
-
/* @__PURE__ */
|
|
2358
|
+
return /* @__PURE__ */ jsxs20("span", { className: wrapper4, children: [
|
|
2359
|
+
label8 ? /* @__PURE__ */ jsx34("span", { className: labelClass, children: label8 }) : null,
|
|
2360
|
+
/* @__PURE__ */ jsxs20("span", { className: root25, children: [
|
|
2361
|
+
/* @__PURE__ */ jsx34("span", { className: track4 }),
|
|
2362
|
+
/* @__PURE__ */ jsx34("span", { className: range2, style: { width: `${clamped}%` } }),
|
|
2363
|
+
/* @__PURE__ */ jsx34(
|
|
2219
2364
|
"input",
|
|
2220
2365
|
{
|
|
2221
2366
|
ref,
|
|
@@ -2225,21 +2370,21 @@ var Slider = forwardRef22(function Slider2({ value = 0, onChange, min = 0, max =
|
|
|
2225
2370
|
max,
|
|
2226
2371
|
step: step2,
|
|
2227
2372
|
value,
|
|
2228
|
-
disabled:
|
|
2373
|
+
disabled: disabled4,
|
|
2229
2374
|
onChange: handleChange,
|
|
2230
2375
|
...rest
|
|
2231
2376
|
}
|
|
2232
2377
|
),
|
|
2233
|
-
/* @__PURE__ */
|
|
2378
|
+
/* @__PURE__ */ jsx34("span", { className: thumb2, style: { left: `${clamped}%` } })
|
|
2234
2379
|
] })
|
|
2235
2380
|
] });
|
|
2236
2381
|
});
|
|
2237
2382
|
|
|
2238
2383
|
// src/components/accordion/index.tsx
|
|
2239
|
-
import { forwardRef as
|
|
2384
|
+
import { forwardRef as forwardRef24, useState as useState7 } from "react";
|
|
2240
2385
|
|
|
2241
2386
|
// src/components/accordion/use-styles.ts
|
|
2242
|
-
import { useMemo as
|
|
2387
|
+
import { useMemo as useMemo26 } from "react";
|
|
2243
2388
|
|
|
2244
2389
|
// src/components/accordion/use-styles.css.ts
|
|
2245
2390
|
var chevron2 = "use-styles_chevron__1cjrdh93";
|
|
@@ -2247,14 +2392,14 @@ var chevronOpen2 = "use-styles_chevronOpen__1cjrdh94";
|
|
|
2247
2392
|
var header2 = "use-styles_header__1cjrdh92";
|
|
2248
2393
|
var item = "use-styles_item__1cjrdh91";
|
|
2249
2394
|
var panel = "use-styles_panel__1cjrdh95";
|
|
2250
|
-
var
|
|
2395
|
+
var root16 = "use-styles_root__1cjrdh90";
|
|
2251
2396
|
|
|
2252
2397
|
// src/components/accordion/use-styles.ts
|
|
2253
|
-
function
|
|
2398
|
+
function useStyles22({ className }) {
|
|
2254
2399
|
const { themeClass } = useTheme();
|
|
2255
|
-
return
|
|
2400
|
+
return useMemo26(
|
|
2256
2401
|
() => ({
|
|
2257
|
-
root: [themeClass,
|
|
2402
|
+
root: [themeClass, root16, className].filter(Boolean).join(" "),
|
|
2258
2403
|
item,
|
|
2259
2404
|
header: header2,
|
|
2260
2405
|
chevronFor: (open) => [chevron2, open && chevronOpen2].filter(Boolean).join(" "),
|
|
@@ -2265,10 +2410,10 @@ function useStyles21({ className }) {
|
|
|
2265
2410
|
}
|
|
2266
2411
|
|
|
2267
2412
|
// src/components/accordion/index.tsx
|
|
2268
|
-
import { jsx as
|
|
2269
|
-
var Accordion =
|
|
2413
|
+
import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
2414
|
+
var Accordion = forwardRef24(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
|
|
2270
2415
|
const [open, setOpen] = useState7(defaultOpen);
|
|
2271
|
-
const { root:
|
|
2416
|
+
const { root: root25, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles22({ className });
|
|
2272
2417
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
2273
2418
|
const toggle = (id) => {
|
|
2274
2419
|
setOpen((current2) => {
|
|
@@ -2277,19 +2422,19 @@ var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defa
|
|
|
2277
2422
|
return multiple ? [...current2, id] : [id];
|
|
2278
2423
|
});
|
|
2279
2424
|
};
|
|
2280
|
-
return /* @__PURE__ */
|
|
2425
|
+
return /* @__PURE__ */ jsx35("div", { ref, className: root25, "data-testid": dataTestId, children: items.map((it) => {
|
|
2281
2426
|
const isOpen = open.includes(it.id);
|
|
2282
2427
|
const panelId = `accordion-panel-${it.id}`;
|
|
2283
2428
|
const headerId = `accordion-header-${it.id}`;
|
|
2284
2429
|
const itemSlot = slot(`item-${it.id}`);
|
|
2285
|
-
return /* @__PURE__ */
|
|
2430
|
+
return /* @__PURE__ */ jsxs21(
|
|
2286
2431
|
"div",
|
|
2287
2432
|
{
|
|
2288
2433
|
className: item3,
|
|
2289
2434
|
"data-testid": itemSlot,
|
|
2290
2435
|
"data-state": states({ expanded: isOpen }),
|
|
2291
2436
|
children: [
|
|
2292
|
-
/* @__PURE__ */
|
|
2437
|
+
/* @__PURE__ */ jsxs21(
|
|
2293
2438
|
"button",
|
|
2294
2439
|
{
|
|
2295
2440
|
type: "button",
|
|
@@ -2301,11 +2446,11 @@ var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defa
|
|
|
2301
2446
|
onClick: () => toggle(it.id),
|
|
2302
2447
|
children: [
|
|
2303
2448
|
it.title,
|
|
2304
|
-
/* @__PURE__ */
|
|
2449
|
+
/* @__PURE__ */ jsx35(ChevronDownIcon, { className: chevronFor(isOpen) })
|
|
2305
2450
|
]
|
|
2306
2451
|
}
|
|
2307
2452
|
),
|
|
2308
|
-
isOpen && /* @__PURE__ */
|
|
2453
|
+
isOpen && /* @__PURE__ */ jsx35(
|
|
2309
2454
|
"div",
|
|
2310
2455
|
{
|
|
2311
2456
|
id: panelId,
|
|
@@ -2324,12 +2469,12 @@ var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defa
|
|
|
2324
2469
|
});
|
|
2325
2470
|
|
|
2326
2471
|
// src/components/breadcrumbs/index.tsx
|
|
2327
|
-
import { Fragment, forwardRef as
|
|
2472
|
+
import { Fragment, forwardRef as forwardRef25 } from "react";
|
|
2328
2473
|
|
|
2329
2474
|
// src/components/icons/chevron-right/index.tsx
|
|
2330
|
-
import { jsx as
|
|
2475
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
2331
2476
|
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2332
|
-
return /* @__PURE__ */
|
|
2477
|
+
return /* @__PURE__ */ jsx36(
|
|
2333
2478
|
"svg",
|
|
2334
2479
|
{
|
|
2335
2480
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2343,52 +2488,52 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2343
2488
|
strokeLinejoin: "round",
|
|
2344
2489
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2345
2490
|
...rest,
|
|
2346
|
-
children: /* @__PURE__ */
|
|
2491
|
+
children: /* @__PURE__ */ jsx36("path", { d: "m9 18 6-6-6-6" })
|
|
2347
2492
|
}
|
|
2348
2493
|
);
|
|
2349
2494
|
}
|
|
2350
2495
|
|
|
2351
2496
|
// src/components/breadcrumbs/use-styles.ts
|
|
2352
|
-
import { useMemo as
|
|
2497
|
+
import { useMemo as useMemo27 } from "react";
|
|
2353
2498
|
|
|
2354
2499
|
// src/components/breadcrumbs/use-styles.css.ts
|
|
2355
2500
|
var crumb = "use-styles_crumb__7u0du61";
|
|
2356
2501
|
var current = "use-styles_current__7u0du62";
|
|
2357
|
-
var
|
|
2502
|
+
var root17 = "use-styles_root__7u0du60";
|
|
2358
2503
|
var separator = "use-styles_separator__7u0du63";
|
|
2359
2504
|
|
|
2360
2505
|
// src/components/breadcrumbs/use-styles.ts
|
|
2361
|
-
function
|
|
2506
|
+
function useStyles23({ className }) {
|
|
2362
2507
|
const { themeClass } = useTheme();
|
|
2363
|
-
const
|
|
2364
|
-
() => [themeClass,
|
|
2508
|
+
const root25 = useMemo27(
|
|
2509
|
+
() => [themeClass, root17, className].filter(Boolean).join(" "),
|
|
2365
2510
|
[themeClass, className]
|
|
2366
2511
|
);
|
|
2367
|
-
return { root:
|
|
2512
|
+
return { root: root25, crumb, current, separator };
|
|
2368
2513
|
}
|
|
2369
2514
|
|
|
2370
2515
|
// src/components/breadcrumbs/index.tsx
|
|
2371
|
-
import { jsx as
|
|
2372
|
-
var Breadcrumbs =
|
|
2373
|
-
const { root:
|
|
2516
|
+
import { jsx as jsx37, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
2517
|
+
var Breadcrumbs = forwardRef25(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
|
|
2518
|
+
const { root: root25, crumb: crumb2, current: current2, separator: separator2 } = useStyles23({ className });
|
|
2374
2519
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2375
|
-
return /* @__PURE__ */
|
|
2520
|
+
return /* @__PURE__ */ jsx37("nav", { ref, "aria-label": "Breadcrumb", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2376
2521
|
const isLast = index === items.length - 1;
|
|
2377
2522
|
const key = index;
|
|
2378
|
-
return /* @__PURE__ */
|
|
2379
|
-
isLast ? /* @__PURE__ */
|
|
2380
|
-
!isLast && /* @__PURE__ */
|
|
2523
|
+
return /* @__PURE__ */ jsxs22(Fragment, { children: [
|
|
2524
|
+
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 }),
|
|
2525
|
+
!isLast && /* @__PURE__ */ jsx37("span", { className: separator2, children: /* @__PURE__ */ jsx37(ChevronRightIcon, { size: 14 }) })
|
|
2381
2526
|
] }, key);
|
|
2382
2527
|
}) });
|
|
2383
2528
|
});
|
|
2384
2529
|
|
|
2385
2530
|
// src/components/pagination/index.tsx
|
|
2386
|
-
import { forwardRef as
|
|
2531
|
+
import { forwardRef as forwardRef26 } from "react";
|
|
2387
2532
|
|
|
2388
2533
|
// src/components/icons/chevron-left/index.tsx
|
|
2389
|
-
import { jsx as
|
|
2534
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
2390
2535
|
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2391
|
-
return /* @__PURE__ */
|
|
2536
|
+
return /* @__PURE__ */ jsx38(
|
|
2392
2537
|
"svg",
|
|
2393
2538
|
{
|
|
2394
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2402,27 +2547,27 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2402
2547
|
strokeLinejoin: "round",
|
|
2403
2548
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2404
2549
|
...rest,
|
|
2405
|
-
children: /* @__PURE__ */
|
|
2550
|
+
children: /* @__PURE__ */ jsx38("path", { d: "m15 18-6-6 6-6" })
|
|
2406
2551
|
}
|
|
2407
2552
|
);
|
|
2408
2553
|
}
|
|
2409
2554
|
|
|
2410
2555
|
// src/components/pagination/use-styles.ts
|
|
2411
|
-
import { useMemo as
|
|
2556
|
+
import { useMemo as useMemo28 } from "react";
|
|
2412
2557
|
|
|
2413
2558
|
// src/components/pagination/use-styles.css.ts
|
|
2414
2559
|
var ellipsis = "use-styles_ellipsis__1azgzoh3";
|
|
2415
2560
|
var nav = "use-styles_nav__1azgzoh4";
|
|
2416
2561
|
var pageActive = "use-styles_pageActive__1azgzoh2";
|
|
2417
2562
|
var pageBtn = "use-styles_pageBtn__1azgzoh1";
|
|
2418
|
-
var
|
|
2563
|
+
var root18 = "use-styles_root__1azgzoh0";
|
|
2419
2564
|
|
|
2420
2565
|
// src/components/pagination/use-styles.ts
|
|
2421
|
-
function
|
|
2566
|
+
function useStyles24() {
|
|
2422
2567
|
const { themeClass } = useTheme();
|
|
2423
|
-
return
|
|
2568
|
+
return useMemo28(
|
|
2424
2569
|
() => ({
|
|
2425
|
-
root: [themeClass,
|
|
2570
|
+
root: [themeClass, root18].filter(Boolean).join(" "),
|
|
2426
2571
|
pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
|
|
2427
2572
|
ellipsis,
|
|
2428
2573
|
nav: [pageBtn, nav].join(" ")
|
|
@@ -2432,7 +2577,7 @@ function useStyles23() {
|
|
|
2432
2577
|
}
|
|
2433
2578
|
|
|
2434
2579
|
// src/components/pagination/index.tsx
|
|
2435
|
-
import { jsx as
|
|
2580
|
+
import { jsx as jsx39, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
2436
2581
|
function buildItems(count, page, siblingCount) {
|
|
2437
2582
|
const total = Math.max(1, count);
|
|
2438
2583
|
const first = 1;
|
|
@@ -2446,15 +2591,15 @@ function buildItems(count, page, siblingCount) {
|
|
|
2446
2591
|
if (last > first) items.push(last);
|
|
2447
2592
|
return items;
|
|
2448
2593
|
}
|
|
2449
|
-
var Pagination =
|
|
2450
|
-
const { root:
|
|
2594
|
+
var Pagination = forwardRef26(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
|
|
2595
|
+
const { root: root25, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles24();
|
|
2451
2596
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2452
2597
|
const total = Math.max(1, count);
|
|
2453
2598
|
const current2 = Math.min(Math.max(1, page), total);
|
|
2454
2599
|
const items = buildItems(total, current2, siblingCount);
|
|
2455
2600
|
const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
|
|
2456
|
-
return /* @__PURE__ */
|
|
2457
|
-
/* @__PURE__ */
|
|
2601
|
+
return /* @__PURE__ */ jsxs23("nav", { ref, className: root25, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
|
|
2602
|
+
/* @__PURE__ */ jsx39(
|
|
2458
2603
|
"button",
|
|
2459
2604
|
{
|
|
2460
2605
|
type: "button",
|
|
@@ -2463,11 +2608,11 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2463
2608
|
disabled: current2 <= 1,
|
|
2464
2609
|
"data-testid": slot("prev"),
|
|
2465
2610
|
onClick: () => go(current2 - 1),
|
|
2466
|
-
children: /* @__PURE__ */
|
|
2611
|
+
children: /* @__PURE__ */ jsx39(ChevronLeftIcon, { size: 18 })
|
|
2467
2612
|
}
|
|
2468
2613
|
),
|
|
2469
2614
|
items.map(
|
|
2470
|
-
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */
|
|
2615
|
+
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ jsx39(
|
|
2471
2616
|
"span",
|
|
2472
2617
|
{
|
|
2473
2618
|
className: ellipsis2,
|
|
@@ -2475,7 +2620,7 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2475
2620
|
children: "\u2026"
|
|
2476
2621
|
},
|
|
2477
2622
|
`ellipsis-${index}`
|
|
2478
|
-
) : /* @__PURE__ */
|
|
2623
|
+
) : /* @__PURE__ */ jsx39(
|
|
2479
2624
|
"button",
|
|
2480
2625
|
{
|
|
2481
2626
|
type: "button",
|
|
@@ -2488,7 +2633,7 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2488
2633
|
item3
|
|
2489
2634
|
)
|
|
2490
2635
|
),
|
|
2491
|
-
/* @__PURE__ */
|
|
2636
|
+
/* @__PURE__ */ jsx39(
|
|
2492
2637
|
"button",
|
|
2493
2638
|
{
|
|
2494
2639
|
type: "button",
|
|
@@ -2497,55 +2642,55 @@ var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange,
|
|
|
2497
2642
|
disabled: current2 >= total,
|
|
2498
2643
|
"data-testid": slot("next"),
|
|
2499
2644
|
onClick: () => go(current2 + 1),
|
|
2500
|
-
children: /* @__PURE__ */
|
|
2645
|
+
children: /* @__PURE__ */ jsx39(ChevronRightIcon, { size: 18 })
|
|
2501
2646
|
}
|
|
2502
2647
|
)
|
|
2503
2648
|
] });
|
|
2504
2649
|
});
|
|
2505
2650
|
|
|
2506
2651
|
// src/components/stepper/index.tsx
|
|
2507
|
-
import { Fragment as Fragment2, forwardRef as
|
|
2652
|
+
import { Fragment as Fragment2, forwardRef as forwardRef27 } from "react";
|
|
2508
2653
|
|
|
2509
2654
|
// src/components/stepper/use-styles.ts
|
|
2510
|
-
import { useMemo as
|
|
2655
|
+
import { useMemo as useMemo29 } from "react";
|
|
2511
2656
|
|
|
2512
2657
|
// src/components/stepper/use-styles.css.ts
|
|
2513
2658
|
var connector = "use-styles_connector__79pt4e7";
|
|
2514
|
-
var
|
|
2659
|
+
var label7 = "use-styles_label__79pt4e5";
|
|
2515
2660
|
var labelActive = "use-styles_labelActive__79pt4e6";
|
|
2516
2661
|
var marker = "use-styles_marker__79pt4e2";
|
|
2517
2662
|
var markerActive = "use-styles_markerActive__79pt4e3";
|
|
2518
2663
|
var markerDone = "use-styles_markerDone__79pt4e4";
|
|
2519
|
-
var
|
|
2664
|
+
var root19 = "use-styles_root__79pt4e0";
|
|
2520
2665
|
var step = "use-styles_step__79pt4e1";
|
|
2521
2666
|
|
|
2522
2667
|
// src/components/stepper/use-styles.ts
|
|
2523
|
-
function
|
|
2668
|
+
function useStyles25({ className }) {
|
|
2524
2669
|
const { themeClass } = useTheme();
|
|
2525
|
-
return
|
|
2526
|
-
const
|
|
2670
|
+
return useMemo29(() => {
|
|
2671
|
+
const root25 = [themeClass, root19, className].filter(Boolean).join(" ");
|
|
2527
2672
|
const markerFor = (state) => [
|
|
2528
2673
|
marker,
|
|
2529
2674
|
state === "active" && markerActive,
|
|
2530
2675
|
state === "done" && markerDone
|
|
2531
2676
|
].filter(Boolean).join(" ");
|
|
2532
|
-
const labelFor = (active2) => [
|
|
2533
|
-
return { root:
|
|
2677
|
+
const labelFor = (active2) => [label7, active2 && labelActive].filter(Boolean).join(" ");
|
|
2678
|
+
return { root: root25, step, connector, markerFor, labelFor };
|
|
2534
2679
|
}, [themeClass, className]);
|
|
2535
2680
|
}
|
|
2536
2681
|
|
|
2537
2682
|
// src/components/stepper/index.tsx
|
|
2538
|
-
import { jsx as
|
|
2539
|
-
var Stepper =
|
|
2540
|
-
const { root:
|
|
2683
|
+
import { jsx as jsx40, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
2684
|
+
var Stepper = forwardRef27(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
|
|
2685
|
+
const { root: root25, step: step2, connector: connector2, markerFor, labelFor } = useStyles25({ className });
|
|
2541
2686
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2542
|
-
return /* @__PURE__ */
|
|
2687
|
+
return /* @__PURE__ */ jsx40("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
|
|
2543
2688
|
const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
|
|
2544
2689
|
const isActive = state === "active";
|
|
2545
2690
|
return (
|
|
2546
2691
|
// biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
|
|
2547
|
-
/* @__PURE__ */
|
|
2548
|
-
/* @__PURE__ */
|
|
2692
|
+
/* @__PURE__ */ jsxs24(Fragment2, { children: [
|
|
2693
|
+
/* @__PURE__ */ jsxs24(
|
|
2549
2694
|
"div",
|
|
2550
2695
|
{
|
|
2551
2696
|
className: step2,
|
|
@@ -2553,47 +2698,47 @@ var Stepper = forwardRef26(function Stepper2({ steps, active: active2 = 0, class
|
|
|
2553
2698
|
"data-testid": slot(`step-${index}`),
|
|
2554
2699
|
"data-state": states({ done: state === "done", active: isActive }),
|
|
2555
2700
|
children: [
|
|
2556
|
-
/* @__PURE__ */
|
|
2557
|
-
/* @__PURE__ */
|
|
2701
|
+
/* @__PURE__ */ jsx40("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ jsx40(CheckIcon, { size: 14 }) : index + 1 }),
|
|
2702
|
+
/* @__PURE__ */ jsx40("span", { className: labelFor(isActive), children: s.label })
|
|
2558
2703
|
]
|
|
2559
2704
|
}
|
|
2560
2705
|
),
|
|
2561
|
-
index < steps.length - 1 && /* @__PURE__ */
|
|
2706
|
+
index < steps.length - 1 && /* @__PURE__ */ jsx40("span", { "data-part": "connector", className: connector2 })
|
|
2562
2707
|
] }, index)
|
|
2563
2708
|
);
|
|
2564
2709
|
}) });
|
|
2565
2710
|
});
|
|
2566
2711
|
|
|
2567
2712
|
// src/components/tabs/index.tsx
|
|
2568
|
-
import { forwardRef as
|
|
2713
|
+
import { forwardRef as forwardRef28, useId as useId5, useRef as useRef5 } from "react";
|
|
2569
2714
|
|
|
2570
2715
|
// src/components/tabs/use-styles.ts
|
|
2571
|
-
import { useMemo as
|
|
2716
|
+
import { useMemo as useMemo30 } from "react";
|
|
2572
2717
|
|
|
2573
2718
|
// src/components/tabs/use-styles.css.ts
|
|
2574
2719
|
var panel2 = "use-styles_panel__1l4m7t43";
|
|
2575
|
-
var
|
|
2720
|
+
var root20 = "use-styles_root__1l4m7t40";
|
|
2576
2721
|
var tab = "use-styles_tab__1l4m7t41";
|
|
2577
2722
|
var tabActive = "use-styles_tabActive__1l4m7t42";
|
|
2578
2723
|
|
|
2579
2724
|
// src/components/tabs/use-styles.ts
|
|
2580
|
-
function
|
|
2725
|
+
function useStyles26() {
|
|
2581
2726
|
const { themeClass } = useTheme();
|
|
2582
|
-
return
|
|
2583
|
-
const
|
|
2727
|
+
return useMemo30(() => {
|
|
2728
|
+
const root25 = [themeClass, root20].filter(Boolean).join(" ");
|
|
2584
2729
|
const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
|
|
2585
|
-
return { root:
|
|
2730
|
+
return { root: root25, tab, tabClass, panel: panel2 };
|
|
2586
2731
|
}, [themeClass]);
|
|
2587
2732
|
}
|
|
2588
2733
|
|
|
2589
2734
|
// src/components/tabs/index.tsx
|
|
2590
|
-
import { Fragment as Fragment3, jsx as
|
|
2735
|
+
import { Fragment as Fragment3, jsx as jsx41, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
2591
2736
|
var ICON_SIZE3 = 16;
|
|
2592
|
-
var Tabs =
|
|
2593
|
-
const { root:
|
|
2737
|
+
var Tabs = forwardRef28(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
|
|
2738
|
+
const { root: root25, tabClass, panel: panel3 } = useStyles26();
|
|
2594
2739
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2595
|
-
const baseId =
|
|
2596
|
-
const tabRefs =
|
|
2740
|
+
const baseId = useId5();
|
|
2741
|
+
const tabRefs = useRef5([]);
|
|
2597
2742
|
const hasPanels = items.some((item3) => item3.content !== void 0);
|
|
2598
2743
|
const activeIndex = items.findIndex((item3) => item3.value === value);
|
|
2599
2744
|
const tabId = (v) => `${baseId}-tab-${v}`;
|
|
@@ -2625,12 +2770,12 @@ var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2625
2770
|
break;
|
|
2626
2771
|
}
|
|
2627
2772
|
};
|
|
2628
|
-
return /* @__PURE__ */
|
|
2629
|
-
/* @__PURE__ */
|
|
2773
|
+
return /* @__PURE__ */ jsxs25(Fragment3, { children: [
|
|
2774
|
+
/* @__PURE__ */ jsx41("div", { ref, role: "tablist", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2630
2775
|
const active2 = item3.value === value;
|
|
2631
2776
|
const tabbable = active2 || activeIndex === -1 && index === 0;
|
|
2632
2777
|
const ItemIcon = item3.icon;
|
|
2633
|
-
return /* @__PURE__ */
|
|
2778
|
+
return /* @__PURE__ */ jsxs25(
|
|
2634
2779
|
"button",
|
|
2635
2780
|
{
|
|
2636
2781
|
ref: (el) => {
|
|
@@ -2648,14 +2793,14 @@ var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2648
2793
|
onClick: () => onChange?.(item3.value),
|
|
2649
2794
|
onKeyDown: (event) => onKeyDown(event, index),
|
|
2650
2795
|
children: [
|
|
2651
|
-
ItemIcon ? /* @__PURE__ */
|
|
2796
|
+
ItemIcon ? /* @__PURE__ */ jsx41(ItemIcon, { size: ICON_SIZE3 }) : null,
|
|
2652
2797
|
item3.label
|
|
2653
2798
|
]
|
|
2654
2799
|
},
|
|
2655
2800
|
item3.value
|
|
2656
2801
|
);
|
|
2657
2802
|
}) }),
|
|
2658
|
-
hasPanels && items.map((item3) => /* @__PURE__ */
|
|
2803
|
+
hasPanels && items.map((item3) => /* @__PURE__ */ jsx41(
|
|
2659
2804
|
"div",
|
|
2660
2805
|
{
|
|
2661
2806
|
role: "tabpanel",
|
|
@@ -2675,29 +2820,29 @@ var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2675
2820
|
// src/components/menu/index.tsx
|
|
2676
2821
|
import {
|
|
2677
2822
|
cloneElement as cloneElement2,
|
|
2678
|
-
forwardRef as
|
|
2823
|
+
forwardRef as forwardRef29,
|
|
2679
2824
|
useEffect as useEffect6,
|
|
2680
2825
|
useLayoutEffect,
|
|
2681
|
-
useRef as
|
|
2826
|
+
useRef as useRef6,
|
|
2682
2827
|
useState as useState8
|
|
2683
2828
|
} from "react";
|
|
2684
2829
|
|
|
2685
2830
|
// src/components/menu/use-styles.ts
|
|
2686
|
-
import { useMemo as
|
|
2831
|
+
import { useMemo as useMemo31 } from "react";
|
|
2687
2832
|
|
|
2688
2833
|
// src/components/menu/use-styles.css.ts
|
|
2689
2834
|
var danger = "use-styles_danger__1uyxaj3";
|
|
2690
2835
|
var item2 = "use-styles_item__1uyxaj2";
|
|
2691
|
-
var
|
|
2836
|
+
var list2 = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
|
|
2692
2837
|
var wrapper3 = "use-styles_wrapper__1uyxaj0";
|
|
2693
2838
|
|
|
2694
2839
|
// src/components/menu/use-styles.ts
|
|
2695
|
-
function
|
|
2840
|
+
function useStyles27() {
|
|
2696
2841
|
const { themeClass } = useTheme();
|
|
2697
|
-
return
|
|
2842
|
+
return useMemo31(
|
|
2698
2843
|
() => ({
|
|
2699
2844
|
wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
|
|
2700
|
-
list,
|
|
2845
|
+
list: list2,
|
|
2701
2846
|
item: item2,
|
|
2702
2847
|
dangerItem: [item2, danger].join(" ")
|
|
2703
2848
|
}),
|
|
@@ -2706,24 +2851,24 @@ function useStyles26() {
|
|
|
2706
2851
|
}
|
|
2707
2852
|
|
|
2708
2853
|
// src/components/menu/index.tsx
|
|
2709
|
-
import { jsx as
|
|
2854
|
+
import { jsx as jsx42, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2710
2855
|
var ICON_SIZE4 = 16;
|
|
2711
2856
|
function assignRef(ref, value) {
|
|
2712
2857
|
if (typeof ref === "function") ref(value);
|
|
2713
2858
|
else if (ref) ref.current = value;
|
|
2714
2859
|
}
|
|
2715
|
-
var Menu =
|
|
2716
|
-
const { wrapper: wrapper4, list:
|
|
2860
|
+
var Menu = forwardRef29(function Menu2({ trigger: trigger2, items, testId }, ref) {
|
|
2861
|
+
const { wrapper: wrapper4, list: list3, item: item3, dangerItem } = useStyles27();
|
|
2717
2862
|
const { testId: rootTestId, slot } = useTestId("menu", testId);
|
|
2718
2863
|
const [open, setOpen] = useState8(false);
|
|
2719
2864
|
const [alignEnd, setAlignEnd] = useState8(false);
|
|
2720
|
-
const rootRef =
|
|
2865
|
+
const rootRef = useRef6(null);
|
|
2721
2866
|
const setRootRef = (node) => {
|
|
2722
2867
|
rootRef.current = node;
|
|
2723
2868
|
assignRef(ref, node);
|
|
2724
2869
|
};
|
|
2725
|
-
const listRef =
|
|
2726
|
-
const triggerRef =
|
|
2870
|
+
const listRef = useRef6(null);
|
|
2871
|
+
const triggerRef = useRef6(null);
|
|
2727
2872
|
const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
|
|
2728
2873
|
const focusItemAt = (index) => {
|
|
2729
2874
|
const menuItems = getMenuItems();
|
|
@@ -2812,7 +2957,7 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2812
2957
|
setOpen((prev) => !prev);
|
|
2813
2958
|
}
|
|
2814
2959
|
});
|
|
2815
|
-
return /* @__PURE__ */
|
|
2960
|
+
return /* @__PURE__ */ jsxs26(
|
|
2816
2961
|
"div",
|
|
2817
2962
|
{
|
|
2818
2963
|
ref: setRootRef,
|
|
@@ -2821,18 +2966,18 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2821
2966
|
"data-state": open ? "open" : "closed",
|
|
2822
2967
|
children: [
|
|
2823
2968
|
clonedTrigger,
|
|
2824
|
-
open && /* @__PURE__ */
|
|
2969
|
+
open && /* @__PURE__ */ jsx42(
|
|
2825
2970
|
"div",
|
|
2826
2971
|
{
|
|
2827
2972
|
ref: listRef,
|
|
2828
2973
|
role: "menu",
|
|
2829
|
-
className:
|
|
2974
|
+
className: list3,
|
|
2830
2975
|
"data-align": alignEnd ? "end" : "start",
|
|
2831
2976
|
"data-testid": slot("list"),
|
|
2832
2977
|
onKeyDown: onMenuKeyDown,
|
|
2833
2978
|
children: items.map((entry, index) => {
|
|
2834
2979
|
const ItemIcon = entry.icon;
|
|
2835
|
-
return /* @__PURE__ */
|
|
2980
|
+
return /* @__PURE__ */ jsxs26(
|
|
2836
2981
|
"button",
|
|
2837
2982
|
{
|
|
2838
2983
|
type: "button",
|
|
@@ -2845,7 +2990,7 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2845
2990
|
setOpen(false);
|
|
2846
2991
|
},
|
|
2847
2992
|
children: [
|
|
2848
|
-
ItemIcon ? /* @__PURE__ */
|
|
2993
|
+
ItemIcon ? /* @__PURE__ */ jsx42(ItemIcon, { size: ICON_SIZE4 }) : null,
|
|
2849
2994
|
entry.label
|
|
2850
2995
|
]
|
|
2851
2996
|
},
|
|
@@ -2861,15 +3006,15 @@ var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2861
3006
|
|
|
2862
3007
|
// src/components/dialog/index.tsx
|
|
2863
3008
|
import {
|
|
2864
|
-
forwardRef as
|
|
3009
|
+
forwardRef as forwardRef30,
|
|
2865
3010
|
useEffect as useEffect7,
|
|
2866
|
-
useId as
|
|
2867
|
-
useRef as
|
|
3011
|
+
useId as useId6,
|
|
3012
|
+
useRef as useRef7
|
|
2868
3013
|
} from "react";
|
|
2869
3014
|
import { createPortal } from "react-dom";
|
|
2870
3015
|
|
|
2871
3016
|
// src/components/dialog/use-styles.ts
|
|
2872
|
-
import { useMemo as
|
|
3017
|
+
import { useMemo as useMemo32 } from "react";
|
|
2873
3018
|
|
|
2874
3019
|
// src/components/dialog/use-styles.css.ts
|
|
2875
3020
|
var actions = "use-styles_actions__5tstu83";
|
|
@@ -2878,9 +3023,9 @@ var overlay = "use-styles_overlay__5tstu80";
|
|
|
2878
3023
|
var surface2 = "use-styles_surface__5tstu81";
|
|
2879
3024
|
|
|
2880
3025
|
// src/components/dialog/use-styles.ts
|
|
2881
|
-
function
|
|
3026
|
+
function useStyles28() {
|
|
2882
3027
|
const { themeClass } = useTheme();
|
|
2883
|
-
return
|
|
3028
|
+
return useMemo32(
|
|
2884
3029
|
() => ({
|
|
2885
3030
|
overlay: [themeClass, overlay].filter(Boolean).join(" "),
|
|
2886
3031
|
surface: surface2,
|
|
@@ -2892,22 +3037,22 @@ function useStyles27() {
|
|
|
2892
3037
|
}
|
|
2893
3038
|
|
|
2894
3039
|
// src/components/dialog/index.tsx
|
|
2895
|
-
import { jsx as
|
|
3040
|
+
import { jsx as jsx43, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2896
3041
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
2897
3042
|
function assignRef2(ref, value) {
|
|
2898
3043
|
if (typeof ref === "function") ref(value);
|
|
2899
3044
|
else if (ref) ref.current = value;
|
|
2900
3045
|
}
|
|
2901
|
-
var Dialog =
|
|
2902
|
-
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } =
|
|
3046
|
+
var Dialog = forwardRef30(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
|
|
3047
|
+
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles28();
|
|
2903
3048
|
const { testId: rootTestId, slot } = useTestId("dialog", testId);
|
|
2904
|
-
const surfaceRef =
|
|
3049
|
+
const surfaceRef = useRef7(null);
|
|
2905
3050
|
const setSurfaceRef = (node) => {
|
|
2906
3051
|
surfaceRef.current = node;
|
|
2907
3052
|
assignRef2(ref, node);
|
|
2908
3053
|
};
|
|
2909
|
-
const previouslyFocused =
|
|
2910
|
-
const generatedId =
|
|
3054
|
+
const previouslyFocused = useRef7(null);
|
|
3055
|
+
const generatedId = useId6();
|
|
2911
3056
|
const titleId = title != null ? generatedId : void 0;
|
|
2912
3057
|
useEffect7(() => {
|
|
2913
3058
|
if (!open) return;
|
|
@@ -2961,7 +3106,7 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2961
3106
|
};
|
|
2962
3107
|
return createPortal(
|
|
2963
3108
|
// biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
|
|
2964
|
-
/* @__PURE__ */
|
|
3109
|
+
/* @__PURE__ */ jsx43("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ jsxs27(
|
|
2965
3110
|
"div",
|
|
2966
3111
|
{
|
|
2967
3112
|
ref: setSurfaceRef,
|
|
@@ -2974,9 +3119,9 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2974
3119
|
onClick: stop,
|
|
2975
3120
|
onKeyDown: onSurfaceKeyDown,
|
|
2976
3121
|
children: [
|
|
2977
|
-
title != null && /* @__PURE__ */
|
|
2978
|
-
children != null && /* @__PURE__ */
|
|
2979
|
-
actions3 != null && /* @__PURE__ */
|
|
3122
|
+
title != null && /* @__PURE__ */ jsx43(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
|
|
3123
|
+
children != null && /* @__PURE__ */ jsx43("div", { className: body3, children: /* @__PURE__ */ jsx43(Typography, { variant: "body", color: "muted", children }) }),
|
|
3124
|
+
actions3 != null && /* @__PURE__ */ jsx43("div", { className: actionsClass, children: actions3 })
|
|
2980
3125
|
]
|
|
2981
3126
|
}
|
|
2982
3127
|
) }),
|
|
@@ -2985,23 +3130,23 @@ var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2985
3130
|
});
|
|
2986
3131
|
|
|
2987
3132
|
// src/components/snackbar/index.tsx
|
|
2988
|
-
import { forwardRef as
|
|
3133
|
+
import { forwardRef as forwardRef31, useCallback as useCallback2, useEffect as useEffect8, useRef as useRef8 } from "react";
|
|
2989
3134
|
import { createPortal as createPortal2 } from "react-dom";
|
|
2990
3135
|
|
|
2991
3136
|
// src/components/snackbar/use-styles.ts
|
|
2992
|
-
import { useMemo as
|
|
3137
|
+
import { useMemo as useMemo33 } from "react";
|
|
2993
3138
|
|
|
2994
3139
|
// src/components/snackbar/use-styles.css.ts
|
|
2995
3140
|
var closeBtn = "use-styles_closeBtn__ihzsep2";
|
|
2996
3141
|
var message = "use-styles_message__ihzsep1";
|
|
2997
|
-
var
|
|
3142
|
+
var root21 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
|
|
2998
3143
|
|
|
2999
3144
|
// src/components/snackbar/use-styles.ts
|
|
3000
|
-
function
|
|
3145
|
+
function useStyles29() {
|
|
3001
3146
|
const { themeClass } = useTheme();
|
|
3002
|
-
return
|
|
3147
|
+
return useMemo33(
|
|
3003
3148
|
() => ({
|
|
3004
|
-
root: [themeClass,
|
|
3149
|
+
root: [themeClass, root21].filter(Boolean).join(" "),
|
|
3005
3150
|
message,
|
|
3006
3151
|
closeBtn
|
|
3007
3152
|
}),
|
|
@@ -3010,17 +3155,17 @@ function useStyles28() {
|
|
|
3010
3155
|
}
|
|
3011
3156
|
|
|
3012
3157
|
// src/components/snackbar/index.tsx
|
|
3013
|
-
import { jsx as
|
|
3158
|
+
import { jsx as jsx44, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
3014
3159
|
var DEFAULT_DURATION = 5e3;
|
|
3015
|
-
var Snackbar =
|
|
3016
|
-
const { root:
|
|
3160
|
+
var Snackbar = forwardRef31(function Snackbar2({ open, message: message2, action, onClose, duration = DEFAULT_DURATION, testId }, ref) {
|
|
3161
|
+
const { root: root25, message: messageClass, closeBtn: closeBtn2 } = useStyles29();
|
|
3017
3162
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
3018
|
-
const onCloseRef =
|
|
3163
|
+
const onCloseRef = useRef8(onClose);
|
|
3019
3164
|
useEffect8(() => {
|
|
3020
3165
|
onCloseRef.current = onClose;
|
|
3021
3166
|
}, [onClose]);
|
|
3022
|
-
const interactingRef =
|
|
3023
|
-
const timeoutRef =
|
|
3167
|
+
const interactingRef = useRef8({ hover: false, focus: false });
|
|
3168
|
+
const timeoutRef = useRef8();
|
|
3024
3169
|
const clearTimer = useCallback2(() => {
|
|
3025
3170
|
if (timeoutRef.current !== void 0) {
|
|
3026
3171
|
clearTimeout(timeoutRef.current);
|
|
@@ -3057,21 +3202,21 @@ var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action
|
|
|
3057
3202
|
};
|
|
3058
3203
|
if (!open || typeof document === "undefined") return null;
|
|
3059
3204
|
return createPortal2(
|
|
3060
|
-
/* @__PURE__ */
|
|
3205
|
+
/* @__PURE__ */ jsxs28(
|
|
3061
3206
|
"div",
|
|
3062
3207
|
{
|
|
3063
3208
|
ref,
|
|
3064
3209
|
role: "status",
|
|
3065
|
-
className:
|
|
3210
|
+
className: root25,
|
|
3066
3211
|
"data-testid": dataTestId,
|
|
3067
3212
|
onMouseEnter: handleMouseEnter,
|
|
3068
3213
|
onMouseLeave: handleMouseLeave,
|
|
3069
3214
|
onFocus: handleFocus,
|
|
3070
3215
|
onBlur: handleBlur,
|
|
3071
3216
|
children: [
|
|
3072
|
-
/* @__PURE__ */
|
|
3217
|
+
/* @__PURE__ */ jsx44("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
|
|
3073
3218
|
action,
|
|
3074
|
-
onClose && /* @__PURE__ */
|
|
3219
|
+
onClose && /* @__PURE__ */ jsx44(
|
|
3075
3220
|
"button",
|
|
3076
3221
|
{
|
|
3077
3222
|
type: "button",
|
|
@@ -3079,7 +3224,7 @@ var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action
|
|
|
3079
3224
|
className: closeBtn2,
|
|
3080
3225
|
"data-testid": slot("close"),
|
|
3081
3226
|
onClick: onClose,
|
|
3082
|
-
children: /* @__PURE__ */
|
|
3227
|
+
children: /* @__PURE__ */ jsx44(XIcon, { size: 18 })
|
|
3083
3228
|
}
|
|
3084
3229
|
)
|
|
3085
3230
|
]
|
|
@@ -3090,27 +3235,27 @@ var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action
|
|
|
3090
3235
|
});
|
|
3091
3236
|
|
|
3092
3237
|
// src/components/table/index.tsx
|
|
3093
|
-
import { forwardRef as
|
|
3238
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
3094
3239
|
|
|
3095
3240
|
// src/components/table/use-styles.ts
|
|
3096
|
-
import { useMemo as
|
|
3241
|
+
import { useMemo as useMemo34 } from "react";
|
|
3097
3242
|
|
|
3098
3243
|
// src/components/table/use-styles.css.ts
|
|
3099
3244
|
var alignRight = "use-styles_alignRight__1n2cz6i3";
|
|
3100
3245
|
var caption = "use-styles_caption__1n2cz6i4";
|
|
3101
|
-
var
|
|
3246
|
+
var root22 = "use-styles_root__1n2cz6i0";
|
|
3102
3247
|
var td = "use-styles_td__1n2cz6i2";
|
|
3103
3248
|
var th = "use-styles_th__1n2cz6i1";
|
|
3104
3249
|
|
|
3105
3250
|
// src/components/table/use-styles.ts
|
|
3106
|
-
function
|
|
3251
|
+
function useStyles30({ className }) {
|
|
3107
3252
|
const { themeClass } = useTheme();
|
|
3108
|
-
const
|
|
3109
|
-
() => [themeClass,
|
|
3253
|
+
const root25 = useMemo34(
|
|
3254
|
+
() => [themeClass, root22, className].filter(Boolean).join(" "),
|
|
3110
3255
|
[themeClass, className]
|
|
3111
3256
|
);
|
|
3112
3257
|
return {
|
|
3113
|
-
root:
|
|
3258
|
+
root: root25,
|
|
3114
3259
|
th,
|
|
3115
3260
|
td,
|
|
3116
3261
|
alignRight,
|
|
@@ -3119,87 +3264,87 @@ function useStyles29({ className }) {
|
|
|
3119
3264
|
}
|
|
3120
3265
|
|
|
3121
3266
|
// src/components/table/index.tsx
|
|
3122
|
-
import { jsx as
|
|
3267
|
+
import { jsx as jsx45, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
3123
3268
|
function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
|
|
3124
|
-
const { root:
|
|
3269
|
+
const { root: root25, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles30({ className });
|
|
3125
3270
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3126
3271
|
const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
|
|
3127
3272
|
const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
|
|
3128
|
-
return /* @__PURE__ */
|
|
3129
|
-
caption2 != null && /* @__PURE__ */
|
|
3130
|
-
/* @__PURE__ */
|
|
3131
|
-
/* @__PURE__ */
|
|
3273
|
+
return /* @__PURE__ */ jsxs29("table", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
3274
|
+
caption2 != null && /* @__PURE__ */ jsx45("caption", { className: captionClass, children: caption2 }),
|
|
3275
|
+
/* @__PURE__ */ jsx45("thead", { children: /* @__PURE__ */ jsx45("tr", { children: columns.map((column) => /* @__PURE__ */ jsx45("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
|
|
3276
|
+
/* @__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
3277
|
] });
|
|
3133
3278
|
}
|
|
3134
|
-
var TableForwarded =
|
|
3279
|
+
var TableForwarded = forwardRef32(TableInner);
|
|
3135
3280
|
TableForwarded.displayName = "Table";
|
|
3136
3281
|
var Table = TableForwarded;
|
|
3137
3282
|
|
|
3138
3283
|
// src/components/app-bar/index.tsx
|
|
3139
|
-
import { forwardRef as
|
|
3284
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
3140
3285
|
|
|
3141
3286
|
// src/components/app-bar/use-styles.ts
|
|
3142
|
-
import { useMemo as
|
|
3287
|
+
import { useMemo as useMemo35 } from "react";
|
|
3143
3288
|
|
|
3144
3289
|
// src/components/app-bar/use-styles.css.ts
|
|
3145
3290
|
var actions2 = "use-styles_actions__1h133nh2";
|
|
3146
3291
|
var brand = "use-styles_brand__1h133nh1";
|
|
3147
|
-
var
|
|
3292
|
+
var root23 = "use-styles_root__1h133nh0";
|
|
3148
3293
|
|
|
3149
3294
|
// src/components/app-bar/use-styles.ts
|
|
3150
|
-
function
|
|
3295
|
+
function useStyles31({ className }) {
|
|
3151
3296
|
const { themeClass } = useTheme();
|
|
3152
|
-
const
|
|
3153
|
-
() => [themeClass,
|
|
3297
|
+
const root25 = useMemo35(
|
|
3298
|
+
() => [themeClass, root23, className].filter(Boolean).join(" "),
|
|
3154
3299
|
[themeClass, className]
|
|
3155
3300
|
);
|
|
3156
|
-
return { root:
|
|
3301
|
+
return { root: root25, brand, actions: actions2 };
|
|
3157
3302
|
}
|
|
3158
3303
|
|
|
3159
3304
|
// src/components/app-bar/index.tsx
|
|
3160
|
-
import { jsx as
|
|
3161
|
-
var AppBar =
|
|
3162
|
-
const styles =
|
|
3305
|
+
import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
3306
|
+
var AppBar = forwardRef33(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
|
|
3307
|
+
const styles = useStyles31({ className });
|
|
3163
3308
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
3164
|
-
return /* @__PURE__ */
|
|
3165
|
-
brand2 !== void 0 ? /* @__PURE__ */
|
|
3309
|
+
return /* @__PURE__ */ jsxs30("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
3310
|
+
brand2 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
|
|
3166
3311
|
children,
|
|
3167
|
-
actions3 !== void 0 ? /* @__PURE__ */
|
|
3312
|
+
actions3 !== void 0 ? /* @__PURE__ */ jsx46("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
|
|
3168
3313
|
] });
|
|
3169
3314
|
});
|
|
3170
3315
|
|
|
3171
3316
|
// src/components/list-item/index.tsx
|
|
3172
|
-
import { forwardRef as
|
|
3317
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
3173
3318
|
|
|
3174
3319
|
// src/components/list-item/use-styles.ts
|
|
3175
|
-
import { useMemo as
|
|
3320
|
+
import { useMemo as useMemo36 } from "react";
|
|
3176
3321
|
|
|
3177
3322
|
// src/components/list-item/use-styles.css.ts
|
|
3178
3323
|
var content3 = "use-styles_content__kbreq13";
|
|
3179
3324
|
var leading = "use-styles_leading__kbreq12";
|
|
3180
|
-
var
|
|
3325
|
+
var root24 = "use-styles_root__kbreq10";
|
|
3181
3326
|
var selected3 = "use-styles_selected__kbreq11";
|
|
3182
3327
|
var trailing = "use-styles_trailing__kbreq14";
|
|
3183
3328
|
|
|
3184
3329
|
// src/components/list-item/use-styles.ts
|
|
3185
|
-
function
|
|
3330
|
+
function useStyles32({
|
|
3186
3331
|
selected: selected4,
|
|
3187
3332
|
className
|
|
3188
3333
|
}) {
|
|
3189
3334
|
const { themeClass } = useTheme();
|
|
3190
|
-
const
|
|
3191
|
-
() => [themeClass,
|
|
3335
|
+
const root25 = useMemo36(
|
|
3336
|
+
() => [themeClass, root24, selected4 && selected3, className].filter(Boolean).join(" "),
|
|
3192
3337
|
[themeClass, selected4, className]
|
|
3193
3338
|
);
|
|
3194
|
-
return { root:
|
|
3339
|
+
return { root: root25, leading, content: content3, trailing };
|
|
3195
3340
|
}
|
|
3196
3341
|
|
|
3197
3342
|
// src/components/list-item/index.tsx
|
|
3198
|
-
import { jsx as
|
|
3199
|
-
var ListItem =
|
|
3200
|
-
const styles =
|
|
3343
|
+
import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
3344
|
+
var ListItem = forwardRef34(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
|
|
3345
|
+
const styles = useStyles32({ selected: selected4, className });
|
|
3201
3346
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3202
|
-
return /* @__PURE__ */
|
|
3347
|
+
return /* @__PURE__ */ jsxs31(
|
|
3203
3348
|
"div",
|
|
3204
3349
|
{
|
|
3205
3350
|
ref,
|
|
@@ -3208,18 +3353,18 @@ var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: tr
|
|
|
3208
3353
|
"data-state": states({ selected: selected4 }),
|
|
3209
3354
|
...rest,
|
|
3210
3355
|
children: [
|
|
3211
|
-
leading2 != null && /* @__PURE__ */
|
|
3212
|
-
/* @__PURE__ */
|
|
3213
|
-
trailing2 != null && /* @__PURE__ */
|
|
3356
|
+
leading2 != null && /* @__PURE__ */ jsx47("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
|
|
3357
|
+
/* @__PURE__ */ jsx47("span", { className: styles.content, "data-testid": slot("content"), children }),
|
|
3358
|
+
trailing2 != null && /* @__PURE__ */ jsx47("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
|
|
3214
3359
|
]
|
|
3215
3360
|
}
|
|
3216
3361
|
);
|
|
3217
3362
|
});
|
|
3218
3363
|
|
|
3219
3364
|
// src/components/icons/alert-circle/index.tsx
|
|
3220
|
-
import { jsx as
|
|
3365
|
+
import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
3221
3366
|
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3222
|
-
return /* @__PURE__ */
|
|
3367
|
+
return /* @__PURE__ */ jsxs32(
|
|
3223
3368
|
"svg",
|
|
3224
3369
|
{
|
|
3225
3370
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3234,18 +3379,18 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3234
3379
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3235
3380
|
...rest,
|
|
3236
3381
|
children: [
|
|
3237
|
-
/* @__PURE__ */
|
|
3238
|
-
/* @__PURE__ */
|
|
3239
|
-
/* @__PURE__ */
|
|
3382
|
+
/* @__PURE__ */ jsx48("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3383
|
+
/* @__PURE__ */ jsx48("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
|
|
3384
|
+
/* @__PURE__ */ jsx48("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
|
|
3240
3385
|
]
|
|
3241
3386
|
}
|
|
3242
3387
|
);
|
|
3243
3388
|
}
|
|
3244
3389
|
|
|
3245
3390
|
// src/components/icons/archive/index.tsx
|
|
3246
|
-
import { jsx as
|
|
3391
|
+
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
3247
3392
|
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3248
|
-
return /* @__PURE__ */
|
|
3393
|
+
return /* @__PURE__ */ jsxs33(
|
|
3249
3394
|
"svg",
|
|
3250
3395
|
{
|
|
3251
3396
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3260,18 +3405,18 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3260
3405
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3261
3406
|
...rest,
|
|
3262
3407
|
children: [
|
|
3263
|
-
/* @__PURE__ */
|
|
3264
|
-
/* @__PURE__ */
|
|
3265
|
-
/* @__PURE__ */
|
|
3408
|
+
/* @__PURE__ */ jsx49("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
3409
|
+
/* @__PURE__ */ jsx49("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
|
|
3410
|
+
/* @__PURE__ */ jsx49("path", { d: "M10 12h4" })
|
|
3266
3411
|
]
|
|
3267
3412
|
}
|
|
3268
3413
|
);
|
|
3269
3414
|
}
|
|
3270
3415
|
|
|
3271
3416
|
// src/components/icons/arrow-down/index.tsx
|
|
3272
|
-
import { jsx as
|
|
3417
|
+
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
3273
3418
|
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3274
|
-
return /* @__PURE__ */
|
|
3419
|
+
return /* @__PURE__ */ jsxs34(
|
|
3275
3420
|
"svg",
|
|
3276
3421
|
{
|
|
3277
3422
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3286,17 +3431,17 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3286
3431
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3287
3432
|
...rest,
|
|
3288
3433
|
children: [
|
|
3289
|
-
/* @__PURE__ */
|
|
3290
|
-
/* @__PURE__ */
|
|
3434
|
+
/* @__PURE__ */ jsx50("path", { d: "M12 5v14" }),
|
|
3435
|
+
/* @__PURE__ */ jsx50("path", { d: "m19 12-7 7-7-7" })
|
|
3291
3436
|
]
|
|
3292
3437
|
}
|
|
3293
3438
|
);
|
|
3294
3439
|
}
|
|
3295
3440
|
|
|
3296
3441
|
// src/components/icons/arrow-left/index.tsx
|
|
3297
|
-
import { jsx as
|
|
3442
|
+
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
3298
3443
|
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3299
|
-
return /* @__PURE__ */
|
|
3444
|
+
return /* @__PURE__ */ jsxs35(
|
|
3300
3445
|
"svg",
|
|
3301
3446
|
{
|
|
3302
3447
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3311,17 +3456,17 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3311
3456
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3312
3457
|
...rest,
|
|
3313
3458
|
children: [
|
|
3314
|
-
/* @__PURE__ */
|
|
3315
|
-
/* @__PURE__ */
|
|
3459
|
+
/* @__PURE__ */ jsx51("path", { d: "m12 19-7-7 7-7" }),
|
|
3460
|
+
/* @__PURE__ */ jsx51("path", { d: "M19 12H5" })
|
|
3316
3461
|
]
|
|
3317
3462
|
}
|
|
3318
3463
|
);
|
|
3319
3464
|
}
|
|
3320
3465
|
|
|
3321
3466
|
// src/components/icons/arrow-right/index.tsx
|
|
3322
|
-
import { jsx as
|
|
3467
|
+
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
3323
3468
|
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3324
|
-
return /* @__PURE__ */
|
|
3469
|
+
return /* @__PURE__ */ jsxs36(
|
|
3325
3470
|
"svg",
|
|
3326
3471
|
{
|
|
3327
3472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3336,17 +3481,17 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3336
3481
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3337
3482
|
...rest,
|
|
3338
3483
|
children: [
|
|
3339
|
-
/* @__PURE__ */
|
|
3340
|
-
/* @__PURE__ */
|
|
3484
|
+
/* @__PURE__ */ jsx52("path", { d: "M5 12h14" }),
|
|
3485
|
+
/* @__PURE__ */ jsx52("path", { d: "m12 5 7 7-7 7" })
|
|
3341
3486
|
]
|
|
3342
3487
|
}
|
|
3343
3488
|
);
|
|
3344
3489
|
}
|
|
3345
3490
|
|
|
3346
3491
|
// src/components/icons/arrow-up/index.tsx
|
|
3347
|
-
import { jsx as
|
|
3492
|
+
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
3348
3493
|
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3349
|
-
return /* @__PURE__ */
|
|
3494
|
+
return /* @__PURE__ */ jsxs37(
|
|
3350
3495
|
"svg",
|
|
3351
3496
|
{
|
|
3352
3497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3361,17 +3506,17 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3361
3506
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3362
3507
|
...rest,
|
|
3363
3508
|
children: [
|
|
3364
|
-
/* @__PURE__ */
|
|
3365
|
-
/* @__PURE__ */
|
|
3509
|
+
/* @__PURE__ */ jsx53("path", { d: "m5 12 7-7 7 7" }),
|
|
3510
|
+
/* @__PURE__ */ jsx53("path", { d: "M12 19V5" })
|
|
3366
3511
|
]
|
|
3367
3512
|
}
|
|
3368
3513
|
);
|
|
3369
3514
|
}
|
|
3370
3515
|
|
|
3371
3516
|
// src/components/icons/at-sign/index.tsx
|
|
3372
|
-
import { jsx as
|
|
3517
|
+
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3373
3518
|
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3374
|
-
return /* @__PURE__ */
|
|
3519
|
+
return /* @__PURE__ */ jsxs38(
|
|
3375
3520
|
"svg",
|
|
3376
3521
|
{
|
|
3377
3522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3386,17 +3531,17 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3386
3531
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3387
3532
|
...rest,
|
|
3388
3533
|
children: [
|
|
3389
|
-
/* @__PURE__ */
|
|
3390
|
-
/* @__PURE__ */
|
|
3534
|
+
/* @__PURE__ */ jsx54("circle", { cx: "12", cy: "12", r: "4" }),
|
|
3535
|
+
/* @__PURE__ */ jsx54("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
|
|
3391
3536
|
]
|
|
3392
3537
|
}
|
|
3393
3538
|
);
|
|
3394
3539
|
}
|
|
3395
3540
|
|
|
3396
3541
|
// src/components/icons/bell/index.tsx
|
|
3397
|
-
import { jsx as
|
|
3542
|
+
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3398
3543
|
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3399
|
-
return /* @__PURE__ */
|
|
3544
|
+
return /* @__PURE__ */ jsxs39(
|
|
3400
3545
|
"svg",
|
|
3401
3546
|
{
|
|
3402
3547
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3411,17 +3556,17 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3411
3556
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3412
3557
|
...rest,
|
|
3413
3558
|
children: [
|
|
3414
|
-
/* @__PURE__ */
|
|
3415
|
-
/* @__PURE__ */
|
|
3559
|
+
/* @__PURE__ */ jsx55("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
3560
|
+
/* @__PURE__ */ jsx55("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
|
|
3416
3561
|
]
|
|
3417
3562
|
}
|
|
3418
3563
|
);
|
|
3419
3564
|
}
|
|
3420
3565
|
|
|
3421
3566
|
// src/components/icons/bell-off/index.tsx
|
|
3422
|
-
import { jsx as
|
|
3567
|
+
import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3423
3568
|
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3424
|
-
return /* @__PURE__ */
|
|
3569
|
+
return /* @__PURE__ */ jsxs40(
|
|
3425
3570
|
"svg",
|
|
3426
3571
|
{
|
|
3427
3572
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3436,19 +3581,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3436
3581
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3437
3582
|
...rest,
|
|
3438
3583
|
children: [
|
|
3439
|
-
/* @__PURE__ */
|
|
3440
|
-
/* @__PURE__ */
|
|
3441
|
-
/* @__PURE__ */
|
|
3442
|
-
/* @__PURE__ */
|
|
3584
|
+
/* @__PURE__ */ jsx56("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
3585
|
+
/* @__PURE__ */ jsx56("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
|
|
3586
|
+
/* @__PURE__ */ jsx56("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
|
|
3587
|
+
/* @__PURE__ */ jsx56("path", { d: "m2 2 20 20" })
|
|
3443
3588
|
]
|
|
3444
3589
|
}
|
|
3445
3590
|
);
|
|
3446
3591
|
}
|
|
3447
3592
|
|
|
3448
3593
|
// src/components/icons/bookmark/index.tsx
|
|
3449
|
-
import { jsx as
|
|
3594
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
3450
3595
|
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3451
|
-
return /* @__PURE__ */
|
|
3596
|
+
return /* @__PURE__ */ jsx57(
|
|
3452
3597
|
"svg",
|
|
3453
3598
|
{
|
|
3454
3599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3462,15 +3607,15 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3462
3607
|
strokeLinejoin: "round",
|
|
3463
3608
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3464
3609
|
...rest,
|
|
3465
|
-
children: /* @__PURE__ */
|
|
3610
|
+
children: /* @__PURE__ */ jsx57("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3466
3611
|
}
|
|
3467
3612
|
);
|
|
3468
3613
|
}
|
|
3469
3614
|
|
|
3470
3615
|
// src/components/icons/calendar/index.tsx
|
|
3471
|
-
import { jsx as
|
|
3616
|
+
import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3472
3617
|
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3473
|
-
return /* @__PURE__ */
|
|
3618
|
+
return /* @__PURE__ */ jsxs41(
|
|
3474
3619
|
"svg",
|
|
3475
3620
|
{
|
|
3476
3621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3485,19 +3630,19 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3485
3630
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3486
3631
|
...rest,
|
|
3487
3632
|
children: [
|
|
3488
|
-
/* @__PURE__ */
|
|
3489
|
-
/* @__PURE__ */
|
|
3490
|
-
/* @__PURE__ */
|
|
3491
|
-
/* @__PURE__ */
|
|
3633
|
+
/* @__PURE__ */ jsx58("path", { d: "M8 2v4" }),
|
|
3634
|
+
/* @__PURE__ */ jsx58("path", { d: "M16 2v4" }),
|
|
3635
|
+
/* @__PURE__ */ jsx58("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
|
|
3636
|
+
/* @__PURE__ */ jsx58("path", { d: "M3 10h18" })
|
|
3492
3637
|
]
|
|
3493
3638
|
}
|
|
3494
3639
|
);
|
|
3495
3640
|
}
|
|
3496
3641
|
|
|
3497
3642
|
// src/components/icons/camera/index.tsx
|
|
3498
|
-
import { jsx as
|
|
3643
|
+
import { jsx as jsx59, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3499
3644
|
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3500
|
-
return /* @__PURE__ */
|
|
3645
|
+
return /* @__PURE__ */ jsxs42(
|
|
3501
3646
|
"svg",
|
|
3502
3647
|
{
|
|
3503
3648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3512,17 +3657,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3512
3657
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3513
3658
|
...rest,
|
|
3514
3659
|
children: [
|
|
3515
|
-
/* @__PURE__ */
|
|
3516
|
-
/* @__PURE__ */
|
|
3660
|
+
/* @__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" }),
|
|
3661
|
+
/* @__PURE__ */ jsx59("circle", { cx: "12", cy: "13", r: "3" })
|
|
3517
3662
|
]
|
|
3518
3663
|
}
|
|
3519
3664
|
);
|
|
3520
3665
|
}
|
|
3521
3666
|
|
|
3522
3667
|
// src/components/icons/chevron-up/index.tsx
|
|
3523
|
-
import { jsx as
|
|
3668
|
+
import { jsx as jsx60 } from "react/jsx-runtime";
|
|
3524
3669
|
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3525
|
-
return /* @__PURE__ */
|
|
3670
|
+
return /* @__PURE__ */ jsx60(
|
|
3526
3671
|
"svg",
|
|
3527
3672
|
{
|
|
3528
3673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3536,15 +3681,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3536
3681
|
strokeLinejoin: "round",
|
|
3537
3682
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3538
3683
|
...rest,
|
|
3539
|
-
children: /* @__PURE__ */
|
|
3684
|
+
children: /* @__PURE__ */ jsx60("path", { d: "m18 15-6-6-6 6" })
|
|
3540
3685
|
}
|
|
3541
3686
|
);
|
|
3542
3687
|
}
|
|
3543
3688
|
|
|
3544
3689
|
// src/components/icons/chevrons-left/index.tsx
|
|
3545
|
-
import { jsx as
|
|
3690
|
+
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3546
3691
|
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3547
|
-
return /* @__PURE__ */
|
|
3692
|
+
return /* @__PURE__ */ jsxs43(
|
|
3548
3693
|
"svg",
|
|
3549
3694
|
{
|
|
3550
3695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3559,17 +3704,17 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3559
3704
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3560
3705
|
...rest,
|
|
3561
3706
|
children: [
|
|
3562
|
-
/* @__PURE__ */
|
|
3563
|
-
/* @__PURE__ */
|
|
3707
|
+
/* @__PURE__ */ jsx61("path", { d: "m11 17-5-5 5-5" }),
|
|
3708
|
+
/* @__PURE__ */ jsx61("path", { d: "m18 17-5-5 5-5" })
|
|
3564
3709
|
]
|
|
3565
3710
|
}
|
|
3566
3711
|
);
|
|
3567
3712
|
}
|
|
3568
3713
|
|
|
3569
3714
|
// src/components/icons/chevrons-right/index.tsx
|
|
3570
|
-
import { jsx as
|
|
3715
|
+
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3571
3716
|
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3572
|
-
return /* @__PURE__ */
|
|
3717
|
+
return /* @__PURE__ */ jsxs44(
|
|
3573
3718
|
"svg",
|
|
3574
3719
|
{
|
|
3575
3720
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3584,17 +3729,17 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
3584
3729
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3585
3730
|
...rest,
|
|
3586
3731
|
children: [
|
|
3587
|
-
/* @__PURE__ */
|
|
3588
|
-
/* @__PURE__ */
|
|
3732
|
+
/* @__PURE__ */ jsx62("path", { d: "m6 17 5-5-5-5" }),
|
|
3733
|
+
/* @__PURE__ */ jsx62("path", { d: "m13 17 5-5-5-5" })
|
|
3589
3734
|
]
|
|
3590
3735
|
}
|
|
3591
3736
|
);
|
|
3592
3737
|
}
|
|
3593
3738
|
|
|
3594
3739
|
// src/components/icons/clipboard/index.tsx
|
|
3595
|
-
import { jsx as
|
|
3740
|
+
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3596
3741
|
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3597
|
-
return /* @__PURE__ */
|
|
3742
|
+
return /* @__PURE__ */ jsxs45(
|
|
3598
3743
|
"svg",
|
|
3599
3744
|
{
|
|
3600
3745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3609,17 +3754,17 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3609
3754
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3610
3755
|
...rest,
|
|
3611
3756
|
children: [
|
|
3612
|
-
/* @__PURE__ */
|
|
3613
|
-
/* @__PURE__ */
|
|
3757
|
+
/* @__PURE__ */ jsx63("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
3758
|
+
/* @__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
3759
|
]
|
|
3615
3760
|
}
|
|
3616
3761
|
);
|
|
3617
3762
|
}
|
|
3618
3763
|
|
|
3619
3764
|
// src/components/icons/clock/index.tsx
|
|
3620
|
-
import { jsx as
|
|
3765
|
+
import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3621
3766
|
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3622
|
-
return /* @__PURE__ */
|
|
3767
|
+
return /* @__PURE__ */ jsxs46(
|
|
3623
3768
|
"svg",
|
|
3624
3769
|
{
|
|
3625
3770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3634,17 +3779,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3634
3779
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3635
3780
|
...rest,
|
|
3636
3781
|
children: [
|
|
3637
|
-
/* @__PURE__ */
|
|
3638
|
-
/* @__PURE__ */
|
|
3782
|
+
/* @__PURE__ */ jsx64("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3783
|
+
/* @__PURE__ */ jsx64("polyline", { points: "12 6 12 12 16 14" })
|
|
3639
3784
|
]
|
|
3640
3785
|
}
|
|
3641
3786
|
);
|
|
3642
3787
|
}
|
|
3643
3788
|
|
|
3644
3789
|
// src/components/icons/cloud/index.tsx
|
|
3645
|
-
import { jsx as
|
|
3790
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
3646
3791
|
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3647
|
-
return /* @__PURE__ */
|
|
3792
|
+
return /* @__PURE__ */ jsx65(
|
|
3648
3793
|
"svg",
|
|
3649
3794
|
{
|
|
3650
3795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3658,15 +3803,15 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3658
3803
|
strokeLinejoin: "round",
|
|
3659
3804
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3660
3805
|
...rest,
|
|
3661
|
-
children: /* @__PURE__ */
|
|
3806
|
+
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
3807
|
}
|
|
3663
3808
|
);
|
|
3664
3809
|
}
|
|
3665
3810
|
|
|
3666
3811
|
// src/components/icons/copy/index.tsx
|
|
3667
|
-
import { jsx as
|
|
3812
|
+
import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3668
3813
|
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3669
|
-
return /* @__PURE__ */
|
|
3814
|
+
return /* @__PURE__ */ jsxs47(
|
|
3670
3815
|
"svg",
|
|
3671
3816
|
{
|
|
3672
3817
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3681,17 +3826,17 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3681
3826
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3682
3827
|
...rest,
|
|
3683
3828
|
children: [
|
|
3684
|
-
/* @__PURE__ */
|
|
3685
|
-
/* @__PURE__ */
|
|
3829
|
+
/* @__PURE__ */ jsx66("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
3830
|
+
/* @__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
3831
|
]
|
|
3687
3832
|
}
|
|
3688
3833
|
);
|
|
3689
3834
|
}
|
|
3690
3835
|
|
|
3691
3836
|
// src/components/icons/corner-down-right/index.tsx
|
|
3692
|
-
import { jsx as
|
|
3837
|
+
import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3693
3838
|
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3694
|
-
return /* @__PURE__ */
|
|
3839
|
+
return /* @__PURE__ */ jsxs48(
|
|
3695
3840
|
"svg",
|
|
3696
3841
|
{
|
|
3697
3842
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3706,17 +3851,17 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...r
|
|
|
3706
3851
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3707
3852
|
...rest,
|
|
3708
3853
|
children: [
|
|
3709
|
-
/* @__PURE__ */
|
|
3710
|
-
/* @__PURE__ */
|
|
3854
|
+
/* @__PURE__ */ jsx67("polyline", { points: "15 10 20 15 15 20" }),
|
|
3855
|
+
/* @__PURE__ */ jsx67("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
|
|
3711
3856
|
]
|
|
3712
3857
|
}
|
|
3713
3858
|
);
|
|
3714
3859
|
}
|
|
3715
3860
|
|
|
3716
3861
|
// src/components/icons/credit-card/index.tsx
|
|
3717
|
-
import { jsx as
|
|
3862
|
+
import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3718
3863
|
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3719
|
-
return /* @__PURE__ */
|
|
3864
|
+
return /* @__PURE__ */ jsxs49(
|
|
3720
3865
|
"svg",
|
|
3721
3866
|
{
|
|
3722
3867
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3731,17 +3876,17 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3731
3876
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3732
3877
|
...rest,
|
|
3733
3878
|
children: [
|
|
3734
|
-
/* @__PURE__ */
|
|
3735
|
-
/* @__PURE__ */
|
|
3879
|
+
/* @__PURE__ */ jsx68("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
3880
|
+
/* @__PURE__ */ jsx68("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
|
|
3736
3881
|
]
|
|
3737
3882
|
}
|
|
3738
3883
|
);
|
|
3739
3884
|
}
|
|
3740
3885
|
|
|
3741
3886
|
// src/components/icons/dollar-sign/index.tsx
|
|
3742
|
-
import { jsx as
|
|
3887
|
+
import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3743
3888
|
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3744
|
-
return /* @__PURE__ */
|
|
3889
|
+
return /* @__PURE__ */ jsxs50(
|
|
3745
3890
|
"svg",
|
|
3746
3891
|
{
|
|
3747
3892
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3756,17 +3901,17 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3756
3901
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3757
3902
|
...rest,
|
|
3758
3903
|
children: [
|
|
3759
|
-
/* @__PURE__ */
|
|
3760
|
-
/* @__PURE__ */
|
|
3904
|
+
/* @__PURE__ */ jsx69("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
3905
|
+
/* @__PURE__ */ jsx69("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
|
|
3761
3906
|
]
|
|
3762
3907
|
}
|
|
3763
3908
|
);
|
|
3764
3909
|
}
|
|
3765
3910
|
|
|
3766
3911
|
// src/components/icons/download/index.tsx
|
|
3767
|
-
import { jsx as
|
|
3912
|
+
import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3768
3913
|
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3769
|
-
return /* @__PURE__ */
|
|
3914
|
+
return /* @__PURE__ */ jsxs51(
|
|
3770
3915
|
"svg",
|
|
3771
3916
|
{
|
|
3772
3917
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3781,18 +3926,18 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3781
3926
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3782
3927
|
...rest,
|
|
3783
3928
|
children: [
|
|
3784
|
-
/* @__PURE__ */
|
|
3785
|
-
/* @__PURE__ */
|
|
3786
|
-
/* @__PURE__ */
|
|
3929
|
+
/* @__PURE__ */ jsx70("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
3930
|
+
/* @__PURE__ */ jsx70("polyline", { points: "7 10 12 15 17 10" }),
|
|
3931
|
+
/* @__PURE__ */ jsx70("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
|
|
3787
3932
|
]
|
|
3788
3933
|
}
|
|
3789
3934
|
);
|
|
3790
3935
|
}
|
|
3791
3936
|
|
|
3792
3937
|
// src/components/icons/external-link/index.tsx
|
|
3793
|
-
import { jsx as
|
|
3938
|
+
import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3794
3939
|
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3795
|
-
return /* @__PURE__ */
|
|
3940
|
+
return /* @__PURE__ */ jsxs52(
|
|
3796
3941
|
"svg",
|
|
3797
3942
|
{
|
|
3798
3943
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3807,18 +3952,18 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3807
3952
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3808
3953
|
...rest,
|
|
3809
3954
|
children: [
|
|
3810
|
-
/* @__PURE__ */
|
|
3811
|
-
/* @__PURE__ */
|
|
3812
|
-
/* @__PURE__ */
|
|
3955
|
+
/* @__PURE__ */ jsx71("path", { d: "M15 3h6v6" }),
|
|
3956
|
+
/* @__PURE__ */ jsx71("path", { d: "M10 14 21 3" }),
|
|
3957
|
+
/* @__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
3958
|
]
|
|
3814
3959
|
}
|
|
3815
3960
|
);
|
|
3816
3961
|
}
|
|
3817
3962
|
|
|
3818
3963
|
// src/components/icons/file/index.tsx
|
|
3819
|
-
import { jsx as
|
|
3964
|
+
import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3820
3965
|
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3821
|
-
return /* @__PURE__ */
|
|
3966
|
+
return /* @__PURE__ */ jsxs53(
|
|
3822
3967
|
"svg",
|
|
3823
3968
|
{
|
|
3824
3969
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3833,17 +3978,17 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3833
3978
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3834
3979
|
...rest,
|
|
3835
3980
|
children: [
|
|
3836
|
-
/* @__PURE__ */
|
|
3837
|
-
/* @__PURE__ */
|
|
3981
|
+
/* @__PURE__ */ jsx72("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
3982
|
+
/* @__PURE__ */ jsx72("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
|
|
3838
3983
|
]
|
|
3839
3984
|
}
|
|
3840
3985
|
);
|
|
3841
3986
|
}
|
|
3842
3987
|
|
|
3843
3988
|
// src/components/icons/file-text/index.tsx
|
|
3844
|
-
import { jsx as
|
|
3989
|
+
import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3845
3990
|
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3846
|
-
return /* @__PURE__ */
|
|
3991
|
+
return /* @__PURE__ */ jsxs54(
|
|
3847
3992
|
"svg",
|
|
3848
3993
|
{
|
|
3849
3994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3858,20 +4003,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3858
4003
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3859
4004
|
...rest,
|
|
3860
4005
|
children: [
|
|
3861
|
-
/* @__PURE__ */
|
|
3862
|
-
/* @__PURE__ */
|
|
3863
|
-
/* @__PURE__ */
|
|
3864
|
-
/* @__PURE__ */
|
|
3865
|
-
/* @__PURE__ */
|
|
4006
|
+
/* @__PURE__ */ jsx73("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
4007
|
+
/* @__PURE__ */ jsx73("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
4008
|
+
/* @__PURE__ */ jsx73("path", { d: "M16 13H8" }),
|
|
4009
|
+
/* @__PURE__ */ jsx73("path", { d: "M16 17H8" }),
|
|
4010
|
+
/* @__PURE__ */ jsx73("path", { d: "M10 9H8" })
|
|
3866
4011
|
]
|
|
3867
4012
|
}
|
|
3868
4013
|
);
|
|
3869
4014
|
}
|
|
3870
4015
|
|
|
3871
4016
|
// src/components/icons/filter/index.tsx
|
|
3872
|
-
import { jsx as
|
|
4017
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
3873
4018
|
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3874
|
-
return /* @__PURE__ */
|
|
4019
|
+
return /* @__PURE__ */ jsx74(
|
|
3875
4020
|
"svg",
|
|
3876
4021
|
{
|
|
3877
4022
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3885,15 +4030,15 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3885
4030
|
strokeLinejoin: "round",
|
|
3886
4031
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3887
4032
|
...rest,
|
|
3888
|
-
children: /* @__PURE__ */
|
|
4033
|
+
children: /* @__PURE__ */ jsx74("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
3889
4034
|
}
|
|
3890
4035
|
);
|
|
3891
4036
|
}
|
|
3892
4037
|
|
|
3893
4038
|
// src/components/icons/fingerprint/index.tsx
|
|
3894
|
-
import { jsx as
|
|
4039
|
+
import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3895
4040
|
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3896
|
-
return /* @__PURE__ */
|
|
4041
|
+
return /* @__PURE__ */ jsxs55(
|
|
3897
4042
|
"svg",
|
|
3898
4043
|
{
|
|
3899
4044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3908,24 +4053,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3908
4053
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3909
4054
|
...rest,
|
|
3910
4055
|
children: [
|
|
3911
|
-
/* @__PURE__ */
|
|
3912
|
-
/* @__PURE__ */
|
|
3913
|
-
/* @__PURE__ */
|
|
3914
|
-
/* @__PURE__ */
|
|
3915
|
-
/* @__PURE__ */
|
|
3916
|
-
/* @__PURE__ */
|
|
3917
|
-
/* @__PURE__ */
|
|
3918
|
-
/* @__PURE__ */
|
|
3919
|
-
/* @__PURE__ */
|
|
4056
|
+
/* @__PURE__ */ jsx75("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
4057
|
+
/* @__PURE__ */ jsx75("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
|
|
4058
|
+
/* @__PURE__ */ jsx75("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
|
|
4059
|
+
/* @__PURE__ */ jsx75("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
|
|
4060
|
+
/* @__PURE__ */ jsx75("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
|
|
4061
|
+
/* @__PURE__ */ jsx75("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
|
|
4062
|
+
/* @__PURE__ */ jsx75("path", { d: "M2 16h.01" }),
|
|
4063
|
+
/* @__PURE__ */ jsx75("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
|
|
4064
|
+
/* @__PURE__ */ jsx75("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
|
|
3920
4065
|
]
|
|
3921
4066
|
}
|
|
3922
4067
|
);
|
|
3923
4068
|
}
|
|
3924
4069
|
|
|
3925
4070
|
// src/components/icons/folder/index.tsx
|
|
3926
|
-
import { jsx as
|
|
4071
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3927
4072
|
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3928
|
-
return /* @__PURE__ */
|
|
4073
|
+
return /* @__PURE__ */ jsx76(
|
|
3929
4074
|
"svg",
|
|
3930
4075
|
{
|
|
3931
4076
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3939,15 +4084,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3939
4084
|
strokeLinejoin: "round",
|
|
3940
4085
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3941
4086
|
...rest,
|
|
3942
|
-
children: /* @__PURE__ */
|
|
4087
|
+
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
4088
|
}
|
|
3944
4089
|
);
|
|
3945
4090
|
}
|
|
3946
4091
|
|
|
3947
4092
|
// src/components/icons/folder-open/index.tsx
|
|
3948
|
-
import { jsx as
|
|
4093
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3949
4094
|
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3950
|
-
return /* @__PURE__ */
|
|
4095
|
+
return /* @__PURE__ */ jsx77(
|
|
3951
4096
|
"svg",
|
|
3952
4097
|
{
|
|
3953
4098
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3961,15 +4106,15 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3961
4106
|
strokeLinejoin: "round",
|
|
3962
4107
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3963
4108
|
...rest,
|
|
3964
|
-
children: /* @__PURE__ */
|
|
4109
|
+
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
4110
|
}
|
|
3966
4111
|
);
|
|
3967
4112
|
}
|
|
3968
4113
|
|
|
3969
4114
|
// src/components/icons/gift/index.tsx
|
|
3970
|
-
import { jsx as
|
|
4115
|
+
import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3971
4116
|
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3972
|
-
return /* @__PURE__ */
|
|
4117
|
+
return /* @__PURE__ */ jsxs56(
|
|
3973
4118
|
"svg",
|
|
3974
4119
|
{
|
|
3975
4120
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3984,19 +4129,19 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3984
4129
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3985
4130
|
...rest,
|
|
3986
4131
|
children: [
|
|
3987
|
-
/* @__PURE__ */
|
|
3988
|
-
/* @__PURE__ */
|
|
3989
|
-
/* @__PURE__ */
|
|
3990
|
-
/* @__PURE__ */
|
|
4132
|
+
/* @__PURE__ */ jsx78("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
4133
|
+
/* @__PURE__ */ jsx78("path", { d: "M12 8v13" }),
|
|
4134
|
+
/* @__PURE__ */ jsx78("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
|
|
4135
|
+
/* @__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
4136
|
]
|
|
3992
4137
|
}
|
|
3993
4138
|
);
|
|
3994
4139
|
}
|
|
3995
4140
|
|
|
3996
4141
|
// src/components/icons/github/index.tsx
|
|
3997
|
-
import { jsx as
|
|
4142
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3998
4143
|
function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3999
|
-
return /* @__PURE__ */
|
|
4144
|
+
return /* @__PURE__ */ jsx79(
|
|
4000
4145
|
"svg",
|
|
4001
4146
|
{
|
|
4002
4147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4010,15 +4155,15 @@ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4010
4155
|
strokeLinejoin: "round",
|
|
4011
4156
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4012
4157
|
...rest,
|
|
4013
|
-
children: /* @__PURE__ */
|
|
4158
|
+
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
4159
|
}
|
|
4015
4160
|
);
|
|
4016
4161
|
}
|
|
4017
4162
|
|
|
4018
4163
|
// src/components/icons/globe/index.tsx
|
|
4019
|
-
import { jsx as
|
|
4164
|
+
import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
4020
4165
|
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4021
|
-
return /* @__PURE__ */
|
|
4166
|
+
return /* @__PURE__ */ jsxs57(
|
|
4022
4167
|
"svg",
|
|
4023
4168
|
{
|
|
4024
4169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4033,18 +4178,18 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4033
4178
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4034
4179
|
...rest,
|
|
4035
4180
|
children: [
|
|
4036
|
-
/* @__PURE__ */
|
|
4037
|
-
/* @__PURE__ */
|
|
4038
|
-
/* @__PURE__ */
|
|
4181
|
+
/* @__PURE__ */ jsx80("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4182
|
+
/* @__PURE__ */ jsx80("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4183
|
+
/* @__PURE__ */ jsx80("path", { d: "M2 12h20" })
|
|
4039
4184
|
]
|
|
4040
4185
|
}
|
|
4041
4186
|
);
|
|
4042
4187
|
}
|
|
4043
4188
|
|
|
4044
4189
|
// src/components/icons/grid/index.tsx
|
|
4045
|
-
import { jsx as
|
|
4190
|
+
import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
4046
4191
|
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4047
|
-
return /* @__PURE__ */
|
|
4192
|
+
return /* @__PURE__ */ jsxs58(
|
|
4048
4193
|
"svg",
|
|
4049
4194
|
{
|
|
4050
4195
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4059,20 +4204,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4059
4204
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4060
4205
|
...rest,
|
|
4061
4206
|
children: [
|
|
4062
|
-
/* @__PURE__ */
|
|
4063
|
-
/* @__PURE__ */
|
|
4064
|
-
/* @__PURE__ */
|
|
4065
|
-
/* @__PURE__ */
|
|
4066
|
-
/* @__PURE__ */
|
|
4207
|
+
/* @__PURE__ */ jsx81("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4208
|
+
/* @__PURE__ */ jsx81("path", { d: "M3 9h18" }),
|
|
4209
|
+
/* @__PURE__ */ jsx81("path", { d: "M3 15h18" }),
|
|
4210
|
+
/* @__PURE__ */ jsx81("path", { d: "M9 3v18" }),
|
|
4211
|
+
/* @__PURE__ */ jsx81("path", { d: "M15 3v18" })
|
|
4067
4212
|
]
|
|
4068
4213
|
}
|
|
4069
4214
|
);
|
|
4070
4215
|
}
|
|
4071
4216
|
|
|
4072
4217
|
// src/components/icons/heart/index.tsx
|
|
4073
|
-
import { jsx as
|
|
4218
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
4074
4219
|
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4075
|
-
return /* @__PURE__ */
|
|
4220
|
+
return /* @__PURE__ */ jsx82(
|
|
4076
4221
|
"svg",
|
|
4077
4222
|
{
|
|
4078
4223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4086,15 +4231,15 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4086
4231
|
strokeLinejoin: "round",
|
|
4087
4232
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4088
4233
|
...rest,
|
|
4089
|
-
children: /* @__PURE__ */
|
|
4234
|
+
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
4235
|
}
|
|
4091
4236
|
);
|
|
4092
4237
|
}
|
|
4093
4238
|
|
|
4094
4239
|
// src/components/icons/help-circle/index.tsx
|
|
4095
|
-
import { jsx as
|
|
4240
|
+
import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
4096
4241
|
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4097
|
-
return /* @__PURE__ */
|
|
4242
|
+
return /* @__PURE__ */ jsxs59(
|
|
4098
4243
|
"svg",
|
|
4099
4244
|
{
|
|
4100
4245
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4109,18 +4254,18 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
4109
4254
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4110
4255
|
...rest,
|
|
4111
4256
|
children: [
|
|
4112
|
-
/* @__PURE__ */
|
|
4113
|
-
/* @__PURE__ */
|
|
4114
|
-
/* @__PURE__ */
|
|
4257
|
+
/* @__PURE__ */ jsx83("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4258
|
+
/* @__PURE__ */ jsx83("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4259
|
+
/* @__PURE__ */ jsx83("path", { d: "M12 17h.01" })
|
|
4115
4260
|
]
|
|
4116
4261
|
}
|
|
4117
4262
|
);
|
|
4118
4263
|
}
|
|
4119
4264
|
|
|
4120
4265
|
// src/components/icons/home/index.tsx
|
|
4121
|
-
import { jsx as
|
|
4266
|
+
import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
4122
4267
|
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4123
|
-
return /* @__PURE__ */
|
|
4268
|
+
return /* @__PURE__ */ jsxs60(
|
|
4124
4269
|
"svg",
|
|
4125
4270
|
{
|
|
4126
4271
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4135,17 +4280,17 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4135
4280
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4136
4281
|
...rest,
|
|
4137
4282
|
children: [
|
|
4138
|
-
/* @__PURE__ */
|
|
4139
|
-
/* @__PURE__ */
|
|
4283
|
+
/* @__PURE__ */ jsx84("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4284
|
+
/* @__PURE__ */ jsx84("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4140
4285
|
]
|
|
4141
4286
|
}
|
|
4142
4287
|
);
|
|
4143
4288
|
}
|
|
4144
4289
|
|
|
4145
4290
|
// src/components/icons/image/index.tsx
|
|
4146
|
-
import { jsx as
|
|
4291
|
+
import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
4147
4292
|
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4148
|
-
return /* @__PURE__ */
|
|
4293
|
+
return /* @__PURE__ */ jsxs61(
|
|
4149
4294
|
"svg",
|
|
4150
4295
|
{
|
|
4151
4296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4160,18 +4305,18 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4160
4305
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4161
4306
|
...rest,
|
|
4162
4307
|
children: [
|
|
4163
|
-
/* @__PURE__ */
|
|
4164
|
-
/* @__PURE__ */
|
|
4165
|
-
/* @__PURE__ */
|
|
4308
|
+
/* @__PURE__ */ jsx85("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4309
|
+
/* @__PURE__ */ jsx85("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4310
|
+
/* @__PURE__ */ jsx85("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4166
4311
|
]
|
|
4167
4312
|
}
|
|
4168
4313
|
);
|
|
4169
4314
|
}
|
|
4170
4315
|
|
|
4171
4316
|
// src/components/icons/inbox/index.tsx
|
|
4172
|
-
import { jsx as
|
|
4317
|
+
import { jsx as jsx86, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4173
4318
|
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4174
|
-
return /* @__PURE__ */
|
|
4319
|
+
return /* @__PURE__ */ jsxs62(
|
|
4175
4320
|
"svg",
|
|
4176
4321
|
{
|
|
4177
4322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4186,17 +4331,17 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4186
4331
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4187
4332
|
...rest,
|
|
4188
4333
|
children: [
|
|
4189
|
-
/* @__PURE__ */
|
|
4190
|
-
/* @__PURE__ */
|
|
4334
|
+
/* @__PURE__ */ jsx86("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4335
|
+
/* @__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
4336
|
]
|
|
4192
4337
|
}
|
|
4193
4338
|
);
|
|
4194
4339
|
}
|
|
4195
4340
|
|
|
4196
4341
|
// src/components/icons/key/index.tsx
|
|
4197
|
-
import { jsx as
|
|
4342
|
+
import { jsx as jsx87, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4198
4343
|
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4199
|
-
return /* @__PURE__ */
|
|
4344
|
+
return /* @__PURE__ */ jsxs63(
|
|
4200
4345
|
"svg",
|
|
4201
4346
|
{
|
|
4202
4347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4211,18 +4356,18 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4211
4356
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4212
4357
|
...rest,
|
|
4213
4358
|
children: [
|
|
4214
|
-
/* @__PURE__ */
|
|
4215
|
-
/* @__PURE__ */
|
|
4216
|
-
/* @__PURE__ */
|
|
4359
|
+
/* @__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" }),
|
|
4360
|
+
/* @__PURE__ */ jsx87("path", { d: "m21 2-9.6 9.6" }),
|
|
4361
|
+
/* @__PURE__ */ jsx87("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4217
4362
|
]
|
|
4218
4363
|
}
|
|
4219
4364
|
);
|
|
4220
4365
|
}
|
|
4221
4366
|
|
|
4222
4367
|
// src/components/icons/layout/index.tsx
|
|
4223
|
-
import { jsx as
|
|
4368
|
+
import { jsx as jsx88, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4224
4369
|
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4225
|
-
return /* @__PURE__ */
|
|
4370
|
+
return /* @__PURE__ */ jsxs64(
|
|
4226
4371
|
"svg",
|
|
4227
4372
|
{
|
|
4228
4373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4237,19 +4382,19 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4237
4382
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4238
4383
|
...rest,
|
|
4239
4384
|
children: [
|
|
4240
|
-
/* @__PURE__ */
|
|
4241
|
-
/* @__PURE__ */
|
|
4242
|
-
/* @__PURE__ */
|
|
4243
|
-
/* @__PURE__ */
|
|
4385
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4386
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4387
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4388
|
+
/* @__PURE__ */ jsx88("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4244
4389
|
]
|
|
4245
4390
|
}
|
|
4246
4391
|
);
|
|
4247
4392
|
}
|
|
4248
4393
|
|
|
4249
4394
|
// src/components/icons/link/index.tsx
|
|
4250
|
-
import { jsx as
|
|
4395
|
+
import { jsx as jsx89, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4251
4396
|
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4252
|
-
return /* @__PURE__ */
|
|
4397
|
+
return /* @__PURE__ */ jsxs65(
|
|
4253
4398
|
"svg",
|
|
4254
4399
|
{
|
|
4255
4400
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4264,17 +4409,17 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4264
4409
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4265
4410
|
...rest,
|
|
4266
4411
|
children: [
|
|
4267
|
-
/* @__PURE__ */
|
|
4268
|
-
/* @__PURE__ */
|
|
4412
|
+
/* @__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" }),
|
|
4413
|
+
/* @__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
4414
|
]
|
|
4270
4415
|
}
|
|
4271
4416
|
);
|
|
4272
4417
|
}
|
|
4273
4418
|
|
|
4274
4419
|
// src/components/icons/list/index.tsx
|
|
4275
|
-
import { jsx as
|
|
4420
|
+
import { jsx as jsx90, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4276
4421
|
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4277
|
-
return /* @__PURE__ */
|
|
4422
|
+
return /* @__PURE__ */ jsxs66(
|
|
4278
4423
|
"svg",
|
|
4279
4424
|
{
|
|
4280
4425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4289,21 +4434,21 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4289
4434
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4290
4435
|
...rest,
|
|
4291
4436
|
children: [
|
|
4292
|
-
/* @__PURE__ */
|
|
4293
|
-
/* @__PURE__ */
|
|
4294
|
-
/* @__PURE__ */
|
|
4295
|
-
/* @__PURE__ */
|
|
4296
|
-
/* @__PURE__ */
|
|
4297
|
-
/* @__PURE__ */
|
|
4437
|
+
/* @__PURE__ */ jsx90("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4438
|
+
/* @__PURE__ */ jsx90("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4439
|
+
/* @__PURE__ */ jsx90("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4440
|
+
/* @__PURE__ */ jsx90("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4441
|
+
/* @__PURE__ */ jsx90("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4442
|
+
/* @__PURE__ */ jsx90("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4298
4443
|
]
|
|
4299
4444
|
}
|
|
4300
4445
|
);
|
|
4301
4446
|
}
|
|
4302
4447
|
|
|
4303
4448
|
// src/components/icons/loader/index.tsx
|
|
4304
|
-
import { jsx as
|
|
4449
|
+
import { jsx as jsx91, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4305
4450
|
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4306
|
-
return /* @__PURE__ */
|
|
4451
|
+
return /* @__PURE__ */ jsxs67(
|
|
4307
4452
|
"svg",
|
|
4308
4453
|
{
|
|
4309
4454
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4318,23 +4463,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4318
4463
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4319
4464
|
...rest,
|
|
4320
4465
|
children: [
|
|
4321
|
-
/* @__PURE__ */
|
|
4322
|
-
/* @__PURE__ */
|
|
4323
|
-
/* @__PURE__ */
|
|
4324
|
-
/* @__PURE__ */
|
|
4325
|
-
/* @__PURE__ */
|
|
4326
|
-
/* @__PURE__ */
|
|
4327
|
-
/* @__PURE__ */
|
|
4328
|
-
/* @__PURE__ */
|
|
4466
|
+
/* @__PURE__ */ jsx91("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4467
|
+
/* @__PURE__ */ jsx91("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4468
|
+
/* @__PURE__ */ jsx91("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4469
|
+
/* @__PURE__ */ jsx91("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4470
|
+
/* @__PURE__ */ jsx91("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4471
|
+
/* @__PURE__ */ jsx91("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4472
|
+
/* @__PURE__ */ jsx91("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4473
|
+
/* @__PURE__ */ jsx91("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4329
4474
|
]
|
|
4330
4475
|
}
|
|
4331
4476
|
);
|
|
4332
4477
|
}
|
|
4333
4478
|
|
|
4334
4479
|
// src/components/icons/lock/index.tsx
|
|
4335
|
-
import { jsx as
|
|
4480
|
+
import { jsx as jsx92, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4336
4481
|
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4337
|
-
return /* @__PURE__ */
|
|
4482
|
+
return /* @__PURE__ */ jsxs68(
|
|
4338
4483
|
"svg",
|
|
4339
4484
|
{
|
|
4340
4485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4349,17 +4494,17 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4349
4494
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4350
4495
|
...rest,
|
|
4351
4496
|
children: [
|
|
4352
|
-
/* @__PURE__ */
|
|
4353
|
-
/* @__PURE__ */
|
|
4497
|
+
/* @__PURE__ */ jsx92("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4498
|
+
/* @__PURE__ */ jsx92("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4354
4499
|
]
|
|
4355
4500
|
}
|
|
4356
4501
|
);
|
|
4357
4502
|
}
|
|
4358
4503
|
|
|
4359
4504
|
// src/components/icons/log-in/index.tsx
|
|
4360
|
-
import { jsx as
|
|
4505
|
+
import { jsx as jsx93, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4361
4506
|
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4362
|
-
return /* @__PURE__ */
|
|
4507
|
+
return /* @__PURE__ */ jsxs69(
|
|
4363
4508
|
"svg",
|
|
4364
4509
|
{
|
|
4365
4510
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4374,18 +4519,18 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4374
4519
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4375
4520
|
...rest,
|
|
4376
4521
|
children: [
|
|
4377
|
-
/* @__PURE__ */
|
|
4378
|
-
/* @__PURE__ */
|
|
4379
|
-
/* @__PURE__ */
|
|
4522
|
+
/* @__PURE__ */ jsx93("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4523
|
+
/* @__PURE__ */ jsx93("polyline", { points: "10 17 15 12 10 7" }),
|
|
4524
|
+
/* @__PURE__ */ jsx93("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4380
4525
|
]
|
|
4381
4526
|
}
|
|
4382
4527
|
);
|
|
4383
4528
|
}
|
|
4384
4529
|
|
|
4385
4530
|
// src/components/icons/log-out/index.tsx
|
|
4386
|
-
import { jsx as
|
|
4531
|
+
import { jsx as jsx94, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4387
4532
|
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4388
|
-
return /* @__PURE__ */
|
|
4533
|
+
return /* @__PURE__ */ jsxs70(
|
|
4389
4534
|
"svg",
|
|
4390
4535
|
{
|
|
4391
4536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4400,18 +4545,18 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4400
4545
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4401
4546
|
...rest,
|
|
4402
4547
|
children: [
|
|
4403
|
-
/* @__PURE__ */
|
|
4404
|
-
/* @__PURE__ */
|
|
4405
|
-
/* @__PURE__ */
|
|
4548
|
+
/* @__PURE__ */ jsx94("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4549
|
+
/* @__PURE__ */ jsx94("polyline", { points: "16 17 21 12 16 7" }),
|
|
4550
|
+
/* @__PURE__ */ jsx94("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4406
4551
|
]
|
|
4407
4552
|
}
|
|
4408
4553
|
);
|
|
4409
4554
|
}
|
|
4410
4555
|
|
|
4411
4556
|
// src/components/icons/mail/index.tsx
|
|
4412
|
-
import { jsx as
|
|
4557
|
+
import { jsx as jsx95, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4413
4558
|
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4414
|
-
return /* @__PURE__ */
|
|
4559
|
+
return /* @__PURE__ */ jsxs71(
|
|
4415
4560
|
"svg",
|
|
4416
4561
|
{
|
|
4417
4562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4426,17 +4571,17 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4426
4571
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4427
4572
|
...rest,
|
|
4428
4573
|
children: [
|
|
4429
|
-
/* @__PURE__ */
|
|
4430
|
-
/* @__PURE__ */
|
|
4574
|
+
/* @__PURE__ */ jsx95("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4575
|
+
/* @__PURE__ */ jsx95("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4431
4576
|
]
|
|
4432
4577
|
}
|
|
4433
4578
|
);
|
|
4434
4579
|
}
|
|
4435
4580
|
|
|
4436
4581
|
// src/components/icons/map-pin/index.tsx
|
|
4437
|
-
import { jsx as
|
|
4582
|
+
import { jsx as jsx96, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4438
4583
|
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4439
|
-
return /* @__PURE__ */
|
|
4584
|
+
return /* @__PURE__ */ jsxs72(
|
|
4440
4585
|
"svg",
|
|
4441
4586
|
{
|
|
4442
4587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4451,17 +4596,17 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4451
4596
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4452
4597
|
...rest,
|
|
4453
4598
|
children: [
|
|
4454
|
-
/* @__PURE__ */
|
|
4455
|
-
/* @__PURE__ */
|
|
4599
|
+
/* @__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" }),
|
|
4600
|
+
/* @__PURE__ */ jsx96("circle", { cx: "12", cy: "10", r: "3" })
|
|
4456
4601
|
]
|
|
4457
4602
|
}
|
|
4458
4603
|
);
|
|
4459
4604
|
}
|
|
4460
4605
|
|
|
4461
4606
|
// src/components/icons/maximize/index.tsx
|
|
4462
|
-
import { jsx as
|
|
4607
|
+
import { jsx as jsx97, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4463
4608
|
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4464
|
-
return /* @__PURE__ */
|
|
4609
|
+
return /* @__PURE__ */ jsxs73(
|
|
4465
4610
|
"svg",
|
|
4466
4611
|
{
|
|
4467
4612
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4476,19 +4621,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4476
4621
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4477
4622
|
...rest,
|
|
4478
4623
|
children: [
|
|
4479
|
-
/* @__PURE__ */
|
|
4480
|
-
/* @__PURE__ */
|
|
4481
|
-
/* @__PURE__ */
|
|
4482
|
-
/* @__PURE__ */
|
|
4624
|
+
/* @__PURE__ */ jsx97("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4625
|
+
/* @__PURE__ */ jsx97("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4626
|
+
/* @__PURE__ */ jsx97("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4627
|
+
/* @__PURE__ */ jsx97("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4483
4628
|
]
|
|
4484
4629
|
}
|
|
4485
4630
|
);
|
|
4486
4631
|
}
|
|
4487
4632
|
|
|
4488
4633
|
// src/components/icons/menu/index.tsx
|
|
4489
|
-
import { jsx as
|
|
4634
|
+
import { jsx as jsx98, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4490
4635
|
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4491
|
-
return /* @__PURE__ */
|
|
4636
|
+
return /* @__PURE__ */ jsxs74(
|
|
4492
4637
|
"svg",
|
|
4493
4638
|
{
|
|
4494
4639
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4503,18 +4648,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4503
4648
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4504
4649
|
...rest,
|
|
4505
4650
|
children: [
|
|
4506
|
-
/* @__PURE__ */
|
|
4507
|
-
/* @__PURE__ */
|
|
4508
|
-
/* @__PURE__ */
|
|
4651
|
+
/* @__PURE__ */ jsx98("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4652
|
+
/* @__PURE__ */ jsx98("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4653
|
+
/* @__PURE__ */ jsx98("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4509
4654
|
]
|
|
4510
4655
|
}
|
|
4511
4656
|
);
|
|
4512
4657
|
}
|
|
4513
4658
|
|
|
4514
4659
|
// src/components/icons/message-circle/index.tsx
|
|
4515
|
-
import { jsx as
|
|
4660
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4516
4661
|
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4517
|
-
return /* @__PURE__ */
|
|
4662
|
+
return /* @__PURE__ */ jsx99(
|
|
4518
4663
|
"svg",
|
|
4519
4664
|
{
|
|
4520
4665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4528,15 +4673,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
4528
4673
|
strokeLinejoin: "round",
|
|
4529
4674
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4530
4675
|
...rest,
|
|
4531
|
-
children: /* @__PURE__ */
|
|
4676
|
+
children: /* @__PURE__ */ jsx99("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4532
4677
|
}
|
|
4533
4678
|
);
|
|
4534
4679
|
}
|
|
4535
4680
|
|
|
4536
4681
|
// src/components/icons/message-square/index.tsx
|
|
4537
|
-
import { jsx as
|
|
4682
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
4538
4683
|
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4539
|
-
return /* @__PURE__ */
|
|
4684
|
+
return /* @__PURE__ */ jsx100(
|
|
4540
4685
|
"svg",
|
|
4541
4686
|
{
|
|
4542
4687
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4550,15 +4695,15 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
4550
4695
|
strokeLinejoin: "round",
|
|
4551
4696
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4552
4697
|
...rest,
|
|
4553
|
-
children: /* @__PURE__ */
|
|
4698
|
+
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
4699
|
}
|
|
4555
4700
|
);
|
|
4556
4701
|
}
|
|
4557
4702
|
|
|
4558
4703
|
// src/components/icons/mic/index.tsx
|
|
4559
|
-
import { jsx as
|
|
4704
|
+
import { jsx as jsx101, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4560
4705
|
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4561
|
-
return /* @__PURE__ */
|
|
4706
|
+
return /* @__PURE__ */ jsxs75(
|
|
4562
4707
|
"svg",
|
|
4563
4708
|
{
|
|
4564
4709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4573,18 +4718,18 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4573
4718
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4574
4719
|
...rest,
|
|
4575
4720
|
children: [
|
|
4576
|
-
/* @__PURE__ */
|
|
4577
|
-
/* @__PURE__ */
|
|
4578
|
-
/* @__PURE__ */
|
|
4721
|
+
/* @__PURE__ */ jsx101("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4722
|
+
/* @__PURE__ */ jsx101("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4723
|
+
/* @__PURE__ */ jsx101("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4579
4724
|
]
|
|
4580
4725
|
}
|
|
4581
4726
|
);
|
|
4582
4727
|
}
|
|
4583
4728
|
|
|
4584
4729
|
// src/components/icons/minimize/index.tsx
|
|
4585
|
-
import { jsx as
|
|
4730
|
+
import { jsx as jsx102, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4586
4731
|
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4587
|
-
return /* @__PURE__ */
|
|
4732
|
+
return /* @__PURE__ */ jsxs76(
|
|
4588
4733
|
"svg",
|
|
4589
4734
|
{
|
|
4590
4735
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4599,19 +4744,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4599
4744
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4600
4745
|
...rest,
|
|
4601
4746
|
children: [
|
|
4602
|
-
/* @__PURE__ */
|
|
4603
|
-
/* @__PURE__ */
|
|
4604
|
-
/* @__PURE__ */
|
|
4605
|
-
/* @__PURE__ */
|
|
4747
|
+
/* @__PURE__ */ jsx102("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4748
|
+
/* @__PURE__ */ jsx102("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4749
|
+
/* @__PURE__ */ jsx102("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4750
|
+
/* @__PURE__ */ jsx102("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4606
4751
|
]
|
|
4607
4752
|
}
|
|
4608
4753
|
);
|
|
4609
4754
|
}
|
|
4610
4755
|
|
|
4611
4756
|
// src/components/icons/minus/index.tsx
|
|
4612
|
-
import { jsx as
|
|
4757
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
4613
4758
|
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4614
|
-
return /* @__PURE__ */
|
|
4759
|
+
return /* @__PURE__ */ jsx103(
|
|
4615
4760
|
"svg",
|
|
4616
4761
|
{
|
|
4617
4762
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4625,15 +4770,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4625
4770
|
strokeLinejoin: "round",
|
|
4626
4771
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4627
4772
|
...rest,
|
|
4628
|
-
children: /* @__PURE__ */
|
|
4773
|
+
children: /* @__PURE__ */ jsx103("path", { d: "M5 12h14" })
|
|
4629
4774
|
}
|
|
4630
4775
|
);
|
|
4631
4776
|
}
|
|
4632
4777
|
|
|
4633
4778
|
// src/components/icons/moon/index.tsx
|
|
4634
|
-
import { jsx as
|
|
4779
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
4635
4780
|
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4636
|
-
return /* @__PURE__ */
|
|
4781
|
+
return /* @__PURE__ */ jsx104(
|
|
4637
4782
|
"svg",
|
|
4638
4783
|
{
|
|
4639
4784
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4647,15 +4792,15 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4647
4792
|
strokeLinejoin: "round",
|
|
4648
4793
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4649
4794
|
...rest,
|
|
4650
|
-
children: /* @__PURE__ */
|
|
4795
|
+
children: /* @__PURE__ */ jsx104("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4651
4796
|
}
|
|
4652
4797
|
);
|
|
4653
4798
|
}
|
|
4654
4799
|
|
|
4655
4800
|
// src/components/icons/more-horizontal/index.tsx
|
|
4656
|
-
import { jsx as
|
|
4801
|
+
import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4657
4802
|
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4658
|
-
return /* @__PURE__ */
|
|
4803
|
+
return /* @__PURE__ */ jsxs77(
|
|
4659
4804
|
"svg",
|
|
4660
4805
|
{
|
|
4661
4806
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4670,18 +4815,18 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...re
|
|
|
4670
4815
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4671
4816
|
...rest,
|
|
4672
4817
|
children: [
|
|
4673
|
-
/* @__PURE__ */
|
|
4674
|
-
/* @__PURE__ */
|
|
4675
|
-
/* @__PURE__ */
|
|
4818
|
+
/* @__PURE__ */ jsx105("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4819
|
+
/* @__PURE__ */ jsx105("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4820
|
+
/* @__PURE__ */ jsx105("circle", { cx: "5", cy: "12", r: "1" })
|
|
4676
4821
|
]
|
|
4677
4822
|
}
|
|
4678
4823
|
);
|
|
4679
4824
|
}
|
|
4680
4825
|
|
|
4681
4826
|
// src/components/icons/more-vertical/index.tsx
|
|
4682
|
-
import { jsx as
|
|
4827
|
+
import { jsx as jsx106, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4683
4828
|
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4684
|
-
return /* @__PURE__ */
|
|
4829
|
+
return /* @__PURE__ */ jsxs78(
|
|
4685
4830
|
"svg",
|
|
4686
4831
|
{
|
|
4687
4832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4696,18 +4841,18 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
4696
4841
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4697
4842
|
...rest,
|
|
4698
4843
|
children: [
|
|
4699
|
-
/* @__PURE__ */
|
|
4700
|
-
/* @__PURE__ */
|
|
4701
|
-
/* @__PURE__ */
|
|
4844
|
+
/* @__PURE__ */ jsx106("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4845
|
+
/* @__PURE__ */ jsx106("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4846
|
+
/* @__PURE__ */ jsx106("circle", { cx: "12", cy: "19", r: "1" })
|
|
4702
4847
|
]
|
|
4703
4848
|
}
|
|
4704
4849
|
);
|
|
4705
4850
|
}
|
|
4706
4851
|
|
|
4707
4852
|
// src/components/icons/package/index.tsx
|
|
4708
|
-
import { jsx as
|
|
4853
|
+
import { jsx as jsx107, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4709
4854
|
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4710
|
-
return /* @__PURE__ */
|
|
4855
|
+
return /* @__PURE__ */ jsxs79(
|
|
4711
4856
|
"svg",
|
|
4712
4857
|
{
|
|
4713
4858
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4722,18 +4867,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4722
4867
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4723
4868
|
...rest,
|
|
4724
4869
|
children: [
|
|
4725
|
-
/* @__PURE__ */
|
|
4726
|
-
/* @__PURE__ */
|
|
4727
|
-
/* @__PURE__ */
|
|
4870
|
+
/* @__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" }),
|
|
4871
|
+
/* @__PURE__ */ jsx107("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4872
|
+
/* @__PURE__ */ jsx107("path", { d: "M12 22V12" })
|
|
4728
4873
|
]
|
|
4729
4874
|
}
|
|
4730
4875
|
);
|
|
4731
4876
|
}
|
|
4732
4877
|
|
|
4733
4878
|
// src/components/icons/paperclip/index.tsx
|
|
4734
|
-
import { jsx as
|
|
4879
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
4735
4880
|
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4736
|
-
return /* @__PURE__ */
|
|
4881
|
+
return /* @__PURE__ */ jsx108(
|
|
4737
4882
|
"svg",
|
|
4738
4883
|
{
|
|
4739
4884
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4747,15 +4892,15 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4747
4892
|
strokeLinejoin: "round",
|
|
4748
4893
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4749
4894
|
...rest,
|
|
4750
|
-
children: /* @__PURE__ */
|
|
4895
|
+
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
4896
|
}
|
|
4752
4897
|
);
|
|
4753
4898
|
}
|
|
4754
4899
|
|
|
4755
4900
|
// src/components/icons/pause/index.tsx
|
|
4756
|
-
import { jsx as
|
|
4901
|
+
import { jsx as jsx109, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4757
4902
|
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4758
|
-
return /* @__PURE__ */
|
|
4903
|
+
return /* @__PURE__ */ jsxs80(
|
|
4759
4904
|
"svg",
|
|
4760
4905
|
{
|
|
4761
4906
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4770,17 +4915,17 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4770
4915
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4771
4916
|
...rest,
|
|
4772
4917
|
children: [
|
|
4773
|
-
/* @__PURE__ */
|
|
4774
|
-
/* @__PURE__ */
|
|
4918
|
+
/* @__PURE__ */ jsx109("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4919
|
+
/* @__PURE__ */ jsx109("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4775
4920
|
]
|
|
4776
4921
|
}
|
|
4777
4922
|
);
|
|
4778
4923
|
}
|
|
4779
4924
|
|
|
4780
4925
|
// src/components/icons/pencil/index.tsx
|
|
4781
|
-
import { jsx as
|
|
4926
|
+
import { jsx as jsx110, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
4782
4927
|
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4783
|
-
return /* @__PURE__ */
|
|
4928
|
+
return /* @__PURE__ */ jsxs81(
|
|
4784
4929
|
"svg",
|
|
4785
4930
|
{
|
|
4786
4931
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4795,17 +4940,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4795
4940
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4796
4941
|
...rest,
|
|
4797
4942
|
children: [
|
|
4798
|
-
/* @__PURE__ */
|
|
4799
|
-
/* @__PURE__ */
|
|
4943
|
+
/* @__PURE__ */ jsx110("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4944
|
+
/* @__PURE__ */ jsx110("path", { d: "m15 5 4 4" })
|
|
4800
4945
|
]
|
|
4801
4946
|
}
|
|
4802
4947
|
);
|
|
4803
4948
|
}
|
|
4804
4949
|
|
|
4805
4950
|
// src/components/icons/phone/index.tsx
|
|
4806
|
-
import { jsx as
|
|
4951
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4807
4952
|
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4808
|
-
return /* @__PURE__ */
|
|
4953
|
+
return /* @__PURE__ */ jsx111(
|
|
4809
4954
|
"svg",
|
|
4810
4955
|
{
|
|
4811
4956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4819,15 +4964,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4819
4964
|
strokeLinejoin: "round",
|
|
4820
4965
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4821
4966
|
...rest,
|
|
4822
|
-
children: /* @__PURE__ */
|
|
4967
|
+
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
4968
|
}
|
|
4824
4969
|
);
|
|
4825
4970
|
}
|
|
4826
4971
|
|
|
4827
4972
|
// src/components/icons/play/index.tsx
|
|
4828
|
-
import { jsx as
|
|
4973
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
4829
4974
|
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4830
|
-
return /* @__PURE__ */
|
|
4975
|
+
return /* @__PURE__ */ jsx112(
|
|
4831
4976
|
"svg",
|
|
4832
4977
|
{
|
|
4833
4978
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4841,15 +4986,15 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4841
4986
|
strokeLinejoin: "round",
|
|
4842
4987
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4843
4988
|
...rest,
|
|
4844
|
-
children: /* @__PURE__ */
|
|
4989
|
+
children: /* @__PURE__ */ jsx112("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4845
4990
|
}
|
|
4846
4991
|
);
|
|
4847
4992
|
}
|
|
4848
4993
|
|
|
4849
4994
|
// src/components/icons/plus/index.tsx
|
|
4850
|
-
import { jsx as
|
|
4995
|
+
import { jsx as jsx113, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
4851
4996
|
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4852
|
-
return /* @__PURE__ */
|
|
4997
|
+
return /* @__PURE__ */ jsxs82(
|
|
4853
4998
|
"svg",
|
|
4854
4999
|
{
|
|
4855
5000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4864,17 +5009,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4864
5009
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4865
5010
|
...rest,
|
|
4866
5011
|
children: [
|
|
4867
|
-
/* @__PURE__ */
|
|
4868
|
-
/* @__PURE__ */
|
|
5012
|
+
/* @__PURE__ */ jsx113("path", { d: "M5 12h14" }),
|
|
5013
|
+
/* @__PURE__ */ jsx113("path", { d: "M12 5v14" })
|
|
4869
5014
|
]
|
|
4870
5015
|
}
|
|
4871
5016
|
);
|
|
4872
5017
|
}
|
|
4873
5018
|
|
|
4874
5019
|
// src/components/icons/printer/index.tsx
|
|
4875
|
-
import { jsx as
|
|
5020
|
+
import { jsx as jsx114, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
4876
5021
|
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4877
|
-
return /* @__PURE__ */
|
|
5022
|
+
return /* @__PURE__ */ jsxs83(
|
|
4878
5023
|
"svg",
|
|
4879
5024
|
{
|
|
4880
5025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4889,18 +5034,18 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4889
5034
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4890
5035
|
...rest,
|
|
4891
5036
|
children: [
|
|
4892
|
-
/* @__PURE__ */
|
|
4893
|
-
/* @__PURE__ */
|
|
4894
|
-
/* @__PURE__ */
|
|
5037
|
+
/* @__PURE__ */ jsx114("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
5038
|
+
/* @__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" }),
|
|
5039
|
+
/* @__PURE__ */ jsx114("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4895
5040
|
]
|
|
4896
5041
|
}
|
|
4897
5042
|
);
|
|
4898
5043
|
}
|
|
4899
5044
|
|
|
4900
5045
|
// src/components/icons/redo/index.tsx
|
|
4901
|
-
import { jsx as
|
|
5046
|
+
import { jsx as jsx115, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
4902
5047
|
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4903
|
-
return /* @__PURE__ */
|
|
5048
|
+
return /* @__PURE__ */ jsxs84(
|
|
4904
5049
|
"svg",
|
|
4905
5050
|
{
|
|
4906
5051
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4915,17 +5060,17 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4915
5060
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4916
5061
|
...rest,
|
|
4917
5062
|
children: [
|
|
4918
|
-
/* @__PURE__ */
|
|
4919
|
-
/* @__PURE__ */
|
|
5063
|
+
/* @__PURE__ */ jsx115("path", { d: "M21 7v6h-6" }),
|
|
5064
|
+
/* @__PURE__ */ jsx115("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
4920
5065
|
]
|
|
4921
5066
|
}
|
|
4922
5067
|
);
|
|
4923
5068
|
}
|
|
4924
5069
|
|
|
4925
5070
|
// src/components/icons/refresh-cw/index.tsx
|
|
4926
|
-
import { jsx as
|
|
5071
|
+
import { jsx as jsx116, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
4927
5072
|
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4928
|
-
return /* @__PURE__ */
|
|
5073
|
+
return /* @__PURE__ */ jsxs85(
|
|
4929
5074
|
"svg",
|
|
4930
5075
|
{
|
|
4931
5076
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4940,19 +5085,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4940
5085
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4941
5086
|
...rest,
|
|
4942
5087
|
children: [
|
|
4943
|
-
/* @__PURE__ */
|
|
4944
|
-
/* @__PURE__ */
|
|
4945
|
-
/* @__PURE__ */
|
|
4946
|
-
/* @__PURE__ */
|
|
5088
|
+
/* @__PURE__ */ jsx116("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
5089
|
+
/* @__PURE__ */ jsx116("path", { d: "M21 3v5h-5" }),
|
|
5090
|
+
/* @__PURE__ */ jsx116("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
5091
|
+
/* @__PURE__ */ jsx116("path", { d: "M3 21v-5h5" })
|
|
4947
5092
|
]
|
|
4948
5093
|
}
|
|
4949
5094
|
);
|
|
4950
5095
|
}
|
|
4951
5096
|
|
|
4952
5097
|
// src/components/icons/save/index.tsx
|
|
4953
|
-
import { jsx as
|
|
5098
|
+
import { jsx as jsx117, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
4954
5099
|
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4955
|
-
return /* @__PURE__ */
|
|
5100
|
+
return /* @__PURE__ */ jsxs86(
|
|
4956
5101
|
"svg",
|
|
4957
5102
|
{
|
|
4958
5103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4967,18 +5112,18 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4967
5112
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4968
5113
|
...rest,
|
|
4969
5114
|
children: [
|
|
4970
|
-
/* @__PURE__ */
|
|
4971
|
-
/* @__PURE__ */
|
|
4972
|
-
/* @__PURE__ */
|
|
5115
|
+
/* @__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" }),
|
|
5116
|
+
/* @__PURE__ */ jsx117("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
5117
|
+
/* @__PURE__ */ jsx117("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
4973
5118
|
]
|
|
4974
5119
|
}
|
|
4975
5120
|
);
|
|
4976
5121
|
}
|
|
4977
5122
|
|
|
4978
5123
|
// src/components/icons/search/index.tsx
|
|
4979
|
-
import { jsx as
|
|
5124
|
+
import { jsx as jsx118, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
4980
5125
|
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4981
|
-
return /* @__PURE__ */
|
|
5126
|
+
return /* @__PURE__ */ jsxs87(
|
|
4982
5127
|
"svg",
|
|
4983
5128
|
{
|
|
4984
5129
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4993,17 +5138,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4993
5138
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4994
5139
|
...rest,
|
|
4995
5140
|
children: [
|
|
4996
|
-
/* @__PURE__ */
|
|
4997
|
-
/* @__PURE__ */
|
|
5141
|
+
/* @__PURE__ */ jsx118("circle", { cx: "11", cy: "11", r: "8" }),
|
|
5142
|
+
/* @__PURE__ */ jsx118("path", { d: "m21 21-4.3-4.3" })
|
|
4998
5143
|
]
|
|
4999
5144
|
}
|
|
5000
5145
|
);
|
|
5001
5146
|
}
|
|
5002
5147
|
|
|
5003
5148
|
// src/components/icons/send/index.tsx
|
|
5004
|
-
import { jsx as
|
|
5149
|
+
import { jsx as jsx119, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
5005
5150
|
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5006
|
-
return /* @__PURE__ */
|
|
5151
|
+
return /* @__PURE__ */ jsxs88(
|
|
5007
5152
|
"svg",
|
|
5008
5153
|
{
|
|
5009
5154
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5018,17 +5163,17 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5018
5163
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5019
5164
|
...rest,
|
|
5020
5165
|
children: [
|
|
5021
|
-
/* @__PURE__ */
|
|
5022
|
-
/* @__PURE__ */
|
|
5166
|
+
/* @__PURE__ */ jsx119("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
5167
|
+
/* @__PURE__ */ jsx119("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
5023
5168
|
]
|
|
5024
5169
|
}
|
|
5025
5170
|
);
|
|
5026
5171
|
}
|
|
5027
5172
|
|
|
5028
5173
|
// src/components/icons/settings/index.tsx
|
|
5029
|
-
import { jsx as
|
|
5174
|
+
import { jsx as jsx120, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
5030
5175
|
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5031
|
-
return /* @__PURE__ */
|
|
5176
|
+
return /* @__PURE__ */ jsxs89(
|
|
5032
5177
|
"svg",
|
|
5033
5178
|
{
|
|
5034
5179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5043,17 +5188,17 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5043
5188
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5044
5189
|
...rest,
|
|
5045
5190
|
children: [
|
|
5046
|
-
/* @__PURE__ */
|
|
5047
|
-
/* @__PURE__ */
|
|
5191
|
+
/* @__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" }),
|
|
5192
|
+
/* @__PURE__ */ jsx120("circle", { cx: "12", cy: "12", r: "3" })
|
|
5048
5193
|
]
|
|
5049
5194
|
}
|
|
5050
5195
|
);
|
|
5051
5196
|
}
|
|
5052
5197
|
|
|
5053
5198
|
// src/components/icons/share/index.tsx
|
|
5054
|
-
import { jsx as
|
|
5199
|
+
import { jsx as jsx121, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
5055
5200
|
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5056
|
-
return /* @__PURE__ */
|
|
5201
|
+
return /* @__PURE__ */ jsxs90(
|
|
5057
5202
|
"svg",
|
|
5058
5203
|
{
|
|
5059
5204
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5068,18 +5213,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5068
5213
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5069
5214
|
...rest,
|
|
5070
5215
|
children: [
|
|
5071
|
-
/* @__PURE__ */
|
|
5072
|
-
/* @__PURE__ */
|
|
5073
|
-
/* @__PURE__ */
|
|
5216
|
+
/* @__PURE__ */ jsx121("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5217
|
+
/* @__PURE__ */ jsx121("polyline", { points: "16 6 12 2 8 6" }),
|
|
5218
|
+
/* @__PURE__ */ jsx121("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
5074
5219
|
]
|
|
5075
5220
|
}
|
|
5076
5221
|
);
|
|
5077
5222
|
}
|
|
5078
5223
|
|
|
5079
5224
|
// src/components/icons/shield/index.tsx
|
|
5080
|
-
import { jsx as
|
|
5225
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
5081
5226
|
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5082
|
-
return /* @__PURE__ */
|
|
5227
|
+
return /* @__PURE__ */ jsx122(
|
|
5083
5228
|
"svg",
|
|
5084
5229
|
{
|
|
5085
5230
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5093,15 +5238,15 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5093
5238
|
strokeLinejoin: "round",
|
|
5094
5239
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5095
5240
|
...rest,
|
|
5096
|
-
children: /* @__PURE__ */
|
|
5241
|
+
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
5242
|
}
|
|
5098
5243
|
);
|
|
5099
5244
|
}
|
|
5100
5245
|
|
|
5101
5246
|
// src/components/icons/shield-check/index.tsx
|
|
5102
|
-
import { jsx as
|
|
5247
|
+
import { jsx as jsx123, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
5103
5248
|
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5104
|
-
return /* @__PURE__ */
|
|
5249
|
+
return /* @__PURE__ */ jsxs91(
|
|
5105
5250
|
"svg",
|
|
5106
5251
|
{
|
|
5107
5252
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5116,17 +5261,17 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5116
5261
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5117
5262
|
...rest,
|
|
5118
5263
|
children: [
|
|
5119
|
-
/* @__PURE__ */
|
|
5120
|
-
/* @__PURE__ */
|
|
5264
|
+
/* @__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" }),
|
|
5265
|
+
/* @__PURE__ */ jsx123("path", { d: "m9 12 2 2 4-4" })
|
|
5121
5266
|
]
|
|
5122
5267
|
}
|
|
5123
5268
|
);
|
|
5124
5269
|
}
|
|
5125
5270
|
|
|
5126
5271
|
// src/components/icons/shopping-bag/index.tsx
|
|
5127
|
-
import { jsx as
|
|
5272
|
+
import { jsx as jsx124, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
5128
5273
|
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5129
|
-
return /* @__PURE__ */
|
|
5274
|
+
return /* @__PURE__ */ jsxs92(
|
|
5130
5275
|
"svg",
|
|
5131
5276
|
{
|
|
5132
5277
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5141,18 +5286,18 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5141
5286
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5142
5287
|
...rest,
|
|
5143
5288
|
children: [
|
|
5144
|
-
/* @__PURE__ */
|
|
5145
|
-
/* @__PURE__ */
|
|
5146
|
-
/* @__PURE__ */
|
|
5289
|
+
/* @__PURE__ */ jsx124("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5290
|
+
/* @__PURE__ */ jsx124("path", { d: "M3 6h18" }),
|
|
5291
|
+
/* @__PURE__ */ jsx124("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5147
5292
|
]
|
|
5148
5293
|
}
|
|
5149
5294
|
);
|
|
5150
5295
|
}
|
|
5151
5296
|
|
|
5152
5297
|
// src/components/icons/shopping-cart/index.tsx
|
|
5153
|
-
import { jsx as
|
|
5298
|
+
import { jsx as jsx125, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
5154
5299
|
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5155
|
-
return /* @__PURE__ */
|
|
5300
|
+
return /* @__PURE__ */ jsxs93(
|
|
5156
5301
|
"svg",
|
|
5157
5302
|
{
|
|
5158
5303
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5167,18 +5312,18 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5167
5312
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5168
5313
|
...rest,
|
|
5169
5314
|
children: [
|
|
5170
|
-
/* @__PURE__ */
|
|
5171
|
-
/* @__PURE__ */
|
|
5172
|
-
/* @__PURE__ */
|
|
5315
|
+
/* @__PURE__ */ jsx125("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5316
|
+
/* @__PURE__ */ jsx125("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5317
|
+
/* @__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
5318
|
]
|
|
5174
5319
|
}
|
|
5175
5320
|
);
|
|
5176
5321
|
}
|
|
5177
5322
|
|
|
5178
5323
|
// src/components/icons/sidebar/index.tsx
|
|
5179
|
-
import { jsx as
|
|
5324
|
+
import { jsx as jsx126, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
5180
5325
|
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5181
|
-
return /* @__PURE__ */
|
|
5326
|
+
return /* @__PURE__ */ jsxs94(
|
|
5182
5327
|
"svg",
|
|
5183
5328
|
{
|
|
5184
5329
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5193,17 +5338,17 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5193
5338
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5194
5339
|
...rest,
|
|
5195
5340
|
children: [
|
|
5196
|
-
/* @__PURE__ */
|
|
5197
|
-
/* @__PURE__ */
|
|
5341
|
+
/* @__PURE__ */ jsx126("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5342
|
+
/* @__PURE__ */ jsx126("path", { d: "M9 3v18" })
|
|
5198
5343
|
]
|
|
5199
5344
|
}
|
|
5200
5345
|
);
|
|
5201
5346
|
}
|
|
5202
5347
|
|
|
5203
5348
|
// src/components/icons/skip-back/index.tsx
|
|
5204
|
-
import { jsx as
|
|
5349
|
+
import { jsx as jsx127, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
5205
5350
|
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5206
|
-
return /* @__PURE__ */
|
|
5351
|
+
return /* @__PURE__ */ jsxs95(
|
|
5207
5352
|
"svg",
|
|
5208
5353
|
{
|
|
5209
5354
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5218,17 +5363,17 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5218
5363
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5219
5364
|
...rest,
|
|
5220
5365
|
children: [
|
|
5221
|
-
/* @__PURE__ */
|
|
5222
|
-
/* @__PURE__ */
|
|
5366
|
+
/* @__PURE__ */ jsx127("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5367
|
+
/* @__PURE__ */ jsx127("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5223
5368
|
]
|
|
5224
5369
|
}
|
|
5225
5370
|
);
|
|
5226
5371
|
}
|
|
5227
5372
|
|
|
5228
5373
|
// src/components/icons/skip-forward/index.tsx
|
|
5229
|
-
import { jsx as
|
|
5374
|
+
import { jsx as jsx128, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
5230
5375
|
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5231
|
-
return /* @__PURE__ */
|
|
5376
|
+
return /* @__PURE__ */ jsxs96(
|
|
5232
5377
|
"svg",
|
|
5233
5378
|
{
|
|
5234
5379
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5243,17 +5388,17 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5243
5388
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5244
5389
|
...rest,
|
|
5245
5390
|
children: [
|
|
5246
|
-
/* @__PURE__ */
|
|
5247
|
-
/* @__PURE__ */
|
|
5391
|
+
/* @__PURE__ */ jsx128("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5392
|
+
/* @__PURE__ */ jsx128("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5248
5393
|
]
|
|
5249
5394
|
}
|
|
5250
5395
|
);
|
|
5251
5396
|
}
|
|
5252
5397
|
|
|
5253
5398
|
// src/components/icons/sliders/index.tsx
|
|
5254
|
-
import { jsx as
|
|
5399
|
+
import { jsx as jsx129, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
5255
5400
|
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5256
|
-
return /* @__PURE__ */
|
|
5401
|
+
return /* @__PURE__ */ jsxs97(
|
|
5257
5402
|
"svg",
|
|
5258
5403
|
{
|
|
5259
5404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5268,24 +5413,24 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5268
5413
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5269
5414
|
...rest,
|
|
5270
5415
|
children: [
|
|
5271
|
-
/* @__PURE__ */
|
|
5272
|
-
/* @__PURE__ */
|
|
5273
|
-
/* @__PURE__ */
|
|
5274
|
-
/* @__PURE__ */
|
|
5275
|
-
/* @__PURE__ */
|
|
5276
|
-
/* @__PURE__ */
|
|
5277
|
-
/* @__PURE__ */
|
|
5278
|
-
/* @__PURE__ */
|
|
5279
|
-
/* @__PURE__ */
|
|
5416
|
+
/* @__PURE__ */ jsx129("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5417
|
+
/* @__PURE__ */ jsx129("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5418
|
+
/* @__PURE__ */ jsx129("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5419
|
+
/* @__PURE__ */ jsx129("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5420
|
+
/* @__PURE__ */ jsx129("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5421
|
+
/* @__PURE__ */ jsx129("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5422
|
+
/* @__PURE__ */ jsx129("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5423
|
+
/* @__PURE__ */ jsx129("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5424
|
+
/* @__PURE__ */ jsx129("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5280
5425
|
]
|
|
5281
5426
|
}
|
|
5282
5427
|
);
|
|
5283
5428
|
}
|
|
5284
5429
|
|
|
5285
5430
|
// src/components/icons/smile/index.tsx
|
|
5286
|
-
import { jsx as
|
|
5431
|
+
import { jsx as jsx130, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
5287
5432
|
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5288
|
-
return /* @__PURE__ */
|
|
5433
|
+
return /* @__PURE__ */ jsxs98(
|
|
5289
5434
|
"svg",
|
|
5290
5435
|
{
|
|
5291
5436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5300,19 +5445,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5300
5445
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5301
5446
|
...rest,
|
|
5302
5447
|
children: [
|
|
5303
|
-
/* @__PURE__ */
|
|
5304
|
-
/* @__PURE__ */
|
|
5305
|
-
/* @__PURE__ */
|
|
5306
|
-
/* @__PURE__ */
|
|
5448
|
+
/* @__PURE__ */ jsx130("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5449
|
+
/* @__PURE__ */ jsx130("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5450
|
+
/* @__PURE__ */ jsx130("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5451
|
+
/* @__PURE__ */ jsx130("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5307
5452
|
]
|
|
5308
5453
|
}
|
|
5309
5454
|
);
|
|
5310
5455
|
}
|
|
5311
5456
|
|
|
5312
5457
|
// src/components/icons/star/index.tsx
|
|
5313
|
-
import { jsx as
|
|
5458
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
5314
5459
|
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5315
|
-
return /* @__PURE__ */
|
|
5460
|
+
return /* @__PURE__ */ jsx131(
|
|
5316
5461
|
"svg",
|
|
5317
5462
|
{
|
|
5318
5463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5326,15 +5471,15 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5326
5471
|
strokeLinejoin: "round",
|
|
5327
5472
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5328
5473
|
...rest,
|
|
5329
|
-
children: /* @__PURE__ */
|
|
5474
|
+
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
5475
|
}
|
|
5331
5476
|
);
|
|
5332
5477
|
}
|
|
5333
5478
|
|
|
5334
5479
|
// src/components/icons/sun/index.tsx
|
|
5335
|
-
import { jsx as
|
|
5480
|
+
import { jsx as jsx132, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
5336
5481
|
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5337
|
-
return /* @__PURE__ */
|
|
5482
|
+
return /* @__PURE__ */ jsxs99(
|
|
5338
5483
|
"svg",
|
|
5339
5484
|
{
|
|
5340
5485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5349,24 +5494,24 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5349
5494
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5350
5495
|
...rest,
|
|
5351
5496
|
children: [
|
|
5352
|
-
/* @__PURE__ */
|
|
5353
|
-
/* @__PURE__ */
|
|
5354
|
-
/* @__PURE__ */
|
|
5355
|
-
/* @__PURE__ */
|
|
5356
|
-
/* @__PURE__ */
|
|
5357
|
-
/* @__PURE__ */
|
|
5358
|
-
/* @__PURE__ */
|
|
5359
|
-
/* @__PURE__ */
|
|
5360
|
-
/* @__PURE__ */
|
|
5497
|
+
/* @__PURE__ */ jsx132("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5498
|
+
/* @__PURE__ */ jsx132("path", { d: "M12 2v2" }),
|
|
5499
|
+
/* @__PURE__ */ jsx132("path", { d: "M12 20v2" }),
|
|
5500
|
+
/* @__PURE__ */ jsx132("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5501
|
+
/* @__PURE__ */ jsx132("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5502
|
+
/* @__PURE__ */ jsx132("path", { d: "M2 12h2" }),
|
|
5503
|
+
/* @__PURE__ */ jsx132("path", { d: "M20 12h2" }),
|
|
5504
|
+
/* @__PURE__ */ jsx132("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5505
|
+
/* @__PURE__ */ jsx132("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5361
5506
|
]
|
|
5362
5507
|
}
|
|
5363
5508
|
);
|
|
5364
5509
|
}
|
|
5365
5510
|
|
|
5366
5511
|
// src/components/icons/tag/index.tsx
|
|
5367
|
-
import { jsx as
|
|
5512
|
+
import { jsx as jsx133, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
5368
5513
|
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5369
|
-
return /* @__PURE__ */
|
|
5514
|
+
return /* @__PURE__ */ jsxs100(
|
|
5370
5515
|
"svg",
|
|
5371
5516
|
{
|
|
5372
5517
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5381,17 +5526,17 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5381
5526
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5382
5527
|
...rest,
|
|
5383
5528
|
children: [
|
|
5384
|
-
/* @__PURE__ */
|
|
5385
|
-
/* @__PURE__ */
|
|
5529
|
+
/* @__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" }),
|
|
5530
|
+
/* @__PURE__ */ jsx133("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5386
5531
|
]
|
|
5387
5532
|
}
|
|
5388
5533
|
);
|
|
5389
5534
|
}
|
|
5390
5535
|
|
|
5391
5536
|
// src/components/icons/thumbs-down/index.tsx
|
|
5392
|
-
import { jsx as
|
|
5537
|
+
import { jsx as jsx134, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
5393
5538
|
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5394
|
-
return /* @__PURE__ */
|
|
5539
|
+
return /* @__PURE__ */ jsxs101(
|
|
5395
5540
|
"svg",
|
|
5396
5541
|
{
|
|
5397
5542
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5406,17 +5551,17 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
5406
5551
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5407
5552
|
...rest,
|
|
5408
5553
|
children: [
|
|
5409
|
-
/* @__PURE__ */
|
|
5410
|
-
/* @__PURE__ */
|
|
5554
|
+
/* @__PURE__ */ jsx134("path", { d: "M17 14V2" }),
|
|
5555
|
+
/* @__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
5556
|
]
|
|
5412
5557
|
}
|
|
5413
5558
|
);
|
|
5414
5559
|
}
|
|
5415
5560
|
|
|
5416
5561
|
// src/components/icons/thumbs-up/index.tsx
|
|
5417
|
-
import { jsx as
|
|
5562
|
+
import { jsx as jsx135, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
5418
5563
|
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5419
|
-
return /* @__PURE__ */
|
|
5564
|
+
return /* @__PURE__ */ jsxs102(
|
|
5420
5565
|
"svg",
|
|
5421
5566
|
{
|
|
5422
5567
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5431,17 +5576,17 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5431
5576
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5432
5577
|
...rest,
|
|
5433
5578
|
children: [
|
|
5434
|
-
/* @__PURE__ */
|
|
5435
|
-
/* @__PURE__ */
|
|
5579
|
+
/* @__PURE__ */ jsx135("path", { d: "M7 10v12" }),
|
|
5580
|
+
/* @__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
5581
|
]
|
|
5437
5582
|
}
|
|
5438
5583
|
);
|
|
5439
5584
|
}
|
|
5440
5585
|
|
|
5441
5586
|
// src/components/icons/trash/index.tsx
|
|
5442
|
-
import { jsx as
|
|
5587
|
+
import { jsx as jsx136, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
5443
5588
|
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5444
|
-
return /* @__PURE__ */
|
|
5589
|
+
return /* @__PURE__ */ jsxs103(
|
|
5445
5590
|
"svg",
|
|
5446
5591
|
{
|
|
5447
5592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5456,18 +5601,18 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5456
5601
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5457
5602
|
...rest,
|
|
5458
5603
|
children: [
|
|
5459
|
-
/* @__PURE__ */
|
|
5460
|
-
/* @__PURE__ */
|
|
5461
|
-
/* @__PURE__ */
|
|
5604
|
+
/* @__PURE__ */ jsx136("path", { d: "M3 6h18" }),
|
|
5605
|
+
/* @__PURE__ */ jsx136("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5606
|
+
/* @__PURE__ */ jsx136("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5462
5607
|
]
|
|
5463
5608
|
}
|
|
5464
5609
|
);
|
|
5465
5610
|
}
|
|
5466
5611
|
|
|
5467
5612
|
// src/components/icons/undo/index.tsx
|
|
5468
|
-
import { jsx as
|
|
5613
|
+
import { jsx as jsx137, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
5469
5614
|
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5470
|
-
return /* @__PURE__ */
|
|
5615
|
+
return /* @__PURE__ */ jsxs104(
|
|
5471
5616
|
"svg",
|
|
5472
5617
|
{
|
|
5473
5618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5482,17 +5627,17 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5482
5627
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5483
5628
|
...rest,
|
|
5484
5629
|
children: [
|
|
5485
|
-
/* @__PURE__ */
|
|
5486
|
-
/* @__PURE__ */
|
|
5630
|
+
/* @__PURE__ */ jsx137("path", { d: "M3 7v6h6" }),
|
|
5631
|
+
/* @__PURE__ */ jsx137("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5487
5632
|
]
|
|
5488
5633
|
}
|
|
5489
5634
|
);
|
|
5490
5635
|
}
|
|
5491
5636
|
|
|
5492
5637
|
// src/components/icons/unlock/index.tsx
|
|
5493
|
-
import { jsx as
|
|
5638
|
+
import { jsx as jsx138, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
5494
5639
|
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5495
|
-
return /* @__PURE__ */
|
|
5640
|
+
return /* @__PURE__ */ jsxs105(
|
|
5496
5641
|
"svg",
|
|
5497
5642
|
{
|
|
5498
5643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5507,17 +5652,17 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5507
5652
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5508
5653
|
...rest,
|
|
5509
5654
|
children: [
|
|
5510
|
-
/* @__PURE__ */
|
|
5511
|
-
/* @__PURE__ */
|
|
5655
|
+
/* @__PURE__ */ jsx138("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5656
|
+
/* @__PURE__ */ jsx138("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5512
5657
|
]
|
|
5513
5658
|
}
|
|
5514
5659
|
);
|
|
5515
5660
|
}
|
|
5516
5661
|
|
|
5517
5662
|
// src/components/icons/upload/index.tsx
|
|
5518
|
-
import { jsx as
|
|
5663
|
+
import { jsx as jsx139, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
5519
5664
|
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5520
|
-
return /* @__PURE__ */
|
|
5665
|
+
return /* @__PURE__ */ jsxs106(
|
|
5521
5666
|
"svg",
|
|
5522
5667
|
{
|
|
5523
5668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5532,18 +5677,18 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5532
5677
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5533
5678
|
...rest,
|
|
5534
5679
|
children: [
|
|
5535
|
-
/* @__PURE__ */
|
|
5536
|
-
/* @__PURE__ */
|
|
5537
|
-
/* @__PURE__ */
|
|
5680
|
+
/* @__PURE__ */ jsx139("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5681
|
+
/* @__PURE__ */ jsx139("polyline", { points: "17 8 12 3 7 8" }),
|
|
5682
|
+
/* @__PURE__ */ jsx139("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5538
5683
|
]
|
|
5539
5684
|
}
|
|
5540
5685
|
);
|
|
5541
5686
|
}
|
|
5542
5687
|
|
|
5543
5688
|
// src/components/icons/user/index.tsx
|
|
5544
|
-
import { jsx as
|
|
5689
|
+
import { jsx as jsx140, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
5545
5690
|
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5546
|
-
return /* @__PURE__ */
|
|
5691
|
+
return /* @__PURE__ */ jsxs107(
|
|
5547
5692
|
"svg",
|
|
5548
5693
|
{
|
|
5549
5694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5558,17 +5703,17 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5558
5703
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5559
5704
|
...rest,
|
|
5560
5705
|
children: [
|
|
5561
|
-
/* @__PURE__ */
|
|
5562
|
-
/* @__PURE__ */
|
|
5706
|
+
/* @__PURE__ */ jsx140("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5707
|
+
/* @__PURE__ */ jsx140("circle", { cx: "12", cy: "7", r: "4" })
|
|
5563
5708
|
]
|
|
5564
5709
|
}
|
|
5565
5710
|
);
|
|
5566
5711
|
}
|
|
5567
5712
|
|
|
5568
5713
|
// src/components/icons/user-check/index.tsx
|
|
5569
|
-
import { jsx as
|
|
5714
|
+
import { jsx as jsx141, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
5570
5715
|
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5571
|
-
return /* @__PURE__ */
|
|
5716
|
+
return /* @__PURE__ */ jsxs108(
|
|
5572
5717
|
"svg",
|
|
5573
5718
|
{
|
|
5574
5719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5583,18 +5728,18 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5583
5728
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5584
5729
|
...rest,
|
|
5585
5730
|
children: [
|
|
5586
|
-
/* @__PURE__ */
|
|
5587
|
-
/* @__PURE__ */
|
|
5588
|
-
/* @__PURE__ */
|
|
5731
|
+
/* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5732
|
+
/* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5733
|
+
/* @__PURE__ */ jsx141("polyline", { points: "16 11 18 13 22 9" })
|
|
5589
5734
|
]
|
|
5590
5735
|
}
|
|
5591
5736
|
);
|
|
5592
5737
|
}
|
|
5593
5738
|
|
|
5594
5739
|
// src/components/icons/user-plus/index.tsx
|
|
5595
|
-
import { jsx as
|
|
5740
|
+
import { jsx as jsx142, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
5596
5741
|
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5597
|
-
return /* @__PURE__ */
|
|
5742
|
+
return /* @__PURE__ */ jsxs109(
|
|
5598
5743
|
"svg",
|
|
5599
5744
|
{
|
|
5600
5745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5609,19 +5754,19 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5609
5754
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5610
5755
|
...rest,
|
|
5611
5756
|
children: [
|
|
5612
|
-
/* @__PURE__ */
|
|
5613
|
-
/* @__PURE__ */
|
|
5614
|
-
/* @__PURE__ */
|
|
5615
|
-
/* @__PURE__ */
|
|
5757
|
+
/* @__PURE__ */ jsx142("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5758
|
+
/* @__PURE__ */ jsx142("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5759
|
+
/* @__PURE__ */ jsx142("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5760
|
+
/* @__PURE__ */ jsx142("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5616
5761
|
]
|
|
5617
5762
|
}
|
|
5618
5763
|
);
|
|
5619
5764
|
}
|
|
5620
5765
|
|
|
5621
5766
|
// src/components/icons/users/index.tsx
|
|
5622
|
-
import { jsx as
|
|
5767
|
+
import { jsx as jsx143, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
5623
5768
|
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5624
|
-
return /* @__PURE__ */
|
|
5769
|
+
return /* @__PURE__ */ jsxs110(
|
|
5625
5770
|
"svg",
|
|
5626
5771
|
{
|
|
5627
5772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5636,19 +5781,19 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5636
5781
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5637
5782
|
...rest,
|
|
5638
5783
|
children: [
|
|
5639
|
-
/* @__PURE__ */
|
|
5640
|
-
/* @__PURE__ */
|
|
5641
|
-
/* @__PURE__ */
|
|
5642
|
-
/* @__PURE__ */
|
|
5784
|
+
/* @__PURE__ */ jsx143("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5785
|
+
/* @__PURE__ */ jsx143("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5786
|
+
/* @__PURE__ */ jsx143("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5787
|
+
/* @__PURE__ */ jsx143("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5643
5788
|
]
|
|
5644
5789
|
}
|
|
5645
5790
|
);
|
|
5646
5791
|
}
|
|
5647
5792
|
|
|
5648
5793
|
// src/components/icons/volume-2/index.tsx
|
|
5649
|
-
import { jsx as
|
|
5794
|
+
import { jsx as jsx144, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
5650
5795
|
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5651
|
-
return /* @__PURE__ */
|
|
5796
|
+
return /* @__PURE__ */ jsxs111(
|
|
5652
5797
|
"svg",
|
|
5653
5798
|
{
|
|
5654
5799
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5663,18 +5808,18 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5663
5808
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5664
5809
|
...rest,
|
|
5665
5810
|
children: [
|
|
5666
|
-
/* @__PURE__ */
|
|
5667
|
-
/* @__PURE__ */
|
|
5668
|
-
/* @__PURE__ */
|
|
5811
|
+
/* @__PURE__ */ jsx144("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5812
|
+
/* @__PURE__ */ jsx144("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5813
|
+
/* @__PURE__ */ jsx144("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5669
5814
|
]
|
|
5670
5815
|
}
|
|
5671
5816
|
);
|
|
5672
5817
|
}
|
|
5673
5818
|
|
|
5674
5819
|
// src/components/icons/volume-x/index.tsx
|
|
5675
|
-
import { jsx as
|
|
5820
|
+
import { jsx as jsx145, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
5676
5821
|
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5677
|
-
return /* @__PURE__ */
|
|
5822
|
+
return /* @__PURE__ */ jsxs112(
|
|
5678
5823
|
"svg",
|
|
5679
5824
|
{
|
|
5680
5825
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5689,18 +5834,18 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5689
5834
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5690
5835
|
...rest,
|
|
5691
5836
|
children: [
|
|
5692
|
-
/* @__PURE__ */
|
|
5693
|
-
/* @__PURE__ */
|
|
5694
|
-
/* @__PURE__ */
|
|
5837
|
+
/* @__PURE__ */ jsx145("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5838
|
+
/* @__PURE__ */ jsx145("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5839
|
+
/* @__PURE__ */ jsx145("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5695
5840
|
]
|
|
5696
5841
|
}
|
|
5697
5842
|
);
|
|
5698
5843
|
}
|
|
5699
5844
|
|
|
5700
5845
|
// src/components/icons/wifi/index.tsx
|
|
5701
|
-
import { jsx as
|
|
5846
|
+
import { jsx as jsx146, jsxs as jsxs113 } from "react/jsx-runtime";
|
|
5702
5847
|
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5703
|
-
return /* @__PURE__ */
|
|
5848
|
+
return /* @__PURE__ */ jsxs113(
|
|
5704
5849
|
"svg",
|
|
5705
5850
|
{
|
|
5706
5851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5715,19 +5860,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5715
5860
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5716
5861
|
...rest,
|
|
5717
5862
|
children: [
|
|
5718
|
-
/* @__PURE__ */
|
|
5719
|
-
/* @__PURE__ */
|
|
5720
|
-
/* @__PURE__ */
|
|
5721
|
-
/* @__PURE__ */
|
|
5863
|
+
/* @__PURE__ */ jsx146("path", { d: "M12 20h.01" }),
|
|
5864
|
+
/* @__PURE__ */ jsx146("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5865
|
+
/* @__PURE__ */ jsx146("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5866
|
+
/* @__PURE__ */ jsx146("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5722
5867
|
]
|
|
5723
5868
|
}
|
|
5724
5869
|
);
|
|
5725
5870
|
}
|
|
5726
5871
|
|
|
5727
5872
|
// src/components/icons/zap/index.tsx
|
|
5728
|
-
import { jsx as
|
|
5873
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
5729
5874
|
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5730
|
-
return /* @__PURE__ */
|
|
5875
|
+
return /* @__PURE__ */ jsx147(
|
|
5731
5876
|
"svg",
|
|
5732
5877
|
{
|
|
5733
5878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5741,7 +5886,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5741
5886
|
strokeLinejoin: "round",
|
|
5742
5887
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5743
5888
|
...rest,
|
|
5744
|
-
children: /* @__PURE__ */
|
|
5889
|
+
children: /* @__PURE__ */ jsx147("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5745
5890
|
}
|
|
5746
5891
|
);
|
|
5747
5892
|
}
|
|
@@ -5958,6 +6103,7 @@ export {
|
|
|
5958
6103
|
PrinterIcon,
|
|
5959
6104
|
Progress,
|
|
5960
6105
|
Radio,
|
|
6106
|
+
RadioGroup,
|
|
5961
6107
|
RedoIcon,
|
|
5962
6108
|
RefreshCwIcon,
|
|
5963
6109
|
SaveIcon,
|