@ecohouse/ui 0.1.47 → 0.1.48
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 +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +18 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/icons/Unlock/UnlockIcon.tsx +20 -0
- package/src/icons/Unlock/UnlockIcon.web.tsx +26 -0
- package/src/icons/Unlock/index.ts +1 -0
- package/src/icons/Unlock/unlockPath.ts +2 -0
- package/src/icons/index.ts +1 -0
- package/src/icons/registry.ts +3 -0
- package/src/index.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -30199,6 +30199,21 @@ function TotalGuestsIcon({ size = 20, color = colors.primary, strokeWidth = 2 })
|
|
|
30199
30199
|
) });
|
|
30200
30200
|
}
|
|
30201
30201
|
|
|
30202
|
+
// src/icons/Unlock/unlockPath.ts
|
|
30203
|
+
var UNLOCK_PATH = "M5.33333 7.33333V5.33333C5.33333 3.86057 6.52724 2.66667 8 2.66667C9.47276 2.66667 10.6667 3.86057 10.6667 5.33333M4 7.33333H12C12.7364 7.33333 13.3333 7.93029 13.3333 8.66667V12.6667C13.3333 13.403 12.7364 14 12 14H4C3.26362 14 2.66667 13.403 2.66667 12.6667V8.66667C2.66667 7.93029 3.26362 7.33333 4 7.33333Z";
|
|
30204
|
+
function UnlockIcon({ size = 16, color = colors.grey0, strokeWidth = 1.5 }) {
|
|
30205
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg26__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30206
|
+
Svg26.Path,
|
|
30207
|
+
{
|
|
30208
|
+
d: UNLOCK_PATH,
|
|
30209
|
+
stroke: color,
|
|
30210
|
+
strokeWidth,
|
|
30211
|
+
strokeLinecap: "round",
|
|
30212
|
+
strokeLinejoin: "round"
|
|
30213
|
+
}
|
|
30214
|
+
) });
|
|
30215
|
+
}
|
|
30216
|
+
|
|
30202
30217
|
// src/icons/User/userPath.ts
|
|
30203
30218
|
var USER_PATH = "M15.8334 17.5C15.8334 14.2783 13.2217 11.6667 10 11.6667C6.77836 11.6667 4.16669 14.2783 4.16669 17.5M10 9.16667C8.15907 9.16667 6.66669 7.67428 6.66669 5.83333C6.66669 3.99238 8.15907 2.5 10 2.5C11.841 2.5 13.3334 3.99238 13.3334 5.83333C13.3334 7.67428 11.841 9.16667 10 9.16667Z";
|
|
30204
30219
|
function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
@@ -30396,6 +30411,7 @@ var icons = {
|
|
|
30396
30411
|
totalGuests: TotalGuestsIcon,
|
|
30397
30412
|
tooltipArrow: TooltipArrowIcon,
|
|
30398
30413
|
trash: TrashIcon,
|
|
30414
|
+
unlock: UnlockIcon,
|
|
30399
30415
|
user: UserIcon,
|
|
30400
30416
|
usersAlt: UsersAltIcon,
|
|
30401
30417
|
video: VideoIcon,
|
|
@@ -30490,6 +30506,7 @@ var iconGroups = {
|
|
|
30490
30506
|
"qrCode",
|
|
30491
30507
|
"quietHours",
|
|
30492
30508
|
"trash",
|
|
30509
|
+
"unlock",
|
|
30493
30510
|
"user",
|
|
30494
30511
|
"usersAlt",
|
|
30495
30512
|
"video",
|
|
@@ -38403,6 +38420,7 @@ exports.ToggleRow = ToggleRow;
|
|
|
38403
38420
|
exports.TooltipArrowIcon = TooltipArrowIcon;
|
|
38404
38421
|
exports.TotalGuestsIcon = TotalGuestsIcon;
|
|
38405
38422
|
exports.TrashIcon = TrashIcon;
|
|
38423
|
+
exports.UnlockIcon = UnlockIcon;
|
|
38406
38424
|
exports.UserIcon = UserIcon;
|
|
38407
38425
|
exports.UsersAltIcon = UsersAltIcon;
|
|
38408
38426
|
exports.VerificationCodeInput = VerificationCodeInput;
|