@mirohq/design-system-icons 1.42.0 → 1.43.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.js +29 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +29 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +3 -3
- package/react/index.ts +1 -0
- package/react/user-key.tsx +36 -0
- package/svg/24/user-key.svg +2 -0
- package/svg/meta.json +21 -0
package/dist/main.js
CHANGED
|
@@ -17106,6 +17106,34 @@ const IconUserFilter = react.forwardRef(
|
|
|
17106
17106
|
);
|
|
17107
17107
|
IconUserFilter[designSystemBaseIcon.iconSymbol] = true;
|
|
17108
17108
|
|
|
17109
|
+
const IconUserKey = react.forwardRef(
|
|
17110
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
17111
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
17112
|
+
return react.createElement(
|
|
17113
|
+
StyledIcon,
|
|
17114
|
+
{
|
|
17115
|
+
...props,
|
|
17116
|
+
debug,
|
|
17117
|
+
"aria-hidden": true,
|
|
17118
|
+
size,
|
|
17119
|
+
viewBox: "0 0 24 24",
|
|
17120
|
+
fill: "none",
|
|
17121
|
+
ref: forwardRef2
|
|
17122
|
+
},
|
|
17123
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17124
|
+
"path",
|
|
17125
|
+
{
|
|
17126
|
+
fill: "currentColor",
|
|
17127
|
+
fillRule: "evenodd",
|
|
17128
|
+
d: "M17.723 12.156c.817 0 1.515.29 2.093.868.579.579.869 1.277.869 2.094 0 .818-.29 1.516-.869 2.095a2.8 2.8 0 0 1-1.578.814 2.988 2.988 0 0 1-1.712-.216v1.496h-1.795v1.795h-2.393v-1.795l2.782-2.783a2.916 2.916 0 0 1-.337-1.817 2.856 2.856 0 0 1 .846-1.683 2.854 2.854 0 0 1 2.094-.868Zm.299 1.81a.818.818 0 0 0-.598.255.82.82 0 0 0-.255.598c0 .23.085.428.255.598a.82.82 0 0 0 .598.255.82.82 0 0 0 .598-.255.818.818 0 0 0 .254-.598.82.82 0 0 0-.254-.598.82.82 0 0 0-.599-.254ZM11.994 15a5.077 5.077 0 0 0-5.052 4.572L6.79 21.1l-1.99-.2.153-1.527A7.077 7.077 0 0 1 11.995 13v2Zm0-12a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z",
|
|
17129
|
+
clipRule: "evenodd"
|
|
17130
|
+
}
|
|
17131
|
+
)
|
|
17132
|
+
);
|
|
17133
|
+
}
|
|
17134
|
+
);
|
|
17135
|
+
IconUserKey[designSystemBaseIcon.iconSymbol] = true;
|
|
17136
|
+
|
|
17109
17137
|
const IconUserLoad = react.forwardRef(
|
|
17110
17138
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
17111
17139
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -18611,6 +18639,7 @@ exports.IconUserCog = IconUserCog;
|
|
|
18611
18639
|
exports.IconUserCogPlus = IconUserCogPlus;
|
|
18612
18640
|
exports.IconUserEyeOpen = IconUserEyeOpen;
|
|
18613
18641
|
exports.IconUserFilter = IconUserFilter;
|
|
18642
|
+
exports.IconUserKey = IconUserKey;
|
|
18614
18643
|
exports.IconUserLoad = IconUserLoad;
|
|
18615
18644
|
exports.IconUserMic = IconUserMic;
|
|
18616
18645
|
exports.IconUserMicSlash = IconUserMicSlash;
|