@sustaina/shared-ui 1.52.0 → 1.53.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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +25 -37
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -37
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1134,18 +1134,25 @@ var DataEntryIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ */ j
|
|
|
1134
1134
|
]
|
|
1135
1135
|
}
|
|
1136
1136
|
);
|
|
1137
|
-
var DecreaseIcon = ({
|
|
1137
|
+
var DecreaseIcon = ({
|
|
1138
|
+
size = "1em",
|
|
1139
|
+
strokeWidth = 1.5,
|
|
1140
|
+
className,
|
|
1141
|
+
...props
|
|
1142
|
+
}) => /* @__PURE__ */ jsx(
|
|
1138
1143
|
"svg",
|
|
1139
1144
|
{
|
|
1140
1145
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1141
|
-
viewBox: "0 0
|
|
1142
|
-
fill: "
|
|
1146
|
+
viewBox: "0 0 24 24",
|
|
1147
|
+
fill: "none",
|
|
1148
|
+
stroke: "currentColor",
|
|
1149
|
+
strokeWidth,
|
|
1150
|
+
strokeLinecap: "round",
|
|
1143
1151
|
width: size,
|
|
1144
1152
|
height: size,
|
|
1145
1153
|
className,
|
|
1146
|
-
"aria-hidden": true,
|
|
1147
1154
|
...props,
|
|
1148
|
-
children: /* @__PURE__ */ jsx("
|
|
1155
|
+
children: /* @__PURE__ */ jsx("line", { x1: "4", y1: "12", x2: "20", y2: "12" })
|
|
1149
1156
|
}
|
|
1150
1157
|
);
|
|
1151
1158
|
var SuiDotsVerticalIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ */ jsxs(
|
|
@@ -2283,46 +2290,27 @@ var OutlineArrowIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ *
|
|
|
2283
2290
|
)
|
|
2284
2291
|
}
|
|
2285
2292
|
);
|
|
2286
|
-
var PlusIcon = ({
|
|
2293
|
+
var PlusIcon = ({
|
|
2294
|
+
size = "1em",
|
|
2295
|
+
strokeWidth = 1.5,
|
|
2296
|
+
className,
|
|
2297
|
+
...props
|
|
2298
|
+
}) => /* @__PURE__ */ jsxs(
|
|
2287
2299
|
"svg",
|
|
2288
2300
|
{
|
|
2289
2301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2290
|
-
viewBox: "0 0
|
|
2291
|
-
fill: "
|
|
2302
|
+
viewBox: "0 0 24 24",
|
|
2303
|
+
fill: "none",
|
|
2304
|
+
stroke: "currentColor",
|
|
2305
|
+
strokeWidth,
|
|
2306
|
+
strokeLinecap: "round",
|
|
2292
2307
|
width: size,
|
|
2293
2308
|
height: size,
|
|
2294
2309
|
className,
|
|
2295
|
-
"aria-hidden": true,
|
|
2296
2310
|
...props,
|
|
2297
2311
|
children: [
|
|
2298
|
-
/* @__PURE__ */ jsx(
|
|
2299
|
-
|
|
2300
|
-
{
|
|
2301
|
-
d: "M3.12305 8.23047L3.12305 0.653882L5.87652 0.653882L5.87652 8.23047L3.12305 8.23047Z",
|
|
2302
|
-
fill: "currentColor"
|
|
2303
|
-
}
|
|
2304
|
-
),
|
|
2305
|
-
/* @__PURE__ */ jsx(
|
|
2306
|
-
"path",
|
|
2307
|
-
{
|
|
2308
|
-
d: "M3.12305 8.23047L3.12305 0.653882L5.87652 0.653882L5.87652 8.23047L3.12305 8.23047Z",
|
|
2309
|
-
fill: "currentColor"
|
|
2310
|
-
}
|
|
2311
|
-
),
|
|
2312
|
-
/* @__PURE__ */ jsx(
|
|
2313
|
-
"path",
|
|
2314
|
-
{
|
|
2315
|
-
d: "M0.710938 3.06641L8.28752 3.06641V5.81988L0.710937 5.81988L0.710938 3.06641Z",
|
|
2316
|
-
fill: "currentColor"
|
|
2317
|
-
}
|
|
2318
|
-
),
|
|
2319
|
-
/* @__PURE__ */ jsx(
|
|
2320
|
-
"path",
|
|
2321
|
-
{
|
|
2322
|
-
d: "M0.710938 3.06641L8.28752 3.06641V5.81988L0.710937 5.81988L0.710938 3.06641Z",
|
|
2323
|
-
fill: "currentColor"
|
|
2324
|
-
}
|
|
2325
|
-
)
|
|
2312
|
+
/* @__PURE__ */ jsx("line", { x1: "12", y1: "4", x2: "12", y2: "20" }),
|
|
2313
|
+
/* @__PURE__ */ jsx("line", { x1: "4", y1: "12", x2: "20", y2: "12" })
|
|
2326
2314
|
]
|
|
2327
2315
|
}
|
|
2328
2316
|
);
|