@staffbase/design 20.2.1 → 20.3.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/main.cjs +2 -2
- package/dist/main.cjs.map +1 -1
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -4240,7 +4240,7 @@ var MinusCircleIcon_default = React.memo(MinusCircleIcon);
|
|
|
4240
4240
|
var MobileIcon = React.forwardRef((props, ref) => {
|
|
4241
4241
|
const { className, ...rest } = props;
|
|
4242
4242
|
const finalClassName = ["ds-icon ds-icon-mobile", className].filter(Boolean).join(" ");
|
|
4243
|
-
return /* @__PURE__ */
|
|
4243
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
4244
4244
|
"aria-hidden": "true",
|
|
4245
4245
|
viewBox: "0 0 24 24",
|
|
4246
4246
|
width: "1em",
|
|
@@ -4250,7 +4250,7 @@ var MobileIcon = React.forwardRef((props, ref) => {
|
|
|
4250
4250
|
className: finalClassName,
|
|
4251
4251
|
ref,
|
|
4252
4252
|
"data-c13y-component": "icon",
|
|
4253
|
-
children:
|
|
4253
|
+
children: /* @__PURE__ */ jsx("path", { d: "M17 0H7a3 3 0 0 0 -3 3v18a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3V3a3 3 0 0 0 -3 -3Zm-5 22.47a1 1 0 1 1 1 -1 1 1 0 0 1 -1 1ZM18 18a1 1 0 0 1 -1 1H7a1 1 0 0 1 -1 -1V3.53a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1Z" })
|
|
4254
4254
|
});
|
|
4255
4255
|
});
|
|
4256
4256
|
MobileIcon.displayName = "MobileIcon";
|