@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 CHANGED
@@ -826,6 +826,7 @@ declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGr
826
826
 
827
827
  interface IconProps extends React$1.SVGProps<SVGSVGElement> {
828
828
  size?: number | string;
829
+ strokeWidth?: number | string;
829
830
  }
830
831
 
831
832
  declare const AdministrationIcon: React__default.FC<IconProps>;
package/dist/index.d.ts CHANGED
@@ -826,6 +826,7 @@ declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGr
826
826
 
827
827
  interface IconProps extends React$1.SVGProps<SVGSVGElement> {
828
828
  size?: number | string;
829
+ strokeWidth?: number | string;
829
830
  }
830
831
 
831
832
  declare const AdministrationIcon: React__default.FC<IconProps>;
package/dist/index.js CHANGED
@@ -1176,18 +1176,25 @@ var DataEntryIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ */ j
1176
1176
  ]
1177
1177
  }
1178
1178
  );
1179
- var DecreaseIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx(
1179
+ var DecreaseIcon = ({
1180
+ size = "1em",
1181
+ strokeWidth = 1.5,
1182
+ className,
1183
+ ...props
1184
+ }) => /* @__PURE__ */ jsxRuntime.jsx(
1180
1185
  "svg",
1181
1186
  {
1182
1187
  xmlns: "http://www.w3.org/2000/svg",
1183
- viewBox: "0 0 9 4",
1184
- fill: "currentColor",
1188
+ viewBox: "0 0 24 24",
1189
+ fill: "none",
1190
+ stroke: "currentColor",
1191
+ strokeWidth,
1192
+ strokeLinecap: "round",
1185
1193
  width: size,
1186
1194
  height: size,
1187
1195
  className,
1188
- "aria-hidden": true,
1189
1196
  ...props,
1190
- children: /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "0.572754", y: "0.441406", width: "7.57659", height: "2.75347", fill: "currentColor" })
1197
+ children: /* @__PURE__ */ jsxRuntime.jsx("line", { x1: "4", y1: "12", x2: "20", y2: "12" })
1191
1198
  }
1192
1199
  );
1193
1200
  var SuiDotsVerticalIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
@@ -2325,46 +2332,27 @@ var OutlineArrowIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ *
2325
2332
  )
2326
2333
  }
2327
2334
  );
2328
- var PlusIcon = ({ size = "1em", className, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
2335
+ var PlusIcon = ({
2336
+ size = "1em",
2337
+ strokeWidth = 1.5,
2338
+ className,
2339
+ ...props
2340
+ }) => /* @__PURE__ */ jsxRuntime.jsxs(
2329
2341
  "svg",
2330
2342
  {
2331
2343
  xmlns: "http://www.w3.org/2000/svg",
2332
- viewBox: "0 0 9 9",
2333
- fill: "currentColor",
2344
+ viewBox: "0 0 24 24",
2345
+ fill: "none",
2346
+ stroke: "currentColor",
2347
+ strokeWidth,
2348
+ strokeLinecap: "round",
2334
2349
  width: size,
2335
2350
  height: size,
2336
2351
  className,
2337
- "aria-hidden": true,
2338
2352
  ...props,
2339
2353
  children: [
2340
- /* @__PURE__ */ jsxRuntime.jsx(
2341
- "path",
2342
- {
2343
- d: "M3.12305 8.23047L3.12305 0.653882L5.87652 0.653882L5.87652 8.23047L3.12305 8.23047Z",
2344
- fill: "currentColor"
2345
- }
2346
- ),
2347
- /* @__PURE__ */ jsxRuntime.jsx(
2348
- "path",
2349
- {
2350
- d: "M3.12305 8.23047L3.12305 0.653882L5.87652 0.653882L5.87652 8.23047L3.12305 8.23047Z",
2351
- fill: "currentColor"
2352
- }
2353
- ),
2354
- /* @__PURE__ */ jsxRuntime.jsx(
2355
- "path",
2356
- {
2357
- d: "M0.710938 3.06641L8.28752 3.06641V5.81988L0.710937 5.81988L0.710938 3.06641Z",
2358
- fill: "currentColor"
2359
- }
2360
- ),
2361
- /* @__PURE__ */ jsxRuntime.jsx(
2362
- "path",
2363
- {
2364
- d: "M0.710938 3.06641L8.28752 3.06641V5.81988L0.710937 5.81988L0.710938 3.06641Z",
2365
- fill: "currentColor"
2366
- }
2367
- )
2354
+ /* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "4", x2: "12", y2: "20" }),
2355
+ /* @__PURE__ */ jsxRuntime.jsx("line", { x1: "4", y1: "12", x2: "20", y2: "12" })
2368
2356
  ]
2369
2357
  }
2370
2358
  );