@ecohouse/ui 0.1.41 → 0.1.43
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 +470 -171
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +112 -4
- package/dist/index.d.ts +112 -4
- package/dist/index.js +384 -99
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/RadioButton/RadioButton.stories.tsx +64 -0
- package/src/components/RadioButton/RadioButton.tsx +135 -0
- package/src/components/RadioButton/index.ts +2 -0
- package/src/components/index.ts +3 -0
- package/src/icons/Amenity/AmenityIcon.tsx +1 -0
- package/src/icons/Amenity/AmenityIcon.web.tsx +1 -0
- package/src/icons/Amenity/amenityPaths.test.ts +67 -0
- package/src/icons/Amenity/amenityPaths.ts +54 -0
- package/src/icons/CloudUpload/CloudUploadIcon.tsx +20 -0
- package/src/icons/CloudUpload/CloudUploadIcon.web.tsx +19 -0
- package/src/icons/CloudUpload/cloudUploadPath.ts +2 -0
- package/src/icons/CloudUpload/index.ts +1 -0
- package/src/icons/Cutlery/CutleryIcon.tsx +14 -0
- package/src/icons/Cutlery/CutleryIcon.web.tsx +13 -0
- package/src/icons/Cutlery/cutleryPath.ts +2 -0
- package/src/icons/Cutlery/index.ts +1 -0
- package/src/icons/Dollar/DollarIcon.tsx +14 -0
- package/src/icons/Dollar/DollarIcon.web.tsx +13 -0
- package/src/icons/Dollar/dollarPath.ts +2 -0
- package/src/icons/Dollar/index.ts +1 -0
- package/src/icons/DragHandle/DragHandleIcon.tsx +14 -0
- package/src/icons/DragHandle/DragHandleIcon.web.tsx +13 -0
- package/src/icons/DragHandle/dragHandlePath.ts +2 -0
- package/src/icons/DragHandle/index.ts +1 -0
- package/src/icons/Eye/EyeIcon.tsx +23 -0
- package/src/icons/Eye/EyeIcon.web.tsx +22 -0
- package/src/icons/Eye/eyePaths.ts +4 -0
- package/src/icons/Eye/index.ts +1 -0
- package/src/icons/Image/ImageIcon.tsx +20 -0
- package/src/icons/Image/ImageIcon.web.tsx +19 -0
- package/src/icons/Image/imagePath.ts +2 -0
- package/src/icons/Image/index.ts +1 -0
- package/src/icons/InfoCircle/InfoCircleIcon.tsx +14 -0
- package/src/icons/InfoCircle/InfoCircleIcon.web.tsx +13 -0
- package/src/icons/InfoCircle/index.ts +1 -0
- package/src/icons/InfoCircle/infoCirclePath.ts +2 -0
- package/src/icons/MoonStars/MoonStarsIcon.tsx +27 -0
- package/src/icons/MoonStars/MoonStarsIcon.web.tsx +33 -0
- package/src/icons/MoonStars/index.ts +6 -0
- package/src/icons/MoonStars/moonStarsPaths.ts +7 -0
- package/src/icons/index.ts +10 -0
- package/src/icons/registry.ts +24 -0
- package/src/index.ts +20 -0
package/dist/index.cjs
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
var react = require('react');
|
|
4
4
|
var reactNative = require('react-native');
|
|
5
|
-
var
|
|
5
|
+
var Svg23 = require('react-native-svg');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
|
|
8
8
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var Svg23__default = /*#__PURE__*/_interopDefault(Svg23);
|
|
11
11
|
|
|
12
12
|
var __create = Object.create;
|
|
13
13
|
var __defProp = Object.defineProperty;
|
|
@@ -9455,15 +9455,15 @@ var require_react_dom_development = __commonJS({
|
|
|
9455
9455
|
};
|
|
9456
9456
|
}
|
|
9457
9457
|
var warnValidStyle$1 = warnValidStyle;
|
|
9458
|
-
function createDangerousStringForStyles(
|
|
9458
|
+
function createDangerousStringForStyles(styles41) {
|
|
9459
9459
|
{
|
|
9460
9460
|
var serialized = "";
|
|
9461
9461
|
var delimiter = "";
|
|
9462
|
-
for (var styleName in
|
|
9463
|
-
if (!
|
|
9462
|
+
for (var styleName in styles41) {
|
|
9463
|
+
if (!styles41.hasOwnProperty(styleName)) {
|
|
9464
9464
|
continue;
|
|
9465
9465
|
}
|
|
9466
|
-
var styleValue =
|
|
9466
|
+
var styleValue = styles41[styleName];
|
|
9467
9467
|
if (styleValue != null) {
|
|
9468
9468
|
var isCustomProperty = styleName.indexOf("--") === 0;
|
|
9469
9469
|
serialized += delimiter + (isCustomProperty ? styleName : hyphenateStyleName(styleName)) + ":";
|
|
@@ -9474,19 +9474,19 @@ var require_react_dom_development = __commonJS({
|
|
|
9474
9474
|
return serialized || null;
|
|
9475
9475
|
}
|
|
9476
9476
|
}
|
|
9477
|
-
function setValueForStyles(node,
|
|
9477
|
+
function setValueForStyles(node, styles41) {
|
|
9478
9478
|
var style2 = node.style;
|
|
9479
|
-
for (var styleName in
|
|
9480
|
-
if (!
|
|
9479
|
+
for (var styleName in styles41) {
|
|
9480
|
+
if (!styles41.hasOwnProperty(styleName)) {
|
|
9481
9481
|
continue;
|
|
9482
9482
|
}
|
|
9483
9483
|
var isCustomProperty = styleName.indexOf("--") === 0;
|
|
9484
9484
|
{
|
|
9485
9485
|
if (!isCustomProperty) {
|
|
9486
|
-
warnValidStyle$1(styleName,
|
|
9486
|
+
warnValidStyle$1(styleName, styles41[styleName]);
|
|
9487
9487
|
}
|
|
9488
9488
|
}
|
|
9489
|
-
var styleValue = dangerousStyleValue(styleName,
|
|
9489
|
+
var styleValue = dangerousStyleValue(styleName, styles41[styleName], isCustomProperty);
|
|
9490
9490
|
if (styleName === "float") {
|
|
9491
9491
|
styleName = "cssFloat";
|
|
9492
9492
|
}
|
|
@@ -9500,9 +9500,9 @@ var require_react_dom_development = __commonJS({
|
|
|
9500
9500
|
function isValueEmpty(value) {
|
|
9501
9501
|
return value == null || typeof value === "boolean" || value === "";
|
|
9502
9502
|
}
|
|
9503
|
-
function expandShorthandMap(
|
|
9503
|
+
function expandShorthandMap(styles41) {
|
|
9504
9504
|
var expanded = {};
|
|
9505
|
-
for (var key in
|
|
9505
|
+
for (var key in styles41) {
|
|
9506
9506
|
var longhands = shorthandToLonghand[key] || [key];
|
|
9507
9507
|
for (var i = 0; i < longhands.length; i++) {
|
|
9508
9508
|
expanded[longhands[i]] = key;
|
|
@@ -28818,8 +28818,8 @@ function ArrowRightIcon({
|
|
|
28818
28818
|
color = colors.primary,
|
|
28819
28819
|
strokeWidth = 2
|
|
28820
28820
|
}) {
|
|
28821
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28822
|
-
|
|
28821
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28822
|
+
Svg23.Path,
|
|
28823
28823
|
{
|
|
28824
28824
|
d: ARROW_RIGHT_PATH,
|
|
28825
28825
|
stroke: color,
|
|
@@ -28833,8 +28833,8 @@ function ArrowRightIcon({
|
|
|
28833
28833
|
// src/icons/AlertTriangle/alertTrianglePath.ts
|
|
28834
28834
|
var ALERT_TRIANGLE_PATH = "M8.00049 6.00015V8.66682M8.00049 11.3335H8.00715M7.07737 2.59464L1.59411 12.0657C1.28997 12.591 1.1379 12.8537 1.16038 13.0693C1.17998 13.2573 1.2785 13.4282 1.4314 13.5394C1.60671 13.6668 1.91022 13.6668 2.51723 13.6668H13.4837C14.0908 13.6668 14.3943 13.6668 14.5696 13.5394C14.7225 13.4282 14.821 13.2573 14.8406 13.0693C14.8631 12.8537 14.711 12.591 14.4069 12.0657L8.92361 2.59463C8.62056 2.07119 8.46904 1.80947 8.27135 1.72157C8.09892 1.64489 7.90206 1.64489 7.72962 1.72157C7.53194 1.80947 7.38041 2.07119 7.07737 2.59464Z";
|
|
28835
28835
|
function AlertTriangleIcon({ size = 16, color = "#E38E5E", strokeWidth = 1.5 }) {
|
|
28836
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28837
|
-
|
|
28836
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28837
|
+
Svg23.Path,
|
|
28838
28838
|
{
|
|
28839
28839
|
d: ALERT_TRIANGLE_PATH,
|
|
28840
28840
|
stroke: color,
|
|
@@ -28869,17 +28869,17 @@ var GOOGLE_PLAY_PATHS = [
|
|
|
28869
28869
|
}
|
|
28870
28870
|
];
|
|
28871
28871
|
function AppleIcon({ size = 30, color = colors.white }) {
|
|
28872
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28872
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size * 25 / 30, height: size, viewBox: "0 0 25 30", fill: "none", children: APPLE_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: path, fill: color }, path)) });
|
|
28873
28873
|
}
|
|
28874
28874
|
function GooglePlayIcon({ size = 30 }) {
|
|
28875
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28875
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size * 27 / 30, height: size, viewBox: "0 0 27 30", fill: "none", children: GOOGLE_PLAY_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: path.d, fill: path.color }, path.d)) });
|
|
28876
28876
|
}
|
|
28877
28877
|
|
|
28878
28878
|
// src/icons/Bag/bagPath.ts
|
|
28879
28879
|
var BAG_PATH = "M9.23047 9H7.2002C6.08009 9 5.51962 9 5.0918 9.21799C4.71547 9.40973 4.40973 9.71547 4.21799 10.0918C4 10.5196 4 11.0801 4 12.2002V17.8002C4 18.9203 4 19.4801 4.21799 19.9079C4.40973 20.2842 4.71547 20.5905 5.0918 20.7822C5.5192 21 6.07902 21 7.19694 21H16.8031C17.921 21 18.48 21 18.9074 20.7822C19.2837 20.5905 19.5905 20.2842 19.7822 19.9079C20 19.4805 20 18.9215 20 17.8036V12.1969C20 11.079 20 10.5192 19.7822 10.0918C19.5905 9.71547 19.2837 9.40973 18.9074 9.21799C18.4796 9 17.9203 9 16.8002 9H14.7689M9.23047 9H14.7689M9.23047 9C9.10302 9 9 8.89668 9 8.76923V6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6V8.76923C15 8.89668 14.8964 9 14.7689 9";
|
|
28880
28880
|
function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
28881
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28882
|
-
|
|
28881
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28882
|
+
Svg23.Path,
|
|
28883
28883
|
{
|
|
28884
28884
|
d: BAG_PATH,
|
|
28885
28885
|
stroke: color,
|
|
@@ -28893,14 +28893,14 @@ function BagIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28893
28893
|
// src/icons/Ban/banPath.ts
|
|
28894
28894
|
var BAN_PATH = "M14.0007 2.33301C11.6932 2.33301 9.43758 3.01725 7.519 4.2992C5.60043 5.58115 4.10508 7.40323 3.22206 9.53503C2.33904 11.6668 2.108 14.0126 2.55816 16.2757C3.00832 18.5388 4.11946 20.6176 5.75108 22.2493C7.38269 23.8809 9.46149 24.992 11.7246 25.4422C13.9877 25.8923 16.3335 25.6613 18.4653 24.7783C20.5971 23.8952 22.4192 22.3999 23.7011 20.4813C24.9831 18.5628 25.6673 16.3071 25.6673 13.9997C25.6673 12.4676 25.3656 10.9505 24.7793 9.53503C24.1929 8.11957 23.3336 6.83345 22.2502 5.7501C21.1669 4.66675 19.8808 3.80738 18.4653 3.22108C17.0498 2.63478 15.5327 2.33301 14.0007 2.33301ZM14.0007 23.333C11.5253 23.333 9.15133 22.3497 7.40099 20.5993C5.65065 18.849 4.66732 16.475 4.66732 13.9997C4.66475 11.9269 5.35917 9.91348 6.63899 8.28301L19.7173 21.3613C18.0869 22.6412 16.0734 23.3356 14.0007 23.333ZM21.3623 19.7163L8.28399 6.63801C9.91446 5.35819 11.9279 4.66376 14.0007 4.66634C16.476 4.66634 18.85 5.64967 20.6003 7.40001C22.3507 9.15035 23.334 11.5243 23.334 13.9997C23.3366 16.0724 22.6421 18.0859 21.3623 19.7163Z";
|
|
28895
28895
|
function BanIcon({ size = 28, color = colors.primary }) {
|
|
28896
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28896
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: BAN_PATH, fill: color }) });
|
|
28897
28897
|
}
|
|
28898
28898
|
|
|
28899
28899
|
// src/icons/Bell/bellPath.ts
|
|
28900
28900
|
var BELL_PATH = "M6.23597 14C6.70606 14.4149 7.32355 14.6667 7.99985 14.6667C8.67615 14.6667 9.29364 14.4149 9.76373 14M11.9998 5.33337C11.9998 4.27251 11.5784 3.25509 10.8283 2.50495C10.0781 1.7548 9.06072 1.33337 7.99985 1.33337C6.93898 1.33337 5.92157 1.7548 5.17142 2.50495C4.42128 3.25509 3.99985 4.27251 3.99985 5.33337C3.99985 7.3935 3.48016 8.80401 2.89963 9.73698C2.40993 10.524 2.16509 10.9174 2.17407 11.0272C2.18401 11.1488 2.20976 11.1951 2.3077 11.2678C2.39616 11.3334 2.79491 11.3334 3.59242 11.3334H12.4073C13.2048 11.3334 13.6035 11.3334 13.692 11.2678C13.7899 11.1951 13.8157 11.1488 13.8256 11.0272C13.8346 10.9174 13.5898 10.524 13.1001 9.73698C12.5195 8.80401 11.9998 7.3935 11.9998 5.33337Z";
|
|
28901
28901
|
function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
|
|
28902
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28903
|
-
|
|
28902
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28903
|
+
Svg23.Path,
|
|
28904
28904
|
{
|
|
28905
28905
|
d: BELL_PATH,
|
|
28906
28906
|
stroke: color,
|
|
@@ -28914,8 +28914,8 @@ function BellIcon({ size = 16, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
28914
28914
|
// src/icons/Building/buildingPath.ts
|
|
28915
28915
|
var BUILDING_PATH = "M7.5 9.16659V16.6666M7.5 9.16659H3.83301C3.3663 9.16659 3.13318 9.16659 2.95492 9.25741C2.79811 9.33731 2.67072 9.4647 2.59083 9.6215C2.5 9.79976 2.5 10.0333 2.5 10.5V16.6666H7.5M7.5 9.16659V4.66667C7.5 4.19996 7.5 3.96643 7.59083 3.78817C7.67072 3.63137 7.79811 3.50397 7.95492 3.42408C8.13317 3.33325 8.3663 3.33325 8.83301 3.33325H11.1663C11.6331 3.33325 11.8669 3.33325 12.0452 3.42408C12.202 3.50397 12.329 3.63137 12.4089 3.78817C12.4997 3.96643 12.5 4.19996 12.5 4.66667V6.66659M7.5 16.6666H12.5M12.5 16.6666L17.5 16.6667V8C17.5 7.53329 17.4997 7.29976 17.4089 7.1215C17.329 6.9647 17.2024 6.83731 17.0456 6.75741C16.8674 6.66659 16.6334 6.66659 16.1667 6.66659H12.5M12.5 16.6666V6.66659";
|
|
28916
28916
|
function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
28917
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28918
|
-
|
|
28917
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28918
|
+
Svg23.Path,
|
|
28919
28919
|
{
|
|
28920
28920
|
d: BUILDING_PATH,
|
|
28921
28921
|
stroke: color,
|
|
@@ -28929,8 +28929,8 @@ function BuildingIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28929
28929
|
// src/icons/Calendar/calendarPath.ts
|
|
28930
28930
|
var CALENDAR_PATH = "M14 6.66668H2M14 8.33334V5.86668C14 4.74657 14 4.18652 13.782 3.7587C13.5903 3.38237 13.2843 3.07641 12.908 2.88466C12.4802 2.66668 11.9201 2.66668 10.8 2.66668H5.2C4.0799 2.66668 3.51984 2.66668 3.09202 2.88466C2.71569 3.07641 2.40973 3.38237 2.21799 3.7587C2 4.18652 2 4.74657 2 5.86668V11.4667C2 12.5868 2 13.1468 2.21799 13.5747C2.40973 13.951 2.71569 14.2569 3.09202 14.4487C3.51984 14.6667 4.0799 14.6667 5.2 14.6667H8M10.6667 1.33334V4.00001M5.33333 1.33334V4.00001M9.66667 12.6667L11 14L14 11";
|
|
28931
28931
|
function CalendarIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
28932
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28933
|
-
|
|
28932
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28933
|
+
Svg23.Path,
|
|
28934
28934
|
{
|
|
28935
28935
|
d: CALENDAR_PATH,
|
|
28936
28936
|
stroke: color,
|
|
@@ -28948,8 +28948,8 @@ function CalendarMinusIcon({
|
|
|
28948
28948
|
color = colors.grey200,
|
|
28949
28949
|
strokeWidth = 2
|
|
28950
28950
|
}) {
|
|
28951
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28952
|
-
|
|
28951
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28952
|
+
Svg23.Path,
|
|
28953
28953
|
{
|
|
28954
28954
|
d: CALENDAR_MINUS_PATH,
|
|
28955
28955
|
stroke: color,
|
|
@@ -28967,8 +28967,8 @@ function CalendarOutlineIcon({
|
|
|
28967
28967
|
color = colors.primary,
|
|
28968
28968
|
strokeWidth = 1.5
|
|
28969
28969
|
}) {
|
|
28970
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28971
|
-
|
|
28970
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28971
|
+
Svg23.Path,
|
|
28972
28972
|
{
|
|
28973
28973
|
d: CALENDAR_OUTLINE_PATH,
|
|
28974
28974
|
stroke: color,
|
|
@@ -28982,8 +28982,8 @@ function CalendarOutlineIcon({
|
|
|
28982
28982
|
// src/icons/Camera/cameraPath.ts
|
|
28983
28983
|
var CAMERA_PATH = "M9.48898 7H6.2002C5.08009 7 4.51962 7 4.0918 7.21799C3.71547 7.40973 3.40973 7.71547 3.21799 8.0918C3 8.51962 3 9.08009 3 10.2002V15.8002C3 16.9203 3 17.4796 3.21799 17.9074C3.40973 18.2837 3.71547 18.5905 4.0918 18.7822C4.5192 19 5.07899 19 6.19691 19H17.8031C18.921 19 19.48 19 19.9074 18.7822C20.2837 18.5905 20.5905 18.2837 20.7822 17.9074C21 17.48 21 16.921 21 15.8031V10.1969C21 9.07899 21 8.5192 20.7822 8.0918C20.5905 7.71547 20.2837 7.40973 19.9074 7.21799C19.4796 7 18.9203 7 17.8002 7H14.5108M9.48898 7H9.55078M9.48898 7C9.50151 7.00001 9.51468 7 9.52857 7L9.55078 7M9.48898 7C9.38286 6.99995 9.32339 6.99941 9.27637 6.99414C8.68878 6.92835 8.28578 6.36908 8.40918 5.79084C8.42066 5.73703 8.44336 5.66894 8.4883 5.53412L8.49023 5.52841C8.54156 5.37443 8.56723 5.29743 8.59558 5.22949C8.88586 4.53389 9.54322 4.06083 10.2949 4.00541C10.3683 4 10.449 4 10.6113 4H13.3886C13.5509 4 13.6322 4 13.7057 4.00541C14.4574 4.06083 15.114 4.53389 15.4043 5.22949C15.4326 5.29743 15.4584 5.37434 15.5098 5.52832C15.556 5.66699 15.5791 5.73636 15.5908 5.79093C15.7142 6.36917 15.3118 6.92835 14.7242 6.99414C14.6772 6.99941 14.6171 6.99995 14.5108 7M9.55078 7H14.449M14.449 7H14.5108M14.449 7L14.4712 7C14.4851 7 14.4983 7.00001 14.5108 7M12 16C10.3431 16 9 14.6569 9 13C9 11.3431 10.3431 10 12 10C13.6569 10 15 11.3431 15 13C15 14.6569 13.6569 16 12 16Z";
|
|
28984
28984
|
function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
28985
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28986
|
-
|
|
28985
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28986
|
+
Svg23.Path,
|
|
28987
28987
|
{
|
|
28988
28988
|
d: CAMERA_PATH,
|
|
28989
28989
|
stroke: color,
|
|
@@ -28997,14 +28997,14 @@ function CameraIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
28997
28997
|
// src/icons/CameraFilled/cameraFilledPath.ts
|
|
28998
28998
|
var CAMERA_FILLED_PATH = "M25.3327 8.66605H23.626L23.1993 7.33271C22.9228 6.55035 22.4097 5.87338 21.7312 5.39559C21.0528 4.9178 20.2425 4.66285 19.4127 4.66605H12.586C11.7481 4.66761 10.9318 4.93229 10.2524 5.42272C9.57295 5.91315 9.06469 6.60456 8.79935 7.39938L8.37268 8.73271H6.66602C5.60515 8.73271 4.58773 9.15414 3.83759 9.90428C3.08744 10.6544 2.66602 11.6718 2.66602 12.7327V23.3994C2.66602 24.4602 3.08744 25.4777 3.83759 26.2278C4.58773 26.978 5.60515 27.3994 6.66602 27.3994H25.3327C26.3935 27.3994 27.411 26.978 28.1611 26.2278C28.9113 25.4777 29.3327 24.4602 29.3327 23.3994V12.7327C29.3415 12.2018 29.2446 11.6745 29.0476 11.1815C28.8505 10.6885 28.5573 10.2396 28.1849 9.86109C27.8126 9.48256 27.3687 9.18195 26.879 8.97678C26.3893 8.7716 25.8636 8.66597 25.3327 8.66605ZM26.666 23.3327C26.666 23.6863 26.5255 24.0255 26.2755 24.2755C26.0254 24.5256 25.6863 24.666 25.3327 24.666H6.66602C6.31239 24.666 5.97326 24.5256 5.72321 24.2755C5.47316 24.0255 5.33268 23.6863 5.33268 23.3327V12.666C5.33268 12.3124 5.47316 11.9733 5.72321 11.7232C5.97326 11.4732 6.31239 11.3327 6.66602 11.3327H9.33268C9.62344 11.3479 9.91117 11.2675 10.1519 11.1038C10.3927 10.94 10.5732 10.702 10.666 10.426L11.386 8.23938C11.4755 7.97455 11.6459 7.74453 11.8732 7.58183C12.1005 7.41914 12.3732 7.33199 12.6527 7.33271H19.4793C19.7589 7.33199 20.0316 7.41914 20.2589 7.58183C20.4862 7.74453 20.6566 7.97455 20.746 8.23938L21.466 10.426C21.5516 10.6804 21.7119 10.903 21.926 11.0647C22.1401 11.2265 22.398 11.3199 22.666 11.3327H25.3327C25.6863 11.3327 26.0254 11.4732 26.2755 11.7232C26.5255 11.9733 26.666 12.3124 26.666 12.666V23.3327ZM15.9993 11.3327C14.9445 11.3327 13.9134 11.6455 13.0363 12.2315C12.1592 12.8176 11.4757 13.6505 11.072 14.6251C10.6683 15.5996 10.5627 16.672 10.7685 17.7065C10.9743 18.7411 11.4822 19.6914 12.2281 20.4373C12.974 21.1832 13.9243 21.6911 14.9589 21.8969C15.9934 22.1027 17.0658 21.9971 18.0403 21.5934C19.0149 21.1897 19.8478 20.5061 20.4339 19.6291C21.0199 18.752 21.3327 17.7209 21.3327 16.666C21.3327 15.2516 20.7708 13.895 19.7706 12.8948C18.7704 11.8946 17.4138 11.3327 15.9993 11.3327ZM15.9993 19.3327C15.4719 19.3327 14.9564 19.1763 14.5178 18.8833C14.0793 18.5903 13.7375 18.1738 13.5357 17.6865C13.3338 17.1993 13.281 16.6631 13.3839 16.1458C13.4868 15.6285 13.7408 15.1534 14.1137 14.7804C14.4867 14.4075 14.9618 14.1535 15.4791 14.0506C15.9964 13.9477 16.5326 14.0005 17.0198 14.2024C17.5071 14.4042 17.9236 14.746 18.2166 15.1845C18.5096 15.6231 18.666 16.1386 18.666 16.666C18.666 17.3733 18.3851 18.0516 17.885 18.5517C17.3849 19.0518 16.7066 19.3327 15.9993 19.3327Z";
|
|
28999
28999
|
function CameraFilledIcon({ size = 32, color = colors.primary }) {
|
|
29000
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29000
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: CAMERA_FILLED_PATH, fill: color }) });
|
|
29001
29001
|
}
|
|
29002
29002
|
|
|
29003
29003
|
// src/icons/Check/checkPath.ts
|
|
29004
29004
|
var CHECK_PATH = "M4.16669 10.8333L7.50002 14.1667L15.8334 5.83334";
|
|
29005
29005
|
function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29006
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29007
|
-
|
|
29006
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29007
|
+
Svg23.Path,
|
|
29008
29008
|
{
|
|
29009
29009
|
d: CHECK_PATH,
|
|
29010
29010
|
stroke: color,
|
|
@@ -29018,8 +29018,8 @@ function CheckIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29018
29018
|
// src/icons/CheckBadge/checkBadgePath.ts
|
|
29019
29019
|
var CHECK_BADGE_PATH = "M12.5 8.33317L9.16663 11.6665L7.49996 9.99984M11.0384 2.88233L12.0558 3.74941C12.3122 3.96786 12.6305 4.09992 12.9662 4.12671L14.2987 4.23291C15.0822 4.29543 15.7045 4.91733 15.767 5.70077L15.8729 7.03353C15.8997 7.36925 16.0322 7.68799 16.2507 7.94433L17.1174 8.96152C17.6272 9.5597 17.6272 10.4396 17.1175 11.0378L16.2508 12.0551C16.0323 12.3115 15.9 12.6303 15.8732 12.9661L15.7666 14.2986C15.704 15.082 15.0827 15.7043 14.2993 15.7668L12.9663 15.8732C12.6305 15.9 12.312 16.0317 12.0556 16.2502L11.0384 17.1173C10.4402 17.627 9.55973 17.6271 8.96155 17.1174L7.9443 16.2502C7.68796 16.0318 7.36938 15.8998 7.03365 15.8731L5.70064 15.7668C4.9172 15.7043 4.29588 15.0822 4.23336 14.2987L4.12675 12.9661C4.09996 12.6304 3.96759 12.3118 3.74915 12.0555L2.88245 11.0378C2.37268 10.4397 2.37244 9.56002 2.88221 8.96184L3.74969 7.94418C3.96814 7.68784 4.09923 7.36926 4.12602 7.03353L4.23263 5.70093C4.29515 4.91749 4.91826 4.29535 5.70171 4.23283L7.03324 4.12663C7.36897 4.09984 7.68771 3.96788 7.94404 3.74943L8.96164 2.88233C9.55982 2.37256 10.4402 2.37256 11.0384 2.88233Z";
|
|
29020
29020
|
function CheckBadgeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29021
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29022
|
-
|
|
29021
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29022
|
+
Svg23.Path,
|
|
29023
29023
|
{
|
|
29024
29024
|
d: CHECK_BADGE_PATH,
|
|
29025
29025
|
stroke: color,
|
|
@@ -29037,8 +29037,8 @@ function ChevronDownIcon({
|
|
|
29037
29037
|
color = colors.primary,
|
|
29038
29038
|
strokeWidth = 2
|
|
29039
29039
|
}) {
|
|
29040
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29041
|
-
|
|
29040
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29041
|
+
Svg23.Path,
|
|
29042
29042
|
{
|
|
29043
29043
|
d: CHEVRON_DOWN_PATH,
|
|
29044
29044
|
stroke: color,
|
|
@@ -29052,8 +29052,8 @@ function ChevronDownIcon({
|
|
|
29052
29052
|
// src/icons/ChevronLeft/chevronLeftPath.ts
|
|
29053
29053
|
var CHEVRON_LEFT_PATH = "M12.5 15L7.5 10L12.5 5";
|
|
29054
29054
|
function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29055
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29056
|
-
|
|
29055
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29056
|
+
Svg23.Path,
|
|
29057
29057
|
{
|
|
29058
29058
|
d: CHEVRON_LEFT_PATH,
|
|
29059
29059
|
stroke: color,
|
|
@@ -29067,8 +29067,8 @@ function ChevronLeftIcon({ size = 20, color = colors.primary, strokeWidth = 2 })
|
|
|
29067
29067
|
// src/icons/Clock/clockPath.ts
|
|
29068
29068
|
var CLOCK_PATH = "M12 7V12H17M12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21Z";
|
|
29069
29069
|
function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29070
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29071
|
-
|
|
29070
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29071
|
+
Svg23.Path,
|
|
29072
29072
|
{
|
|
29073
29073
|
d: CLOCK_PATH,
|
|
29074
29074
|
stroke: color,
|
|
@@ -29082,8 +29082,8 @@ function ClockIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29082
29082
|
// src/icons/Close/closePath.ts
|
|
29083
29083
|
var CLOSE_PATH = "M15 5L5 15M5 5L15 15";
|
|
29084
29084
|
function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29085
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29086
|
-
|
|
29085
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29086
|
+
Svg23.Path,
|
|
29087
29087
|
{
|
|
29088
29088
|
d: CLOSE_PATH,
|
|
29089
29089
|
stroke: color,
|
|
@@ -29094,11 +29094,26 @@ function CloseIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29094
29094
|
) });
|
|
29095
29095
|
}
|
|
29096
29096
|
|
|
29097
|
+
// src/icons/CloudUpload/cloudUploadPath.ts
|
|
29098
|
+
var CLOUD_UPLOAD_PATH = "M6 24.3633C4.19102 23.1524 3 21.0903 3 18.75C3 15.2346 5.68726 12.3469 9.11961 12.0291C9.82172 7.7582 13.5304 4.5 18 4.5C22.4696 4.5 26.1783 7.7582 26.8804 12.0291C30.3127 12.3469 33 15.2346 33 18.75C33 21.0903 31.809 23.1524 30 24.3633M24 24L18 18L12 24M18 18V31.5";
|
|
29099
|
+
function CloudUploadIcon({ size = 36, color = colors.primary, strokeWidth = 2 }) {
|
|
29100
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 36 36", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29101
|
+
Svg23.Path,
|
|
29102
|
+
{
|
|
29103
|
+
d: CLOUD_UPLOAD_PATH,
|
|
29104
|
+
stroke: color,
|
|
29105
|
+
strokeWidth,
|
|
29106
|
+
strokeLinecap: "round",
|
|
29107
|
+
strokeLinejoin: "round"
|
|
29108
|
+
}
|
|
29109
|
+
) });
|
|
29110
|
+
}
|
|
29111
|
+
|
|
29097
29112
|
// src/icons/Edit/editPath.ts
|
|
29098
29113
|
var EDIT_PATH = "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7M18.375 2.625a2.121 2.121 0 1 1 3 3L12.15 13.85a.75.75 0 0 1-.33.2l-3.07.8a.5.5 0 0 1-.61-.61l.8-3.07a.75.75 0 0 1 .2-.33z";
|
|
29099
29114
|
function EditIcon({ size = 12, color = colors.grey0, strokeWidth = 2 }) {
|
|
29100
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29101
|
-
|
|
29115
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29116
|
+
Svg23.Path,
|
|
29102
29117
|
{
|
|
29103
29118
|
d: EDIT_PATH,
|
|
29104
29119
|
stroke: color,
|
|
@@ -29109,6 +29124,25 @@ function EditIcon({ size = 12, color = colors.grey0, strokeWidth = 2 }) {
|
|
|
29109
29124
|
) });
|
|
29110
29125
|
}
|
|
29111
29126
|
|
|
29127
|
+
// src/icons/Eye/eyePaths.ts
|
|
29128
|
+
var EYE_PATHS = [
|
|
29129
|
+
"M0.925915 5.89212C0.835124 5.74836 0.789728 5.67648 0.764316 5.56561C0.745228 5.48233 0.745228 5.351 0.764316 5.26772C0.789728 5.15685 0.835124 5.08497 0.925915 4.94121C1.67619 3.75323 3.90943 0.75 7.31277 0.75C10.7161 0.75 12.9494 3.75323 13.6996 4.94121C13.7904 5.08497 13.8358 5.15685 13.8612 5.26772C13.8803 5.351 13.8803 5.48233 13.8612 5.56561C13.8358 5.67648 13.7904 5.74836 13.6996 5.89212C12.9494 7.08011 10.7161 10.0833 7.31277 10.0833C3.90943 10.0833 1.67619 7.08011 0.925915 5.89212Z",
|
|
29130
|
+
"M7.31277 7.41667C8.41734 7.41667 9.31277 6.52124 9.31277 5.41667C9.31277 4.3121 8.41734 3.41667 7.31277 3.41667C6.2082 3.41667 5.31277 4.3121 5.31277 5.41667C5.31277 6.52124 6.2082 7.41667 7.31277 7.41667Z"
|
|
29131
|
+
];
|
|
29132
|
+
function EyeIcon({ size = 11, color = colors.grey0, strokeWidth = 1.5 }) {
|
|
29133
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size * 15 / 11, height: size, viewBox: "0 0 15 11", fill: "none", children: EYE_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29134
|
+
Svg23.Path,
|
|
29135
|
+
{
|
|
29136
|
+
d: path,
|
|
29137
|
+
stroke: color,
|
|
29138
|
+
strokeWidth,
|
|
29139
|
+
strokeLinecap: "round",
|
|
29140
|
+
strokeLinejoin: "round"
|
|
29141
|
+
},
|
|
29142
|
+
path
|
|
29143
|
+
)) });
|
|
29144
|
+
}
|
|
29145
|
+
|
|
29112
29146
|
// src/icons/CottageCard/cottageCardPaths.ts
|
|
29113
29147
|
var SAVE_HEART_PATH = "M8 5.12971C6.66667 2.00008 2 2.33341 2 6.33343C2 10.3335 8 13.6669 8 13.6669C8 13.6669 14 10.3335 14 6.33343C14 2.33341 9.33333 2.00008 8 5.12971Z";
|
|
29114
29148
|
var RATING_STAR_PATH = "M1.16748 5.16814C1.01086 5.0233 1.09593 4.76145 1.30778 4.73633L4.30957 4.38029C4.39591 4.37005 4.47091 4.31583 4.50732 4.23688L5.77344 1.49199C5.86279 1.29827 6.13819 1.29823 6.22754 1.49195L7.49365 4.23682C7.53007 4.31577 7.60458 4.37014 7.69092 4.38038L10.6929 4.73633C10.9047 4.76145 10.9896 5.02338 10.8329 5.16822L8.61388 7.22071C8.55005 7.27974 8.52163 7.36761 8.53857 7.45289L9.1275 10.4177C9.16908 10.627 8.94639 10.7891 8.76024 10.6849L6.12257 9.20806C6.0467 9.16559 5.95453 9.16579 5.87866 9.20826L3.24072 10.6845C3.05457 10.7887 2.83147 10.627 2.87305 10.4177L3.46207 7.45307C3.47902 7.36779 3.45067 7.27972 3.38683 7.22069L1.16748 5.16814Z";
|
|
@@ -29124,8 +29158,8 @@ function SaveHeartIcon({
|
|
|
29124
29158
|
strokeWidth = 2,
|
|
29125
29159
|
fillOpacity = 0
|
|
29126
29160
|
}) {
|
|
29127
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29128
|
-
|
|
29161
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29162
|
+
Svg23.Path,
|
|
29129
29163
|
{
|
|
29130
29164
|
d: SAVE_HEART_PATH,
|
|
29131
29165
|
fill: color,
|
|
@@ -29138,8 +29172,8 @@ function SaveHeartIcon({
|
|
|
29138
29172
|
) });
|
|
29139
29173
|
}
|
|
29140
29174
|
function RatingStarIcon({ size = 12, color = "#E38E5E", strokeWidth = 2 }) {
|
|
29141
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29142
|
-
|
|
29175
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29176
|
+
Svg23.Path,
|
|
29143
29177
|
{
|
|
29144
29178
|
d: RATING_STAR_PATH,
|
|
29145
29179
|
fill: color,
|
|
@@ -29156,9 +29190,9 @@ function CardLocationIcon({
|
|
|
29156
29190
|
strokeWidth = 1.5,
|
|
29157
29191
|
secondaryColor = colors.grey700
|
|
29158
29192
|
}) {
|
|
29159
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29193
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg23__default.default, { width: size, height: size, viewBox: "0 0 13 13", fill: "none", children: [
|
|
29160
29194
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29161
|
-
|
|
29195
|
+
Svg23.Path,
|
|
29162
29196
|
{
|
|
29163
29197
|
d: CARD_LOCATION_BASE_PATH,
|
|
29164
29198
|
stroke: color,
|
|
@@ -29168,7 +29202,7 @@ function CardLocationIcon({
|
|
|
29168
29202
|
}
|
|
29169
29203
|
),
|
|
29170
29204
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29171
|
-
|
|
29205
|
+
Svg23.Path,
|
|
29172
29206
|
{
|
|
29173
29207
|
d: CARD_LOCATION_PIN_PATH,
|
|
29174
29208
|
fill: color,
|
|
@@ -29178,7 +29212,7 @@ function CardLocationIcon({
|
|
|
29178
29212
|
}
|
|
29179
29213
|
),
|
|
29180
29214
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29181
|
-
|
|
29215
|
+
Svg23.Path,
|
|
29182
29216
|
{
|
|
29183
29217
|
d: CARD_LOCATION_DOT_PATH,
|
|
29184
29218
|
fill: secondaryColor,
|
|
@@ -29195,7 +29229,7 @@ function FilledCardIcon({
|
|
|
29195
29229
|
color,
|
|
29196
29230
|
fillOpacity
|
|
29197
29231
|
}) {
|
|
29198
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29232
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: path, fill: color, fillOpacity }) });
|
|
29199
29233
|
}
|
|
29200
29234
|
function GuestsIcon({ size = 16, color = colors.white, fillOpacity = 0.4 }) {
|
|
29201
29235
|
return /* @__PURE__ */ jsxRuntime.jsx(FilledCardIcon, { path: GUESTS_PATH, size, color, fillOpacity });
|
|
@@ -29223,8 +29257,8 @@ var COPY_PATH = "M6.66699 13.3337V15.667C6.66699 16.6004 6.66699 17.0671 6.84865
|
|
|
29223
29257
|
var CHECK_SUCCESS_PATH = "M16.6663 5L7.49967 14.1667L3.33301 10";
|
|
29224
29258
|
var TOOLTIP_ARROW_PATH = "M3.21121 6.42229C3.94826 7.89639 6.05187 7.89639 6.78892 6.42229L10.0001 0H6.2595e-05L3.21121 6.42229Z";
|
|
29225
29259
|
function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29226
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29227
|
-
|
|
29260
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29261
|
+
Svg23.Path,
|
|
29228
29262
|
{
|
|
29229
29263
|
d: SHARE_PATH,
|
|
29230
29264
|
stroke: color,
|
|
@@ -29235,8 +29269,8 @@ function ShareIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29235
29269
|
) });
|
|
29236
29270
|
}
|
|
29237
29271
|
function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29238
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29239
|
-
|
|
29272
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29273
|
+
Svg23.Path,
|
|
29240
29274
|
{
|
|
29241
29275
|
d: DOWNLOAD_PATH,
|
|
29242
29276
|
stroke: color,
|
|
@@ -29247,8 +29281,8 @@ function DownloadIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29247
29281
|
) });
|
|
29248
29282
|
}
|
|
29249
29283
|
function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29250
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29251
|
-
|
|
29284
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: AREA_EXPAND_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29285
|
+
Svg23.Path,
|
|
29252
29286
|
{
|
|
29253
29287
|
d: path,
|
|
29254
29288
|
stroke: color,
|
|
@@ -29260,17 +29294,17 @@ function AreaExpandIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29260
29294
|
)) });
|
|
29261
29295
|
}
|
|
29262
29296
|
function ClockFilledIcon({ size = 16, color = colors.white }) {
|
|
29263
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29297
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: CLOCK_FILLED_PATH, fill: color }) });
|
|
29264
29298
|
}
|
|
29265
29299
|
function QrCodeIcon({ size = 24, color = colors.primary }) {
|
|
29266
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29300
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: QR_CODE_PATH, fill: color }) });
|
|
29267
29301
|
}
|
|
29268
29302
|
function WhatsAppIcon({ size = 24, color = colors.white }) {
|
|
29269
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29303
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: WHATSAPP_PATH, fill: color }) });
|
|
29270
29304
|
}
|
|
29271
29305
|
function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29272
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29273
|
-
|
|
29306
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29307
|
+
Svg23.Path,
|
|
29274
29308
|
{
|
|
29275
29309
|
d: COPY_PATH,
|
|
29276
29310
|
stroke: color,
|
|
@@ -29281,8 +29315,8 @@ function CopyIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
|
29281
29315
|
) });
|
|
29282
29316
|
}
|
|
29283
29317
|
function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 }) {
|
|
29284
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29285
|
-
|
|
29318
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29319
|
+
Svg23.Path,
|
|
29286
29320
|
{
|
|
29287
29321
|
d: CHECK_SUCCESS_PATH,
|
|
29288
29322
|
stroke: color,
|
|
@@ -29293,7 +29327,7 @@ function CheckSuccessIcon({ size = 20, color = colors.green, strokeWidth = 2 })
|
|
|
29293
29327
|
) });
|
|
29294
29328
|
}
|
|
29295
29329
|
function TooltipArrowIcon({ size = 10, color = colors.grey600 }) {
|
|
29296
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29330
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size * 8 / 10, viewBox: "0 0 10 8", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: TOOLTIP_ARROW_PATH, fill: color }) });
|
|
29297
29331
|
}
|
|
29298
29332
|
|
|
29299
29333
|
// src/icons/HouseRules/houseRulesPaths.ts
|
|
@@ -29313,11 +29347,11 @@ var PAW_PATHS = [
|
|
|
29313
29347
|
];
|
|
29314
29348
|
var TRASH_PATH = "M7.5 2.5H12.5M2.5 5H17.5M15.8333 5L15.2489 13.7661C15.1612 15.0813 15.1174 15.7389 14.8333 16.2375C14.5833 16.6765 14.206 17.0294 13.7514 17.2497C13.235 17.5 12.5759 17.5 11.2578 17.5H8.74221C7.42409 17.5 6.76503 17.5 6.24861 17.2497C5.79396 17.0294 5.41674 16.6765 5.16665 16.2375C4.88259 15.7389 4.83875 15.0813 4.75107 13.7661L4.16667 5M8.33333 8.75V12.9167M11.6667 8.75V12.9167";
|
|
29315
29349
|
function QuietHoursIcon({ size = 20, color = colors.white }) {
|
|
29316
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29350
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: QUIET_HOURS_PATH, fill: color }) });
|
|
29317
29351
|
}
|
|
29318
29352
|
function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
29319
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29320
|
-
|
|
29353
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: NO_SMOKING_PATHS.map((d) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29354
|
+
Svg23.Path,
|
|
29321
29355
|
{
|
|
29322
29356
|
d,
|
|
29323
29357
|
stroke: color,
|
|
@@ -29329,8 +29363,8 @@ function NoSmokingIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
29329
29363
|
)) });
|
|
29330
29364
|
}
|
|
29331
29365
|
function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
29332
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29333
|
-
|
|
29366
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: PAW_PATHS.map((d) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
29367
|
+
Svg23.Path,
|
|
29334
29368
|
{
|
|
29335
29369
|
d,
|
|
29336
29370
|
stroke: color,
|
|
@@ -29342,8 +29376,8 @@ function PawIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }) {
|
|
|
29342
29376
|
)) });
|
|
29343
29377
|
}
|
|
29344
29378
|
function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29345
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29346
|
-
|
|
29379
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29380
|
+
Svg23.Path,
|
|
29347
29381
|
{
|
|
29348
29382
|
d: TRASH_PATH,
|
|
29349
29383
|
stroke: color,
|
|
@@ -29357,14 +29391,14 @@ function TrashIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
|
29357
29391
|
// src/icons/Facebook/facebookPath.ts
|
|
29358
29392
|
var FACEBOOK_PATH = "M10.0003 1.69922C5.41699 1.69922 1.66699 5.44089 1.66699 10.0492C1.66699 14.2159 4.71699 17.6742 8.70033 18.2992V12.4659H6.58366V10.0492H8.70033V8.20755C8.70033 6.11589 9.94199 4.96589 11.8503 4.96589C12.7587 4.96589 13.7087 5.12422 13.7087 5.12422V7.18255H12.6587C11.6253 7.18255 11.3003 7.82422 11.3003 8.48255V10.0492H13.617L13.242 12.4659H11.3003V18.2992C13.264 17.9891 15.0522 16.9871 16.3419 15.4743C17.6317 13.9614 18.3381 12.0373 18.3337 10.0492C18.3337 5.44089 14.5837 1.69922 10.0003 1.69922Z";
|
|
29359
29393
|
function FacebookIcon({ size = 20, color = colors.white }) {
|
|
29360
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29394
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: FACEBOOK_PATH, fill: color }) });
|
|
29361
29395
|
}
|
|
29362
29396
|
|
|
29363
29397
|
// src/icons/Filters/filtersPath.ts
|
|
29364
29398
|
var FILTERS_PATH = "M5 10H15M2.5 5H17.5M7.5 15H12.5";
|
|
29365
29399
|
function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29366
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29367
|
-
|
|
29400
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29401
|
+
Svg23.Path,
|
|
29368
29402
|
{
|
|
29369
29403
|
d: FILTERS_PATH,
|
|
29370
29404
|
stroke: color,
|
|
@@ -29378,8 +29412,8 @@ function FiltersIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
|
29378
29412
|
// src/icons/Fullscreen/fullscreenPath.ts
|
|
29379
29413
|
var FULLSCREEN_PATH = "M16 8L21 3M21 8V3H16M8 8L3 3M8 3L3 3L3 8M8 16L3 21M3 16L3 21H8M16 16L21 21M16 21H21V16";
|
|
29380
29414
|
function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
29381
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29382
|
-
|
|
29415
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29416
|
+
Svg23.Path,
|
|
29383
29417
|
{
|
|
29384
29418
|
d: FULLSCREEN_PATH,
|
|
29385
29419
|
stroke: color,
|
|
@@ -29390,11 +29424,29 @@ function FullscreenIcon({ size = 24, color = colors.white, strokeWidth = 2 }) {
|
|
|
29390
29424
|
) });
|
|
29391
29425
|
}
|
|
29392
29426
|
|
|
29427
|
+
// src/icons/Cutlery/cutleryPath.ts
|
|
29428
|
+
var CUTLERY_PATH = "M12.668 1.33301C12.4912 1.33301 12.3216 1.40325 12.1966 1.52827C12.0715 1.65329 12.0013 1.82286 12.0013 1.99967V5.63967L11.3346 6.08634V1.99967C11.3346 1.82286 11.2644 1.65329 11.1394 1.52827C11.0143 1.40325 10.8448 1.33301 10.668 1.33301C10.4912 1.33301 10.3216 1.40325 10.1966 1.52827C10.0715 1.65329 10.0013 1.82286 10.0013 1.99967V6.08634L9.33464 5.63967V1.99967C9.33464 1.82286 9.2644 1.65329 9.13937 1.52827C9.01435 1.40325 8.84478 1.33301 8.66797 1.33301C8.49116 1.33301 8.32159 1.40325 8.19656 1.52827C8.07154 1.65329 8.0013 1.82286 8.0013 1.99967V5.99967C8.00187 6.10948 8.02955 6.21744 8.08189 6.31397C8.13422 6.41051 8.20959 6.49262 8.3013 6.55301L10.0013 7.69301V13.9997C10.0013 14.1765 10.0715 14.3461 10.1966 14.4711C10.3216 14.5961 10.4912 14.6663 10.668 14.6663C10.8448 14.6663 11.0143 14.5961 11.1394 14.4711C11.2644 14.3461 11.3346 14.1765 11.3346 13.9997V7.69301L13.0346 6.55301C13.1263 6.49262 13.2017 6.41051 13.254 6.31397C13.3064 6.21744 13.3341 6.10948 13.3346 5.99967V1.99967C13.3346 1.82286 13.2644 1.65329 13.1394 1.52827C13.0143 1.40325 12.8448 1.33301 12.668 1.33301ZM6.0013 1.33301C5.11725 1.33301 4.2694 1.6842 3.64428 2.30932C3.01916 2.93444 2.66797 3.78229 2.66797 4.66634V8.66634C2.66797 8.84315 2.73821 9.01272 2.86323 9.13774C2.98826 9.26277 3.15782 9.33301 3.33464 9.33301H5.33464V13.9997C5.33464 14.1765 5.40487 14.3461 5.5299 14.4711C5.65492 14.5961 5.82449 14.6663 6.0013 14.6663C6.17811 14.6663 6.34768 14.5961 6.47271 14.4711C6.59773 14.3461 6.66797 14.1765 6.66797 13.9997V1.99967C6.66797 1.82286 6.59773 1.65329 6.47271 1.52827C6.34768 1.40325 6.17811 1.33301 6.0013 1.33301ZM5.33464 7.99967H4.0013V4.66634C4.00109 4.25257 4.12921 3.84892 4.36801 3.51102C4.60681 3.17312 4.94453 2.9176 5.33464 2.77967V7.99967Z";
|
|
29429
|
+
function CutleryIcon({ size = 16, color = colors.grey0 }) {
|
|
29430
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: CUTLERY_PATH, fill: color }) });
|
|
29431
|
+
}
|
|
29432
|
+
|
|
29433
|
+
// src/icons/Dollar/dollarPath.ts
|
|
29434
|
+
var DOLLAR_PATH = "M5.33333 6H4.66667V3.33333H6C6.17681 3.33333 6.34638 3.40357 6.4714 3.5286C6.59643 3.65362 6.66667 3.82319 6.66667 4C6.66667 4.17681 6.7369 4.34638 6.86193 4.4714C6.98695 4.59643 7.15652 4.66667 7.33333 4.66667C7.51014 4.66667 7.67971 4.59643 7.80474 4.4714C7.92976 4.34638 8 4.17681 8 4C8 3.46957 7.78929 2.96086 7.41421 2.58579C7.03914 2.21071 6.53043 2 6 2H4.66667V0.666667C4.66667 0.489856 4.59643 0.320286 4.4714 0.195262C4.34638 0.0702379 4.17681 0 4 0C3.82319 0 3.65362 0.0702379 3.5286 0.195262C3.40357 0.320286 3.33333 0.489856 3.33333 0.666667V2H2.66667C1.95942 2 1.28115 2.28095 0.781048 2.78105C0.280951 3.28115 0 3.95942 0 4.66667C0 5.37391 0.280951 6.05219 0.781048 6.55228C1.28115 7.05238 1.95942 7.33333 2.66667 7.33333H3.33333V10H2C1.82319 10 1.65362 9.92976 1.5286 9.80474C1.40357 9.67971 1.33333 9.51014 1.33333 9.33333C1.33333 9.15652 1.2631 8.98695 1.13807 8.86193C1.01305 8.7369 0.843478 8.66667 0.666667 8.66667C0.489856 8.66667 0.320287 8.7369 0.195262 8.86193C0.070238 8.98695 0 9.15652 0 9.33333C0 9.86377 0.210714 10.3725 0.585787 10.7475C0.960859 11.1226 1.46957 11.3333 2 11.3333H3.33333V12.6667C3.33333 12.8435 3.40357 13.013 3.5286 13.1381C3.65362 13.2631 3.82319 13.3333 4 13.3333C4.17681 13.3333 4.34638 13.2631 4.4714 13.1381C4.59643 13.013 4.66667 12.8435 4.66667 12.6667V11.3333H5.33333C6.04058 11.3333 6.71885 11.0524 7.21895 10.5523C7.71905 10.0522 8 9.37391 8 8.66667C8 7.95942 7.71905 7.28115 7.21895 6.78105C6.71885 6.28095 6.04058 6 5.33333 6V6ZM3.33333 6H2.66667C2.31304 6 1.97391 5.85952 1.72386 5.60948C1.47381 5.35943 1.33333 5.02029 1.33333 4.66667C1.33333 4.31304 1.47381 3.97391 1.72386 3.72386C1.97391 3.47381 2.31304 3.33333 2.66667 3.33333H3.33333V6ZM5.33333 10H4.66667V7.33333H5.33333C5.68696 7.33333 6.02609 7.47381 6.27614 7.72386C6.52619 7.97391 6.66667 8.31304 6.66667 8.66667C6.66667 9.02029 6.52619 9.35943 6.27614 9.60947C6.02609 9.85952 5.68696 10 5.33333 10Z";
|
|
29435
|
+
function DollarIcon({ size = 14, color = colors.grey0 }) {
|
|
29436
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size * 8 / 14, height: size, viewBox: "0 0 8 14", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: DOLLAR_PATH, fill: color }) });
|
|
29437
|
+
}
|
|
29438
|
+
|
|
29439
|
+
// src/icons/DragHandle/dragHandlePath.ts
|
|
29440
|
+
var DRAG_HANDLE_PATH = "M1 3.5C0.802219 3.5 0.60888 3.55865 0.44443 3.66853C0.279981 3.77841 0.151809 3.93459 0.0761209 4.11732C0.000433281 4.30004 -0.0193701 4.50111 0.0192152 4.69509C0.0578004 4.88907 0.153041 5.06725 0.292894 5.20711C0.432746 5.34696 0.610929 5.4422 0.80491 5.48079C0.998891 5.51937 1.19996 5.49957 1.38268 5.42388C1.56541 5.34819 1.72159 5.22002 1.83147 5.05557C1.94135 4.89112 2 4.69778 2 4.5C2 4.23478 1.89464 3.98043 1.70711 3.79289C1.51957 3.60536 1.26522 3.5 1 3.5ZM1 7C0.802219 7 0.60888 7.05865 0.44443 7.16853C0.279981 7.27841 0.151809 7.43459 0.0761209 7.61732C0.000433281 7.80004 -0.0193701 8.00111 0.0192152 8.19509C0.0578004 8.38907 0.153041 8.56725 0.292894 8.70711C0.432746 8.84696 0.610929 8.9422 0.80491 8.98079C0.998891 9.01937 1.19996 8.99957 1.38268 8.92388C1.56541 8.84819 1.72159 8.72002 1.83147 8.55557C1.94135 8.39112 2 8.19778 2 8C2 7.73478 1.89464 7.48043 1.70711 7.29289C1.51957 7.10536 1.26522 7 1 7ZM4.5 2C4.69778 2 4.89112 1.94135 5.05557 1.83147C5.22002 1.72159 5.34819 1.56541 5.42388 1.38268C5.49957 1.19996 5.51937 0.998891 5.48079 0.80491C5.4422 0.610929 5.34696 0.432746 5.20711 0.292894C5.06725 0.153041 4.88907 0.0578004 4.69509 0.0192152C4.50111 -0.0193701 4.30004 0.000433281 4.11732 0.0761209C3.93459 0.151809 3.77841 0.279981 3.66853 0.44443C3.55865 0.608879 3.5 0.802219 3.5 1C3.5 1.26522 3.60536 1.51957 3.79289 1.70711C3.98043 1.89464 4.23478 2 4.5 2ZM1 4.19685e-07C0.802219 4.19685e-07 0.60888 0.0586494 0.44443 0.168531C0.279981 0.278412 0.151809 0.434591 0.0761209 0.617317C0.000433281 0.800043 -0.0193701 1.00111 0.0192152 1.19509C0.0578004 1.38907 0.153041 1.56725 0.292894 1.70711C0.432746 1.84696 0.610929 1.9422 0.80491 1.98079C0.998891 2.01937 1.19996 1.99957 1.38268 1.92388C1.56541 1.84819 1.72159 1.72002 1.83147 1.55557C1.94135 1.39112 2 1.19778 2 1C2 0.734784 1.89464 0.48043 1.70711 0.292894C1.51957 0.105357 1.26522 4.19685e-07 1 4.19685e-07ZM4.5 7C4.30222 7 4.10888 7.05865 3.94443 7.16853C3.77998 7.27841 3.65181 7.43459 3.57612 7.61732C3.50043 7.80004 3.48063 8.00111 3.51922 8.19509C3.5578 8.38907 3.65304 8.56725 3.79289 8.70711C3.93275 8.84696 4.11093 8.9422 4.30491 8.98079C4.49889 9.01937 4.69996 8.99957 4.88268 8.92388C5.06541 8.84819 5.22159 8.72002 5.33147 8.55557C5.44135 8.39112 5.5 8.19778 5.5 8C5.5 7.73478 5.39464 7.48043 5.20711 7.29289C5.01957 7.10536 4.76522 7 4.5 7V7ZM4.5 3.5C4.30222 3.5 4.10888 3.55865 3.94443 3.66853C3.77998 3.77841 3.65181 3.93459 3.57612 4.11732C3.50043 4.30004 3.48063 4.50111 3.51922 4.69509C3.5578 4.88907 3.65304 5.06725 3.79289 5.20711C3.93275 5.34696 4.11093 5.4422 4.30491 5.48079C4.49889 5.51937 4.69996 5.49957 4.88268 5.42388C5.06541 5.34819 5.22159 5.22002 5.33147 5.05557C5.44135 4.89112 5.5 4.69778 5.5 4.5C5.5 4.23478 5.39464 3.98043 5.20711 3.79289C5.01957 3.60536 4.76522 3.5 4.5 3.5V3.5Z";
|
|
29441
|
+
function DragHandleIcon({ size = 9, color = colors.white }) {
|
|
29442
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size * 6 / 9, height: size, viewBox: "0 0 6 9", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: DRAG_HANDLE_PATH, fill: color }) });
|
|
29443
|
+
}
|
|
29444
|
+
|
|
29393
29445
|
// src/icons/Heart/heartPath.ts
|
|
29394
29446
|
var HEART_PATH = "M7.99547 3.42388C6.66257 1.8656 4.43987 1.44643 2.76984 2.87334C1.0998 4.30026 0.864686 6.68598 2.17617 8.3736C3.26659 9.77674 6.56656 12.7361 7.64811 13.6939C7.76911 13.801 7.82961 13.8546 7.90018 13.8757C7.96178 13.8941 8.02917 13.8941 8.09077 13.8757C8.16134 13.8546 8.22184 13.801 8.34284 13.6939C9.42439 12.7361 12.7244 9.77674 13.8148 8.3736C15.1263 6.68598 14.9199 4.28525 13.2211 2.87334C11.5224 1.46144 9.32838 1.8656 7.99547 3.42388Z";
|
|
29395
29447
|
function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29396
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29397
|
-
|
|
29448
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29449
|
+
Svg23.Path,
|
|
29398
29450
|
{
|
|
29399
29451
|
d: HEART_PATH,
|
|
29400
29452
|
stroke: color,
|
|
@@ -29411,9 +29463,9 @@ function HeartIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
|
29411
29463
|
var HEADSET_PATH = "M3 11H6C6.53043 11 7.03914 11.2107 7.41421 11.5858C7.78929 11.9609 8 12.4696 8 13V16C8 16.5304 7.78929 17.0391 7.41421 17.4142C7.03914 17.7893 6.53043 18 6 18H5C4.46957 18 3.96086 17.7893 3.58579 17.4142C3.21071 17.0391 3 16.5304 3 16V11ZM3 11C3 9.8181 3.23279 8.64778 3.68508 7.55585C4.13738 6.46392 4.80031 5.47177 5.63604 4.63604C6.47177 3.80031 7.46392 3.13738 8.55585 2.68508C9.64778 2.23279 10.8181 2 12 2C13.1819 2 14.3522 2.23279 15.4442 2.68508C16.5361 3.13738 17.5282 3.80031 18.364 4.63604C19.1997 5.47177 19.8626 6.46392 20.3149 7.55585C20.7672 8.64778 21 9.8181 21 11M21 11V16C21 16.5304 20.7893 17.0391 20.4142 17.4142C20.0391 17.7893 19.5304 18 19 18H18C17.4696 18 16.9609 17.7893 16.5858 17.4142C16.2107 17.0391 16 16.5304 16 16V13C16 12.4696 16.2107 11.9609 16.5858 11.5858C16.9609 11.2107 17.4696 11 18 11H21Z";
|
|
29412
29464
|
var HEADSET_MIC_PATH = "M21 16V18C21 19.0609 20.5786 20.0783 19.8284 20.8284C19.0783 21.5786 18.0609 22 17 22H12";
|
|
29413
29465
|
function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
29414
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29466
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: [
|
|
29415
29467
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29416
|
-
|
|
29468
|
+
Svg23.Path,
|
|
29417
29469
|
{
|
|
29418
29470
|
d: HEADSET_PATH,
|
|
29419
29471
|
stroke: color,
|
|
@@ -29423,7 +29475,7 @@ function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
|
29423
29475
|
}
|
|
29424
29476
|
),
|
|
29425
29477
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29426
|
-
|
|
29478
|
+
Svg23.Path,
|
|
29427
29479
|
{
|
|
29428
29480
|
d: HEADSET_MIC_PATH,
|
|
29429
29481
|
stroke: color,
|
|
@@ -29438,8 +29490,8 @@ function HeadsetIcon({ size = 24, color = "#B76533", strokeWidth = 2 }) {
|
|
|
29438
29490
|
// src/icons/Globe/globePath.ts
|
|
29439
29491
|
var GLOBE_PATH = "M1.3335 8.00004H14.6668M1.3335 8.00004C1.3335 11.6819 4.31826 14.6667 8.00016 14.6667M1.3335 8.00004C1.3335 4.31814 4.31826 1.33337 8.00016 1.33337M14.6668 8.00004C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667M14.6668 8.00004C14.6668 4.31814 11.6821 1.33337 8.00016 1.33337M8.00016 1.33337C9.66768 3.15894 10.6153 5.52806 10.6668 8.00004C10.6153 10.472 9.66768 12.8411 8.00016 14.6667M8.00016 1.33337C6.33264 3.15894 5.38499 5.52806 5.3335 8.00004C5.38499 10.472 6.33264 12.8411 8.00016 14.6667";
|
|
29440
29492
|
function GlobeIcon({ size = 16, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29441
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29442
|
-
|
|
29493
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29494
|
+
Svg23.Path,
|
|
29443
29495
|
{
|
|
29444
29496
|
d: GLOBE_PATH,
|
|
29445
29497
|
stroke: color,
|
|
@@ -29457,8 +29509,8 @@ function HelpCircleIcon({
|
|
|
29457
29509
|
color = colors.primary,
|
|
29458
29510
|
strokeWidth = 1.5
|
|
29459
29511
|
}) {
|
|
29460
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29461
|
-
|
|
29512
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29513
|
+
Svg23.Path,
|
|
29462
29514
|
{
|
|
29463
29515
|
d: HELP_CIRCLE_PATH,
|
|
29464
29516
|
stroke: color,
|
|
@@ -29472,8 +29524,8 @@ function HelpCircleIcon({
|
|
|
29472
29524
|
// src/icons/Hide/hidePath.ts
|
|
29473
29525
|
var HIDE_PATH = "M10.7429 5.09232C11.1494 5.03223 11.5686 5 12.0004 5C17.1054 5 20.4553 9.50484 21.5807 11.2868C21.7169 11.5025 21.785 11.6103 21.8231 11.7767C21.8518 11.9016 21.8517 12.0987 21.8231 12.2236C21.7849 12.3899 21.7164 12.4985 21.5792 12.7156C21.2793 13.1901 20.8222 13.8571 20.2165 14.5805M6.72432 6.71504C4.56225 8.1817 3.09445 10.2194 2.42111 11.2853C2.28428 11.5019 2.21587 11.6102 2.17774 11.7765C2.1491 11.9014 2.14909 12.0984 2.17771 12.2234C2.21583 12.3897 2.28393 12.4975 2.42013 12.7132C3.54554 14.4952 6.89541 19 12.0004 19C14.0588 19 15.8319 18.2676 17.2888 17.2766M3.00042 3L21.0004 21M9.8791 9.87868C9.3362 10.4216 9.00042 11.1716 9.00042 12C9.00042 13.6569 10.3436 15 12.0004 15C12.8288 15 13.5788 14.6642 14.1217 14.1213";
|
|
29474
29526
|
function HideIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
29475
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29476
|
-
|
|
29527
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29528
|
+
Svg23.Path,
|
|
29477
29529
|
{
|
|
29478
29530
|
d: HIDE_PATH,
|
|
29479
29531
|
stroke: color,
|
|
@@ -29487,8 +29539,8 @@ function HideIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29487
29539
|
// src/icons/Home/homePath.ts
|
|
29488
29540
|
var HOME_PATH = "M6.77168 11.6663C7.14172 13.104 8.4468 14.1663 10 14.1663C11.5532 14.1663 12.8583 13.104 13.2283 11.6663M9.18141 2.30297L3.52949 6.6989C3.15168 6.99276 2.96278 7.13968 2.82669 7.32368C2.70614 7.48667 2.61633 7.67029 2.56169 7.86551C2.5 8.0859 2.5 8.32521 2.5 8.80384V14.833C2.5 15.7664 2.5 16.2331 2.68166 16.5896C2.84144 16.9032 3.09641 17.1582 3.41002 17.318C3.76654 17.4996 4.23325 17.4996 5.16667 17.4996H14.8333C15.7668 17.4996 16.2335 17.4996 16.59 17.318C16.9036 17.1582 17.1586 16.9032 17.3183 16.5896C17.5 16.2331 17.5 15.7664 17.5 14.833V8.80384C17.5 8.32521 17.5 8.0859 17.4383 7.86551C17.3837 7.67029 17.2939 7.48667 17.1733 7.32368C17.0372 7.13968 16.8483 6.99276 16.4705 6.69891L10.8186 2.30297C10.5258 2.07526 10.3794 1.9614 10.2178 1.91763C10.0752 1.87902 9.92484 1.87902 9.78221 1.91763C9.62057 1.9614 9.47418 2.07526 9.18141 2.30297Z";
|
|
29489
29541
|
function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29490
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29491
|
-
|
|
29542
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29543
|
+
Svg23.Path,
|
|
29492
29544
|
{
|
|
29493
29545
|
d: HOME_PATH,
|
|
29494
29546
|
stroke: color,
|
|
@@ -29499,17 +29551,38 @@ function HomeIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29499
29551
|
) });
|
|
29500
29552
|
}
|
|
29501
29553
|
|
|
29554
|
+
// src/icons/Image/imagePath.ts
|
|
29555
|
+
var IMAGE_PATH = "M10.8 14H4.62091C4.21704 14 4.0151 14 3.92159 13.9201C3.84045 13.8508 3.79739 13.7469 3.80577 13.6405C3.81541 13.5179 3.95821 13.3751 4.24379 13.0895L9.91242 7.42091C10.1764 7.15691 10.3084 7.0249 10.4607 6.97544C10.5946 6.93193 10.7388 6.93193 10.8727 6.97544C11.0249 7.0249 11.1569 7.1569 11.4209 7.42091L14 10V10.8M10.8 14C11.9201 14 12.4802 14 12.908 13.782C13.2843 13.5903 13.5903 13.2843 13.782 12.908C14 12.4802 14 11.9201 14 10.8M10.8 14H5.2C4.0799 14 3.51984 14 3.09202 13.782C2.71569 13.5903 2.40973 13.2843 2.21799 12.908C2 12.4802 2 11.9201 2 10.8V5.2C2 4.0799 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H10.8C11.9201 2 12.4802 2 12.908 2.21799C13.2843 2.40973 13.5903 2.71569 13.782 3.09202C14 3.51984 14 4.0799 14 5.2V10.8M7 5.66667C7 6.40305 6.40305 7 5.66667 7C4.93029 7 4.33333 6.40305 4.33333 5.66667C4.33333 4.93029 4.93029 4.33333 5.66667 4.33333C6.40305 4.33333 7 4.93029 7 5.66667Z";
|
|
29556
|
+
function ImageIcon({ size = 16, color = colors.grey0, strokeWidth = 1.5 }) {
|
|
29557
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29558
|
+
Svg23.Path,
|
|
29559
|
+
{
|
|
29560
|
+
d: IMAGE_PATH,
|
|
29561
|
+
stroke: color,
|
|
29562
|
+
strokeWidth,
|
|
29563
|
+
strokeLinecap: "round",
|
|
29564
|
+
strokeLinejoin: "round"
|
|
29565
|
+
}
|
|
29566
|
+
) });
|
|
29567
|
+
}
|
|
29568
|
+
|
|
29569
|
+
// src/icons/InfoCircle/infoCirclePath.ts
|
|
29570
|
+
var INFO_CIRCLE_PATH = "M7.9987 1.33301C6.68016 1.33301 5.39123 1.724 4.2949 2.45654C3.19857 3.18909 2.34409 4.23028 1.8395 5.44845C1.33492 6.66663 1.2029 8.00707 1.46013 9.30028C1.71737 10.5935 2.35231 11.7814 3.28466 12.7137C4.21701 13.6461 5.40489 14.281 6.6981 14.5382C7.99131 14.7955 9.33175 14.6635 10.5499 14.1589C11.7681 13.6543 12.8093 12.7998 13.5418 11.7035C14.2744 10.6071 14.6654 9.31822 14.6654 7.99967C14.6634 6.23217 13.9604 4.53762 12.7106 3.2878C11.4608 2.03798 9.76621 1.33497 7.9987 1.33301ZM7.9987 13.333C6.94387 13.333 5.91272 13.0202 5.03566 12.4342C4.1586 11.8481 3.47501 11.0152 3.07134 10.0407C2.66768 9.06611 2.56206 7.99376 2.76785 6.95919C2.97363 5.92463 3.48158 4.97432 4.22746 4.22844C4.97334 3.48256 5.92365 2.97461 6.95822 2.76882C7.99278 2.56303 9.06514 2.66865 10.0397 3.07232C11.0142 3.47598 11.8472 4.15957 12.4332 5.03663C13.0192 5.91369 13.332 6.94484 13.332 7.99967C13.3304 9.41366 12.768 10.7693 11.7682 11.7691C10.7683 12.769 9.41269 13.3314 7.9987 13.333ZM7.9987 7.66634C7.82189 7.66634 7.65232 7.73658 7.5273 7.8616C7.40227 7.98663 7.33203 8.1562 7.33203 8.33301V10.333C7.33203 10.5098 7.40227 10.6794 7.5273 10.8044C7.65232 10.9294 7.82189 10.9997 7.9987 10.9997C8.17551 10.9997 8.34508 10.9294 8.47011 10.8044C8.59513 10.6794 8.66537 10.5098 8.66537 10.333V8.33301C8.66537 8.1562 8.59513 7.98663 8.47011 7.8616C8.34508 7.73658 8.17551 7.66634 7.9987 7.66634ZM7.9987 4.99967C7.83388 4.99967 7.67277 5.04855 7.53573 5.14012C7.39868 5.23168 7.29187 5.36183 7.2288 5.5141C7.16573 5.66638 7.14923 5.83393 7.18138 5.99558C7.21353 6.15723 7.2929 6.30572 7.40945 6.42226C7.52599 6.53881 7.67448 6.61817 7.83613 6.65033C7.99778 6.68248 8.16533 6.66598 8.3176 6.60291C8.46988 6.53983 8.60002 6.43302 8.69159 6.29598C8.78316 6.15894 8.83203 5.99783 8.83203 5.83301C8.83203 5.61199 8.74424 5.40003 8.58796 5.24375C8.43168 5.08747 8.21972 4.99967 7.9987 4.99967Z";
|
|
29571
|
+
function InfoCircleIcon({ size = 16, color = colors.grey0 }) {
|
|
29572
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: INFO_CIRCLE_PATH, fill: color }) });
|
|
29573
|
+
}
|
|
29574
|
+
|
|
29502
29575
|
// src/icons/Instagram/instagramPath.ts
|
|
29503
29576
|
var INSTAGRAM_PATH = "M6.49984 1.66748H13.4998C16.1665 1.66748 18.3332 3.83415 18.3332 6.50081V13.5008C18.3332 14.7827 17.8239 16.0121 16.9175 16.9185C16.0111 17.8249 14.7817 18.3341 13.4998 18.3341H6.49984C3.83317 18.3341 1.6665 16.1675 1.6665 13.5008V6.50081C1.6665 5.21893 2.17573 3.98956 3.08215 3.08313C3.98858 2.17671 5.21796 1.66748 6.49984 1.66748ZM6.33317 3.33415C5.53752 3.33415 4.77446 3.65022 4.21185 4.21283C3.64924 4.77544 3.33317 5.5385 3.33317 6.33415V13.6675C3.33317 15.3258 4.67484 16.6675 6.33317 16.6675H13.6665C14.4622 16.6675 15.2252 16.3514 15.7878 15.7888C16.3504 15.2262 16.6665 14.4631 16.6665 13.6675V6.33415C16.6665 4.67581 15.3248 3.33415 13.6665 3.33415H6.33317ZM14.3748 4.58415C14.6511 4.58415 14.9161 4.69389 15.1114 4.88924C15.3068 5.08459 15.4165 5.34955 15.4165 5.62581C15.4165 5.90208 15.3068 6.16703 15.1114 6.36238C14.9161 6.55773 14.6511 6.66748 14.3748 6.66748C14.0986 6.66748 13.8336 6.55773 13.6383 6.36238C13.4429 6.16703 13.3332 5.90208 13.3332 5.62581C13.3332 5.34955 13.4429 5.08459 13.6383 4.88924C13.8336 4.69389 14.0986 4.58415 14.3748 4.58415ZM9.99984 5.83415C11.1049 5.83415 12.1647 6.27313 12.9461 7.05454C13.7275 7.83594 14.1665 8.89574 14.1665 10.0008C14.1665 11.1059 13.7275 12.1657 12.9461 12.9471C12.1647 13.7285 11.1049 14.1675 9.99984 14.1675C8.89477 14.1675 7.83496 13.7285 7.05356 12.9471C6.27216 12.1657 5.83317 11.1059 5.83317 10.0008C5.83317 8.89574 6.27216 7.83594 7.05356 7.05454C7.83496 6.27313 8.89477 5.83415 9.99984 5.83415ZM9.99984 7.50081C9.3368 7.50081 8.70091 7.76421 8.23207 8.23305C7.76323 8.70189 7.49984 9.33777 7.49984 10.0008C7.49984 10.6639 7.76323 11.2997 8.23207 11.7686C8.70091 12.2374 9.3368 12.5008 9.99984 12.5008C10.6629 12.5008 11.2988 12.2374 11.7676 11.7686C12.2364 11.2997 12.4998 10.6639 12.4998 10.0008C12.4998 9.33777 12.2364 8.70189 11.7676 8.23305C11.2988 7.76421 10.6629 7.50081 9.99984 7.50081Z";
|
|
29504
29577
|
function InstagramIcon({ size = 20, color = colors.white }) {
|
|
29505
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29578
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: INSTAGRAM_PATH, fill: color }) });
|
|
29506
29579
|
}
|
|
29507
29580
|
|
|
29508
29581
|
// src/icons/Key/keyPath.ts
|
|
29509
29582
|
var KEY_PATH = "M14.1668 8.33333V6.66667C14.1668 4.36548 12.3013 2.5 10.0002 2.5C7.69898 2.5 5.8335 4.36548 5.8335 6.66667V8.33333M10.0002 12.0833V13.75M7.3335 17.5H12.6668C14.067 17.5 14.767 17.5 15.3018 17.2275C15.7722 16.9878 16.1547 16.6054 16.3943 16.135C16.6668 15.6002 16.6668 14.9001 16.6668 13.5V12.3333C16.6668 10.9332 16.6668 10.2331 16.3943 9.69836C16.1547 9.22795 15.7722 8.8455 15.3018 8.60582C14.767 8.33333 14.067 8.33333 12.6668 8.33333H7.3335C5.93336 8.33333 5.2333 8.33333 4.69852 8.60582C4.22811 8.8455 3.84566 9.22795 3.60598 9.69836C3.3335 10.2331 3.3335 10.9332 3.3335 12.3333V13.5C3.3335 14.9001 3.3335 15.6002 3.60598 16.135C3.84566 16.6054 4.22811 16.9878 4.69852 17.2275C5.2333 17.5 5.93336 17.5 7.3335 17.5Z";
|
|
29510
29583
|
function KeyIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29511
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29512
|
-
|
|
29584
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29585
|
+
Svg23.Path,
|
|
29513
29586
|
{
|
|
29514
29587
|
d: KEY_PATH,
|
|
29515
29588
|
stroke: color,
|
|
@@ -29527,8 +29600,8 @@ function LayoutGridIcon({
|
|
|
29527
29600
|
color = colors.primary,
|
|
29528
29601
|
strokeWidth = 1.5
|
|
29529
29602
|
}) {
|
|
29530
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29531
|
-
|
|
29603
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29604
|
+
Svg23.Path,
|
|
29532
29605
|
{
|
|
29533
29606
|
d: LAYOUT_GRID_PATH,
|
|
29534
29607
|
stroke: color,
|
|
@@ -29542,14 +29615,14 @@ function LayoutGridIcon({
|
|
|
29542
29615
|
// src/icons/LinkedIn/linkedinPath.ts
|
|
29543
29616
|
var LINKEDIN_PATH = "M15.8333 2.50098C16.2754 2.50098 16.6993 2.67657 17.0118 2.98913C17.3244 3.30169 17.5 3.72562 17.5 4.16764V15.8343C17.5 16.2763 17.3244 16.7003 17.0118 17.0128C16.6993 17.3254 16.2754 17.501 15.8333 17.501H4.16667C3.72464 17.501 3.30072 17.3254 2.98816 17.0128C2.67559 16.7003 2.5 16.2763 2.5 15.8343V4.16764C2.5 3.72562 2.67559 3.30169 2.98816 2.98913C3.30072 2.67657 3.72464 2.50098 4.16667 2.50098H15.8333ZM15.4167 15.4176V11.001C15.4167 10.2805 15.1304 9.58948 14.621 9.08C14.1115 8.57053 13.4205 8.28431 12.7 8.28431C11.9917 8.28431 11.1667 8.71764 10.7667 9.36764V8.44264H8.44167V15.4176H10.7667V11.3093C10.7667 10.6676 11.2833 10.1426 11.925 10.1426C12.2344 10.1426 12.5312 10.2656 12.75 10.4844C12.9687 10.7031 13.0917 10.9999 13.0917 11.3093V15.4176H15.4167ZM5.73333 7.13431C6.10464 7.13431 6.46073 6.98681 6.72328 6.72426C6.98583 6.46171 7.13333 6.10561 7.13333 5.73431C7.13333 4.95931 6.50833 4.32598 5.73333 4.32598C5.35982 4.32598 5.0016 4.47435 4.73749 4.73847C4.47338 5.00258 4.325 5.3608 4.325 5.73431C4.325 6.50931 4.95833 7.13431 5.73333 7.13431ZM6.89167 15.4176V8.44264H4.58333V15.4176H6.89167Z";
|
|
29544
29617
|
function LinkedInIcon({ size = 20, color = colors.white }) {
|
|
29545
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29618
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: LINKEDIN_PATH, fill: color }) });
|
|
29546
29619
|
}
|
|
29547
29620
|
|
|
29548
29621
|
// src/icons/ListView/listViewPath.ts
|
|
29549
29622
|
var LIST_VIEW_PATH = "M7 2.5H3.83333C3.36662 2.5 3.13327 2.5 2.95501 2.59083C2.79821 2.67072 2.67072 2.79821 2.59083 2.95501C2.5 3.13327 2.5 3.36662 2.5 3.83333V7C2.5 7.46671 2.5 7.70007 2.59083 7.87833C2.67072 8.03513 2.79821 8.16261 2.95501 8.24251C3.13327 8.33333 3.36662 8.33333 3.83333 8.33333H7C7.46671 8.33333 7.70007 8.33333 7.87833 8.24251C8.03513 8.16261 8.16261 8.03513 8.24251 7.87833C8.33333 7.70007 8.33333 7.46671 8.33333 7V3.83333C8.33333 3.36662 8.33333 3.13327 8.24251 2.95501C8.16261 2.79821 8.03513 2.67072 7.87833 2.59083C7.70007 2.5 7.46671 2.5 7 2.5ZM16.1667 2.5H13C12.5333 2.5 12.2999 2.5 12.1217 2.59083C11.9649 2.67072 11.8374 2.79821 11.7575 2.95501C11.6667 3.13327 11.6667 3.36662 11.6667 3.83333V7C11.6667 7.46671 11.6667 7.70007 11.7575 7.87833C11.8374 8.03513 11.9649 8.16261 12.1217 8.24251C12.2999 8.33333 12.5333 8.33333 13 8.33333H16.1667C16.6334 8.33333 16.8667 8.33333 17.045 8.24251C17.2018 8.16261 17.3293 8.03513 17.4092 7.87833C17.5 7.70007 17.5 7.46671 17.5 7V3.83333C17.5 3.36662 17.5 3.13327 17.4092 2.95501C17.3293 2.79821 17.2018 2.67072 17.045 2.59083C16.8667 2.5 16.6334 2.5 16.1667 2.5ZM16.1667 11.6667H13C12.5333 11.6667 12.2999 11.6667 12.1217 11.7575C11.9649 11.8374 11.8374 11.9649 11.7575 12.1217C11.6667 12.2999 11.6667 12.5333 11.6667 13V16.1667C11.6667 16.6334 11.6667 16.8667 11.7575 17.045C11.8374 17.2018 11.9649 17.3293 12.1217 17.4092C12.2999 17.5 12.5333 17.5 13 17.5H16.1667C16.6334 17.5 16.8667 17.5 17.045 17.4092C17.2018 17.3293 17.3293 17.2018 17.4092 17.045C17.5 16.8667 17.5 16.6334 17.5 16.1667V13C17.5 12.5333 17.5 12.2999 17.4092 12.1217C17.3293 11.9649 17.2018 11.8374 17.045 11.7575C16.8667 11.6667 16.6334 11.6667 16.1667 11.6667ZM7 11.6667H3.83333C3.36662 11.6667 3.13327 11.6667 2.95501 11.7575C2.79821 11.8374 2.67072 11.9649 2.59083 12.1217C2.5 12.2999 2.5 12.5333 2.5 13V16.1667C2.5 16.6334 2.5 16.8667 2.59083 17.045C2.67072 17.2018 2.79821 17.3293 2.95501 17.4092C3.13327 17.5 3.36662 17.5 3.83333 17.5H7C7.46671 17.5 7.70007 17.5 7.87833 17.4092C8.03513 17.3293 8.16261 17.2018 8.24251 17.045C8.33333 16.8667 8.33333 16.6334 8.33333 16.1667V13C8.33333 12.5333 8.33333 12.2999 8.24251 12.1217C8.16261 11.9649 8.03513 11.8374 7.87833 11.7575C7.70007 11.6667 7.46671 11.6667 7 11.6667Z";
|
|
29550
29623
|
function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29551
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29552
|
-
|
|
29624
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29625
|
+
Svg23.Path,
|
|
29553
29626
|
{
|
|
29554
29627
|
d: LIST_VIEW_PATH,
|
|
29555
29628
|
stroke: color,
|
|
@@ -29563,8 +29636,8 @@ function ListViewIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29563
29636
|
// src/icons/LocationPin/locationPinPath.ts
|
|
29564
29637
|
var LOCATION_PIN_PATH = "M4.16675 8.26904C4.16675 12.3122 7.70381 15.6558 9.26941 16.9377C9.49347 17.1211 9.60684 17.214 9.774 17.261C9.90417 17.2977 10.0957 17.2977 10.2259 17.261C10.3934 17.2139 10.506 17.122 10.7309 16.9378C12.2965 15.6559 15.8333 12.3126 15.8333 8.26941C15.8333 6.73932 15.2188 5.27171 14.1248 4.18977C13.0309 3.10783 11.5472 2.5 10.0001 2.5C8.45305 2.5 6.96925 3.10792 5.87529 4.18986C4.78133 5.2718 4.16675 6.73895 4.16675 8.26904ZM8.33341 7.5C8.33341 8.42047 9.07961 9.16667 10.0001 9.16667C10.9206 9.16667 11.6667 8.42047 11.6667 7.5C11.6667 6.57953 10.9206 5.83333 10.0001 5.83333C9.07961 5.83333 8.33341 6.57953 8.33341 7.5Z";
|
|
29565
29638
|
function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 }) {
|
|
29566
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29567
|
-
|
|
29639
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29640
|
+
Svg23.Path,
|
|
29568
29641
|
{
|
|
29569
29642
|
d: LOCATION_PIN_PATH,
|
|
29570
29643
|
stroke: color,
|
|
@@ -29578,14 +29651,14 @@ function LocationPinIcon({ size = 20, color = colors.grey200, strokeWidth = 2 })
|
|
|
29578
29651
|
// src/icons/LocationUser/locationUserPath.ts
|
|
29579
29652
|
var LOCATION_USER_PATH = "M10.9127 8.5267C10.8313 8.4943 10.7443 8.47826 10.6566 8.47949C10.569 8.48073 10.4825 8.4992 10.402 8.53387C10.3216 8.56854 10.2487 8.61872 10.1876 8.68154C10.1265 8.74437 10.0784 8.81861 10.046 8.90003C10.0136 8.98145 9.99758 9.06845 9.99882 9.15607C10 9.24369 10.0185 9.3302 10.0532 9.41068C10.0879 9.49116 10.138 9.56402 10.2009 9.62511C10.2637 9.68619 10.3379 9.7343 10.4193 9.7667C11.3927 10.1534 11.9993 10.7534 11.9993 11.3334C11.9993 12.28 10.3593 13.3334 7.99935 13.3334C5.63935 13.3334 3.99935 12.28 3.99935 11.3334C3.99935 10.7534 4.60602 10.1534 5.57935 9.7667C5.74378 9.70128 5.87549 9.57321 5.94551 9.41068C6.01552 9.24815 6.0181 9.06446 5.95268 8.90003C5.88726 8.73559 5.7592 8.60388 5.59667 8.53387C5.43414 8.46386 5.25045 8.46128 5.08602 8.5267C3.57268 9.1267 2.66602 10.1734 2.66602 11.3334C2.66602 13.2 5.00602 14.6667 7.99935 14.6667C10.9927 14.6667 13.3327 13.2 13.3327 11.3334C13.3327 10.1734 12.426 9.1267 10.9127 8.5267ZM7.33268 6.57336V11.3334C7.33268 11.5102 7.40292 11.6797 7.52794 11.8048C7.65297 11.9298 7.82254 12 7.99935 12C8.17616 12 8.34573 11.9298 8.47075 11.8048C8.59578 11.6797 8.66602 11.5102 8.66602 11.3334V6.57336C9.29445 6.4111 9.84214 6.02521 10.2064 5.48802C10.5707 4.95084 10.7265 4.29924 10.6448 3.65536C10.563 3.01149 10.2492 2.41954 9.76217 1.99048C9.27517 1.56142 8.6484 1.32471 7.99935 1.32471C7.3503 1.32471 6.72353 1.56142 6.23653 1.99048C5.74952 2.41954 5.43572 3.01149 5.35394 3.65536C5.27215 4.29924 5.42801 4.95084 5.79228 5.48802C6.15656 6.02521 6.70424 6.4111 7.33268 6.57336V6.57336ZM7.99935 2.6667C8.26306 2.6667 8.52084 2.74489 8.74011 2.8914C8.95937 3.03791 9.13027 3.24615 9.23119 3.48978C9.33211 3.73342 9.35851 4.00151 9.30706 4.26015C9.25562 4.51879 9.12863 4.75637 8.94216 4.94284C8.75569 5.12931 8.51811 5.2563 8.25947 5.30774C8.00083 5.35919 7.73274 5.33279 7.4891 5.23187C7.24547 5.13095 7.03723 4.96005 6.89072 4.74079C6.74421 4.52152 6.66602 4.26374 6.66602 4.00003C6.66602 3.64641 6.80649 3.30727 7.05654 3.05722C7.30659 2.80717 7.64573 2.6667 7.99935 2.6667Z";
|
|
29580
29653
|
function LocationUserIcon({ size = 16, color = colors.grey0 }) {
|
|
29581
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29654
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: LOCATION_USER_PATH, fill: color }) });
|
|
29582
29655
|
}
|
|
29583
29656
|
|
|
29584
29657
|
// src/icons/Lock/lockPath.ts
|
|
29585
29658
|
var LOCK_PATH = "M22.6673 13.3333V10.6667C22.6673 6.98477 19.6825 4 16.0007 4C12.3188 4 9.33398 6.98477 9.33398 10.6667V13.3333M16.0007 19.3333V22M11.734 28H20.2673C22.5075 28 23.6276 28 24.4833 27.564C25.2359 27.1805 25.8479 26.5686 26.2313 25.816C26.6673 24.9603 26.6673 23.8402 26.6673 21.6V19.7333C26.6673 17.4931 26.6673 16.373 26.2313 15.5174C25.8479 14.7647 25.2359 14.1528 24.4833 13.7693C23.6276 13.3333 22.5075 13.3333 20.2673 13.3333H11.734C9.49377 13.3333 8.37367 13.3333 7.51802 13.7693C6.76537 14.1528 6.15345 14.7647 5.76996 15.5174C5.33398 16.373 5.33398 17.4931 5.33398 19.7333V21.6C5.33398 23.8402 5.33398 24.9603 5.76996 25.816C6.15345 26.5686 6.76537 27.1805 7.51802 27.564C8.37367 28 9.49377 28 11.734 28Z";
|
|
29586
29659
|
function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
|
|
29587
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29588
|
-
|
|
29660
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 32 32", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29661
|
+
Svg23.Path,
|
|
29589
29662
|
{
|
|
29590
29663
|
d: LOCK_PATH,
|
|
29591
29664
|
stroke: color,
|
|
@@ -29599,8 +29672,8 @@ function LockIcon({ size = 32, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29599
29672
|
// src/icons/LogOut/logOutPath.ts
|
|
29600
29673
|
var LOG_OUT_PATH = "M10.6667 4.66667L14 8L10.6667 11.3333M14 8H6M6 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.7157 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V10.8C2 11.9201 2 12.4802 2.21799 12.908C2.40973 13.2843 2.71569 13.5903 3.09202 13.782C3.51984 14 4.0799 14 5.2 14H6";
|
|
29601
29674
|
function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
|
|
29602
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29603
|
-
|
|
29675
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29676
|
+
Svg23.Path,
|
|
29604
29677
|
{
|
|
29605
29678
|
d: LOG_OUT_PATH,
|
|
29606
29679
|
stroke: color,
|
|
@@ -29614,8 +29687,8 @@ function LogOutIcon({ size = 20, color = colors.red, strokeWidth = 1.5 }) {
|
|
|
29614
29687
|
// src/icons/Mail/mailPath.ts
|
|
29615
29688
|
var MAIL_PATH = "M3.33333 4.99984L8.42303 8.84339L8.42473 8.8448C8.98987 9.25924 9.27261 9.46658 9.5823 9.54668C9.85602 9.61748 10.1438 9.61748 10.4175 9.54668C10.7274 9.46651 11.011 9.25856 11.5771 8.84339C11.5771 8.84339 14.8417 6.33812 16.6667 4.99984M2.5 13.1667V6.83333C2.5 5.89991 2.5 5.43285 2.68166 5.07633C2.84144 4.76273 3.09623 4.50795 3.40983 4.34816C3.76635 4.1665 4.23341 4.1665 5.16683 4.1665H14.8335C15.7669 4.1665 16.233 4.1665 16.5895 4.34816C16.9031 4.50795 17.1587 4.76273 17.3185 5.07633C17.5 5.43251 17.5 5.899 17.5 6.8306V13.1695C17.5 14.1011 17.5 14.5669 17.3185 14.9231C17.1587 15.2367 16.9031 15.4919 16.5895 15.6517C16.2333 15.8332 15.7675 15.8332 14.8359 15.8332H5.16409C4.23249 15.8332 3.766 15.8332 3.40983 15.6517C3.09623 15.4919 2.84144 15.2367 2.68166 14.9231C2.5 14.5666 2.5 14.1001 2.5 13.1667Z";
|
|
29616
29689
|
function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29617
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29618
|
-
|
|
29690
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29691
|
+
Svg23.Path,
|
|
29619
29692
|
{
|
|
29620
29693
|
d: MAIL_PATH,
|
|
29621
29694
|
stroke: color,
|
|
@@ -29629,8 +29702,8 @@ function MailIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29629
29702
|
// src/icons/MapView/mapViewPath.ts
|
|
29630
29703
|
var MAP_VIEW_PATH = "M13.3332 4.99984L7.49984 1.6665L1.6665 4.99984V18.3332L7.49984 14.9998M13.3332 4.99984L18.3332 1.6665V14.9998L13.3332 18.3332L7.49984 14.9998M7.49984 14.9998V1.6665M13.3332 18.3332V4.99984";
|
|
29631
29704
|
function MapViewIcon({ size = 20, color = colors.grey400, strokeWidth = 2 }) {
|
|
29632
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29633
|
-
|
|
29705
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29706
|
+
Svg23.Path,
|
|
29634
29707
|
{
|
|
29635
29708
|
d: MAP_VIEW_PATH,
|
|
29636
29709
|
stroke: color,
|
|
@@ -29650,8 +29723,8 @@ function MapControlIcon({
|
|
|
29650
29723
|
color = colors.white,
|
|
29651
29724
|
strokeWidth = 2
|
|
29652
29725
|
}) {
|
|
29653
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29654
|
-
|
|
29726
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29727
|
+
Svg23.Path,
|
|
29655
29728
|
{
|
|
29656
29729
|
d: path,
|
|
29657
29730
|
stroke: color,
|
|
@@ -29677,8 +29750,8 @@ function MenuIcon({
|
|
|
29677
29750
|
strokeWidth = 2,
|
|
29678
29751
|
open = false
|
|
29679
29752
|
}) {
|
|
29680
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29681
|
-
|
|
29753
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29754
|
+
Svg23.Path,
|
|
29682
29755
|
{
|
|
29683
29756
|
d: open ? MENU_CLOSE_PATH : MENU_PATH,
|
|
29684
29757
|
stroke: color,
|
|
@@ -29693,8 +29766,8 @@ function MenuIcon({
|
|
|
29693
29766
|
// src/icons/MenuLines/menuLinesPath.ts
|
|
29694
29767
|
var MENU_LINES_PATH = "M5.83398 19.8337H15.1673M5.83398 14.0003H22.1673M5.83398 8.16699H15.1673";
|
|
29695
29768
|
function MenuLinesIcon({ size = 28, color = colors.white, strokeWidth = 2 }) {
|
|
29696
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29697
|
-
|
|
29769
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29770
|
+
Svg23.Path,
|
|
29698
29771
|
{
|
|
29699
29772
|
d: MENU_LINES_PATH,
|
|
29700
29773
|
stroke: color,
|
|
@@ -29708,8 +29781,8 @@ function MenuLinesIcon({ size = 28, color = colors.white, strokeWidth = 2 }) {
|
|
|
29708
29781
|
// src/icons/Minus/minusPath.ts
|
|
29709
29782
|
var MINUS_PATH = "M3.33337 8H12.6667";
|
|
29710
29783
|
function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
29711
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29712
|
-
|
|
29784
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29785
|
+
Svg23.Path,
|
|
29713
29786
|
{
|
|
29714
29787
|
d: MINUS_PATH,
|
|
29715
29788
|
stroke: color,
|
|
@@ -29720,6 +29793,34 @@ function MinusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
|
29720
29793
|
) });
|
|
29721
29794
|
}
|
|
29722
29795
|
|
|
29796
|
+
// src/icons/MoonStars/moonStarsPaths.ts
|
|
29797
|
+
var MOON_STARS_SPARKLE_PATH = "M11.4167 0.75L11.8285 1.57372C12.0055 1.92771 12.094 2.1047 12.2122 2.25808C12.3171 2.39417 12.4392 2.51618 12.5753 2.62109C12.7286 2.73932 12.9056 2.82781 13.2596 3.00481L14.0833 3.41667L13.2596 3.82853C12.9056 4.00552 12.7286 4.09402 12.5753 4.21224C12.4392 4.31715 12.3171 4.43916 12.2122 4.57526C12.094 4.72863 12.0055 4.90563 11.8285 5.25961L11.4167 6.08333L11.0048 5.25961C10.8278 4.90563 10.7393 4.72863 10.6211 4.57526C10.5162 4.43916 10.3942 4.31715 10.2581 4.21224C10.1047 4.09402 9.92771 4.00552 9.57372 3.82853L8.75 3.41667L9.57372 3.00481C9.92771 2.82781 10.1047 2.73932 10.2581 2.62109C10.3942 2.51618 10.5162 2.39417 10.6211 2.25808C10.7393 2.1047 10.8278 1.92771 11.0048 1.57372L11.4167 0.75Z";
|
|
29798
|
+
var MOON_STARS_MOON_PATH = "M13.4167 8.34286C12.5427 9.876 10.893 10.9097 9.00196 10.9097C6.19739 10.9097 3.92383 8.63612 3.92383 5.83155C3.92383 3.94036 4.95766 2.29063 6.491 1.41667C3.26986 1.72208 0.75 4.43461 0.75 7.73569C0.75 11.2414 3.59195 14.0833 7.09766 14.0833C10.3986 14.0833 13.111 11.5637 13.4167 8.34286Z";
|
|
29799
|
+
function MoonStarsIcon({ size = 15, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29800
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg23__default.default, { width: size, height: size, viewBox: "0 0 15 15", fill: "none", children: [
|
|
29801
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29802
|
+
Svg23.Path,
|
|
29803
|
+
{
|
|
29804
|
+
d: MOON_STARS_SPARKLE_PATH,
|
|
29805
|
+
stroke: color,
|
|
29806
|
+
strokeWidth,
|
|
29807
|
+
strokeLinecap: "round",
|
|
29808
|
+
strokeLinejoin: "round"
|
|
29809
|
+
}
|
|
29810
|
+
),
|
|
29811
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29812
|
+
Svg23.Path,
|
|
29813
|
+
{
|
|
29814
|
+
d: MOON_STARS_MOON_PATH,
|
|
29815
|
+
stroke: color,
|
|
29816
|
+
strokeWidth,
|
|
29817
|
+
strokeLinecap: "round",
|
|
29818
|
+
strokeLinejoin: "round"
|
|
29819
|
+
}
|
|
29820
|
+
)
|
|
29821
|
+
] });
|
|
29822
|
+
}
|
|
29823
|
+
|
|
29723
29824
|
// src/icons/MoreHorizontal/moreHorizontalPath.ts
|
|
29724
29825
|
var MORE_HORIZONTAL_PATH = "M6.33333 2.33333C6.70152 2.33333 7 2.03486 7 1.66667C7 1.29848 6.70152 1 6.33333 1C5.96514 1 5.66667 1.29848 5.66667 1.66667C5.66667 2.03486 5.96514 2.33333 6.33333 2.33333ZM11 2.33333C11.3682 2.33333 11.6667 2.03486 11.6667 1.66667C11.6667 1.29848 11.3682 1 11 1C10.6318 1 10.3333 1.29848 10.3333 1.66667C10.3333 2.03486 10.6318 2.33333 11 2.33333ZM1.66667 2.33333C2.03486 2.33333 2.33333 2.03486 2.33333 1.66667C2.33333 1.29848 2.03486 1 1.66667 1C1.29848 1 1 1.29848 1 1.66667C1 2.03486 1.29848 2.33333 1.66667 2.33333Z";
|
|
29725
29826
|
var ASPECT_RATIO = 4 / 13;
|
|
@@ -29728,8 +29829,8 @@ function MoreHorizontalIcon({
|
|
|
29728
29829
|
color = colors.white,
|
|
29729
29830
|
strokeWidth = 2
|
|
29730
29831
|
}) {
|
|
29731
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29732
|
-
|
|
29832
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size * ASPECT_RATIO, viewBox: "0 0 13 4", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29833
|
+
Svg23.Path,
|
|
29733
29834
|
{
|
|
29734
29835
|
d: MORE_HORIZONTAL_PATH,
|
|
29735
29836
|
stroke: color,
|
|
@@ -29743,8 +29844,8 @@ function MoreHorizontalIcon({
|
|
|
29743
29844
|
// src/icons/Navigate/navigatePath.ts
|
|
29744
29845
|
var NAVIGATE_PATH = "M5.691 14.2339C11.5836 17.7694 16.2976 13.0554 15.7084 4.21658C6.86968 3.62732 2.15584 8.34151 5.691 14.2339ZM5.691 14.2339C5.69093 14.2338 5.69107 14.234 5.691 14.2339ZM5.691 14.2339L4.16675 15.7576M5.691 14.2339L8.88079 11.0436";
|
|
29745
29846
|
function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29746
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29747
|
-
|
|
29847
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29848
|
+
Svg23.Path,
|
|
29748
29849
|
{
|
|
29749
29850
|
d: NAVIGATE_PATH,
|
|
29750
29851
|
stroke: color,
|
|
@@ -29758,8 +29859,8 @@ function NavigateIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29758
29859
|
// src/icons/Phone/phonePath.ts
|
|
29759
29860
|
var PHONE_PATH = "M7.91872 3.54768C7.66561 2.91492 7.05276 2.5 6.37126 2.5H4.07895C3.20692 2.5 2.5 3.20675 2.5 4.07878C2.5 11.491 8.50898 17.5 15.9212 17.5C16.7933 17.5 17.5 16.793 17.5 15.921L17.5004 13.6283C17.5004 12.9468 17.0856 12.334 16.4528 12.0809L14.2558 11.2024C13.6874 10.9751 13.0402 11.0774 12.57 11.4693L12.0029 11.9422C11.3407 12.4941 10.3664 12.4502 9.75683 11.8407L8.16018 10.2425C7.55066 9.63302 7.50561 8.65945 8.05745 7.99724L8.53027 7.43025C8.92218 6.95996 9.02541 6.31263 8.79805 5.74424L7.91872 3.54768Z";
|
|
29760
29861
|
function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29761
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29762
|
-
|
|
29862
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29863
|
+
Svg23.Path,
|
|
29763
29864
|
{
|
|
29764
29865
|
d: PHONE_PATH,
|
|
29765
29866
|
stroke: color,
|
|
@@ -29773,8 +29874,8 @@ function PhoneIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29773
29874
|
// src/icons/Plus/plusPath.ts
|
|
29774
29875
|
var PLUS_PATH = "M8.00004 3.33325V12.6666M3.33337 7.99992H12.6667";
|
|
29775
29876
|
function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
29776
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29777
|
-
|
|
29877
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29878
|
+
Svg23.Path,
|
|
29778
29879
|
{
|
|
29779
29880
|
d: PLUS_PATH,
|
|
29780
29881
|
stroke: color,
|
|
@@ -29788,8 +29889,8 @@ function PlusIcon({ size = 16, color = colors.white, strokeWidth = 2 }) {
|
|
|
29788
29889
|
// src/icons/Refresh/refreshPath.ts
|
|
29789
29890
|
var REFRESH_PATH = "M17.4993 8.33333C17.4993 8.33333 15.8285 6.05685 14.4712 4.69854C13.1138 3.34022 11.238 2.5 9.16602 2.5C5.02388 2.5 1.66602 5.85786 1.66602 10C1.66602 14.1421 5.02388 17.5 9.16602 17.5C12.5853 17.5 15.4701 15.2119 16.3729 12.0833M12.4993 8.33333H17.4993V3.33333";
|
|
29790
29891
|
function RefreshIcon({ size = 20, color = colors.white, strokeWidth = 2 }) {
|
|
29791
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29792
|
-
|
|
29892
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29893
|
+
Svg23.Path,
|
|
29793
29894
|
{
|
|
29794
29895
|
d: REFRESH_PATH,
|
|
29795
29896
|
stroke: color,
|
|
@@ -29807,8 +29908,8 @@ function RefundStatusIcon({
|
|
|
29807
29908
|
color = colors.primary,
|
|
29808
29909
|
strokeWidth = 2
|
|
29809
29910
|
}) {
|
|
29810
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29811
|
-
|
|
29911
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29912
|
+
Svg23.Path,
|
|
29812
29913
|
{
|
|
29813
29914
|
d: REFUND_STATUS_PATH,
|
|
29814
29915
|
stroke: color,
|
|
@@ -29827,9 +29928,9 @@ function SearchIcon({
|
|
|
29827
29928
|
color = colors.primary,
|
|
29828
29929
|
strokeWidth = 2
|
|
29829
29930
|
}) {
|
|
29830
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29931
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
|
|
29831
29932
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29832
|
-
|
|
29933
|
+
Svg23.Path,
|
|
29833
29934
|
{
|
|
29834
29935
|
d: SEARCH_CIRCLE_PATH,
|
|
29835
29936
|
stroke: color,
|
|
@@ -29839,7 +29940,7 @@ function SearchIcon({
|
|
|
29839
29940
|
}
|
|
29840
29941
|
),
|
|
29841
29942
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29842
|
-
|
|
29943
|
+
Svg23.Path,
|
|
29843
29944
|
{
|
|
29844
29945
|
d: SEARCH_HANDLE_PATH,
|
|
29845
29946
|
stroke: color,
|
|
@@ -29854,8 +29955,8 @@ function SearchIcon({
|
|
|
29854
29955
|
// src/icons/Settings/settingsPath.ts
|
|
29855
29956
|
var SETTINGS_PATH = "M8.00004 10C9.10461 10 10 9.10457 10 8C10 6.89543 9.10461 6 8.00004 6C6.89547 6 6.00004 6.89543 6.00004 8C6.00004 9.10457 6.89547 10 8.00004 10Z M12.4849 9.81818C12.4042 10.001 12.3801 10.2038 12.4158 10.4004C12.4514 10.597 12.5452 10.7784 12.6849 10.9212L12.7213 10.9576C12.834 11.0702 12.9234 11.2038 12.9844 11.351C13.0454 11.4981 13.0768 11.6559 13.0768 11.8152C13.0768 11.9744 13.0454 12.1322 12.9844 12.2793C12.9234 12.4265 12.834 12.5602 12.7213 12.6727C12.6087 12.7854 12.475 12.8748 12.3278 12.9358C12.1807 12.9968 12.023 13.0282 11.8637 13.0282C11.7044 13.0282 11.5467 12.9968 11.3995 12.9358C11.2524 12.8748 11.1187 12.7854 11.0061 12.6727L10.9697 12.6364C10.8269 12.4966 10.6455 12.4029 10.4489 12.3673C10.2523 12.3316 10.0495 12.3557 9.86671 12.4364C9.68745 12.5132 9.53458 12.6408 9.42689 12.8034C9.31921 12.966 9.26142 13.1565 9.26065 13.3515V13.4545C9.26065 13.776 9.13294 14.0843 8.90562 14.3116C8.67831 14.539 8.37 14.6667 8.04853 14.6667C7.72705 14.6667 7.41874 14.539 7.19143 14.3116C6.96411 14.0843 6.8364 13.776 6.8364 13.4545V13.4C6.83171 13.1994 6.76678 13.0048 6.65005 12.8416C6.53331 12.6784 6.37018 12.5541 6.18186 12.4848C5.99906 12.4042 5.79629 12.3801 5.59968 12.4158C5.40308 12.4514 5.22166 12.5451 5.07883 12.6849L5.04246 12.7212C4.92989 12.8339 4.79621 12.9233 4.64906 12.9843C4.50191 13.0453 4.34418 13.0767 4.18489 13.0767C4.0256 13.0767 3.86787 13.0453 3.72072 12.9843C3.57357 12.9233 3.43989 12.8339 3.32731 12.7212C3.21461 12.6086 3.12521 12.475 3.06421 12.3278C3.00321 12.1807 2.97181 12.0229 2.97181 11.8636C2.97181 11.7043 3.00321 11.5466 3.06421 11.3995C3.12521 11.2523 3.21461 11.1186 3.32731 11.0061L3.36368 10.9697C3.5034 10.8269 3.59712 10.6454 3.63277 10.4488C3.66842 10.2522 3.64435 10.0495 3.56368 9.86667C3.48685 9.68741 3.35929 9.53454 3.19669 9.42686C3.03409 9.31917 2.84355 9.26139 2.64853 9.26061H2.5455C2.22402 9.26061 1.91571 9.1329 1.6884 8.90559C1.46108 8.67827 1.33337 8.36996 1.33337 8.04849C1.33337 7.72701 1.46108 7.4187 1.6884 7.19139C1.91571 6.96407 2.22402 6.83637 2.5455 6.83637H2.60004C2.80064 6.83167 2.9952 6.76674 3.1584 6.65001C3.32161 6.53328 3.44593 6.37014 3.51519 6.18182C3.59587 5.99902 3.61993 5.79625 3.58429 5.59965C3.54864 5.40304 3.45491 5.22163 3.31519 5.07879L3.27883 5.04243C3.16613 4.92985 3.07672 4.79617 3.01573 4.64902C2.95473 4.50187 2.92333 4.34414 2.92333 4.18485C2.92333 4.02556 2.95473 3.86783 3.01573 3.72068C3.07672 3.57353 3.16613 3.43985 3.27883 3.32728C3.3914 3.21458 3.52509 3.12517 3.67223 3.06417C3.81938 3.00317 3.97711 2.97178 4.1364 2.97178C4.2957 2.97178 4.45343 3.00317 4.60057 3.06417C4.74772 3.12517 4.88141 3.21458 4.99398 3.32728L5.03034 3.36364C5.17318 3.50336 5.3546 3.59708 5.5512 3.63273C5.7478 3.66838 5.95058 3.64431 6.13337 3.56364H6.18186C6.36111 3.48681 6.51399 3.35925 6.62167 3.19665C6.72935 3.03405 6.78714 2.84351 6.78792 2.64849V2.54546C6.78792 2.22398 6.91562 1.91567 7.14294 1.68836C7.37026 1.46104 7.67857 1.33334 8.00004 1.33334C8.32151 1.33334 8.62982 1.46104 8.85714 1.68836C9.08446 1.91567 9.21216 2.22398 9.21216 2.54546V2.6C9.21294 2.79502 9.27073 2.98556 9.37841 3.14816C9.48609 3.31076 9.63897 3.43833 9.81822 3.51515C10.001 3.59583 10.2038 3.6199 10.4004 3.58425C10.597 3.5486 10.7784 3.45487 10.9213 3.31515L10.9576 3.27879C11.0702 3.16609 11.2039 3.07669 11.351 3.01569C11.4982 2.95469 11.6559 2.92329 11.8152 2.92329C11.9745 2.92329 12.1322 2.95469 12.2794 3.01569C12.4265 3.07669 12.5602 3.16609 12.6728 3.27879C12.7855 3.39136 12.8749 3.52505 12.9359 3.6722C12.9969 3.81935 13.0283 3.97707 13.0283 4.13637C13.0283 4.29566 12.9969 4.45339 12.9359 4.60054C12.8749 4.74769 12.7855 4.88137 12.6728 4.99394L12.6364 5.03031C12.4967 5.17314 12.403 5.35456 12.3673 5.55116C12.3317 5.74776 12.3557 5.95054 12.4364 6.13334V6.18182C12.5132 6.36107 12.6408 6.51395 12.8034 6.62163C12.966 6.72932 13.1565 6.7871 13.3516 6.78788H13.4546C13.7761 6.78788 14.0844 6.91559 14.3117 7.1429C14.539 7.37022 14.6667 7.67853 14.6667 8C14.6667 8.32148 14.539 8.62978 14.3117 8.8571C14.0844 9.08442 13.7761 9.21212 13.4546 9.21212H13.4C13.205 9.2129 13.0145 9.27069 12.8519 9.37837C12.6893 9.48605 12.5617 9.63893 12.4849 9.81818Z";
|
|
29856
29957
|
function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
29857
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29858
|
-
|
|
29958
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
29959
|
+
Svg23.Path,
|
|
29859
29960
|
{
|
|
29860
29961
|
d: SETTINGS_PATH,
|
|
29861
29962
|
stroke: color,
|
|
@@ -29870,9 +29971,9 @@ function SettingsIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 })
|
|
|
29870
29971
|
var SHOW_PATH = "M1.66669 10C1.66669 10 4.16669 4.16667 10 4.16667C15.8334 4.16667 18.3334 10 18.3334 10C18.3334 10 15.8334 15.8333 10 15.8333C4.16669 15.8333 1.66669 10 1.66669 10Z";
|
|
29871
29972
|
var SHOW_PUPIL_PATH = "M10 12.5C11.3807 12.5 12.5 11.3807 12.5 10C12.5 8.61929 11.3807 7.5 10 7.5C8.61929 7.5 7.5 8.61929 7.5 10C7.5 11.3807 8.61929 12.5 10 12.5Z";
|
|
29872
29973
|
function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29873
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
29974
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: [
|
|
29874
29975
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29875
|
-
|
|
29976
|
+
Svg23.Path,
|
|
29876
29977
|
{
|
|
29877
29978
|
d: SHOW_PATH,
|
|
29878
29979
|
stroke: color,
|
|
@@ -29882,7 +29983,7 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29882
29983
|
}
|
|
29883
29984
|
),
|
|
29884
29985
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29885
|
-
|
|
29986
|
+
Svg23.Path,
|
|
29886
29987
|
{
|
|
29887
29988
|
d: SHOW_PUPIL_PATH,
|
|
29888
29989
|
stroke: color,
|
|
@@ -29897,8 +29998,8 @@ function ShowIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29897
29998
|
// src/icons/Sidebar/sidebarPath.ts
|
|
29898
29999
|
var SIDEBAR_PATH = "M12.5 2.5V17.5M6.5 2.5H13.5C14.9001 2.5 15.6002 2.5 16.135 2.77248C16.6054 3.01217 16.9878 3.39462 17.2275 3.86502C17.5 4.3998 17.5 5.09987 17.5 6.5V13.5C17.5 14.9001 17.5 15.6002 17.2275 16.135C16.9878 16.6054 16.6054 16.9878 16.135 17.2275C15.6002 17.5 14.9001 17.5 13.5 17.5H6.5C5.09987 17.5 4.3998 17.5 3.86502 17.2275C3.39462 16.9878 3.01217 16.6054 2.77248 16.135C2.5 15.6002 2.5 14.9001 2.5 13.5V6.5C2.5 5.09987 2.5 4.3998 2.77248 3.86502C3.01217 3.39462 3.39462 3.01217 3.86502 2.77248C4.3998 2.5 5.09987 2.5 6.5 2.5Z";
|
|
29899
30000
|
function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29900
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29901
|
-
|
|
30001
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30002
|
+
Svg23.Path,
|
|
29902
30003
|
{
|
|
29903
30004
|
d: SIDEBAR_PATH,
|
|
29904
30005
|
stroke: color,
|
|
@@ -29912,8 +30013,8 @@ function SidebarIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29912
30013
|
// src/icons/Sort/sortPath.ts
|
|
29913
30014
|
var SORT_PATH = "M5.83333 3.33301V16.6663M9.16667 13.333L5.83333 16.6663L2.5 13.333M14.1667 16.6663V3.33301M17.5 6.66634L14.1667 3.33301L10.8333 6.66634";
|
|
29914
30015
|
function SortIcon({ size = 20, color = colors.grey300, strokeWidth = 2 }) {
|
|
29915
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29916
|
-
|
|
30016
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30017
|
+
Svg23.Path,
|
|
29917
30018
|
{
|
|
29918
30019
|
d: SORT_PATH,
|
|
29919
30020
|
stroke: color,
|
|
@@ -29934,8 +30035,8 @@ function StarIcon({
|
|
|
29934
30035
|
strokeWidth = 2
|
|
29935
30036
|
}) {
|
|
29936
30037
|
const resolvedColor = color ?? (active ? "#E38E5E" : colors.grey150);
|
|
29937
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29938
|
-
|
|
30038
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30039
|
+
Svg23.Path,
|
|
29939
30040
|
{
|
|
29940
30041
|
d: STAR_PATH,
|
|
29941
30042
|
fill: active ? resolvedColor : "none",
|
|
@@ -29952,8 +30053,8 @@ function StarFilledIcon({
|
|
|
29952
30053
|
color = "#E38E5E",
|
|
29953
30054
|
strokeWidth = 2
|
|
29954
30055
|
}) {
|
|
29955
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29956
|
-
|
|
30056
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: height ?? size * 26 / 28, viewBox: "0 0 28 26", fill: color, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30057
|
+
Svg23.Path,
|
|
29957
30058
|
{
|
|
29958
30059
|
d: STAR_PATH,
|
|
29959
30060
|
fill: color,
|
|
@@ -29968,8 +30069,8 @@ function StarFilledIcon({
|
|
|
29968
30069
|
// src/icons/TableView/tableViewPath.ts
|
|
29969
30070
|
var TABLE_VIEW_PATH = "M1 6L16 6M6 1L6 16M5 1H12C13.4001 1 14.1002 1 14.635 1.27248C15.1054 1.51217 15.4878 1.89462 15.7275 2.36502C16 2.8998 16 3.59987 16 5V12C16 13.4001 16 14.1002 15.7275 14.635C15.4878 15.1054 15.1054 15.4878 14.635 15.7275C14.1002 16 13.4001 16 12 16H5C3.59987 16 2.8998 16 2.36502 15.7275C1.89462 15.4878 1.51217 15.1054 1.27248 14.635C1 14.1002 1 13.4001 1 12V5C1 3.59987 1 2.8998 1.27248 2.36502C1.51217 1.89462 1.89462 1.51217 2.36502 1.27248C2.8998 1 3.59987 1 5 1Z";
|
|
29970
30071
|
function TableViewIcon({ size = 17, color = colors.grey400, strokeWidth = 2 }) {
|
|
29971
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29972
|
-
|
|
30072
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 17 17", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30073
|
+
Svg23.Path,
|
|
29973
30074
|
{
|
|
29974
30075
|
d: TABLE_VIEW_PATH,
|
|
29975
30076
|
stroke: color,
|
|
@@ -29983,8 +30084,8 @@ function TableViewIcon({ size = 17, color = colors.grey400, strokeWidth = 2 }) {
|
|
|
29983
30084
|
// src/icons/User/userPath.ts
|
|
29984
30085
|
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";
|
|
29985
30086
|
function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
29986
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
29987
|
-
|
|
30087
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30088
|
+
Svg23.Path,
|
|
29988
30089
|
{
|
|
29989
30090
|
d: USER_PATH,
|
|
29990
30091
|
stroke: color,
|
|
@@ -29998,7 +30099,7 @@ function UserIcon({ size = 20, color = colors.primary, strokeWidth = 2 }) {
|
|
|
29998
30099
|
// src/icons/UsersAlt/usersAltPath.ts
|
|
29999
30100
|
var USERS_ALT_PATH = "M14.35 14.2566C14.9725 13.7177 15.4718 13.0513 15.814 12.3024C16.1562 11.5536 16.3333 10.7399 16.3333 9.91659C16.3333 8.36949 15.7187 6.88576 14.6248 5.7918C13.5308 4.69783 12.0471 4.08325 10.5 4.08325C8.95289 4.08325 7.46916 4.69783 6.3752 5.7918C5.28124 6.88576 4.66666 8.36949 4.66666 9.91659C4.66665 10.7399 4.84376 11.5536 5.18597 12.3024C5.52818 13.0513 6.02748 13.7177 6.64999 14.2566C5.01682 14.9961 3.6312 16.1904 2.6588 17.6966C1.6864 19.2027 1.16837 20.9571 1.16666 22.7499C1.16666 23.0593 1.28957 23.3561 1.50837 23.5749C1.72716 23.7937 2.0239 23.9166 2.33332 23.9166C2.64274 23.9166 2.93949 23.7937 3.15828 23.5749C3.37707 23.3561 3.49999 23.0593 3.49999 22.7499C3.49999 20.8934 4.23749 19.1129 5.55024 17.8002C6.863 16.4874 8.64347 15.7499 10.5 15.7499C12.3565 15.7499 14.137 16.4874 15.4497 17.8002C16.7625 19.1129 17.5 20.8934 17.5 22.7499C17.5 23.0593 17.6229 23.3561 17.8417 23.5749C18.0605 23.7937 18.3572 23.9166 18.6667 23.9166C18.9761 23.9166 19.2728 23.7937 19.4916 23.5749C19.7104 23.3561 19.8333 23.0593 19.8333 22.7499C19.8316 20.9571 19.3136 19.2027 18.3412 17.6966C17.3688 16.1904 15.9832 14.9961 14.35 14.2566ZM10.5 13.4166C9.80775 13.4166 9.13107 13.2113 8.55549 12.8267C7.97992 12.4421 7.53132 11.8955 7.26641 11.256C7.0015 10.6164 6.93219 9.9127 7.06724 9.23377C7.20229 8.55484 7.53563 7.9312 8.02512 7.44171C8.5146 6.95223 9.13824 6.61889 9.81717 6.48384C10.4961 6.34879 11.1998 6.4181 11.8394 6.68301C12.4789 6.94791 13.0255 7.39652 13.4101 7.97209C13.7947 8.54766 14 9.22435 14 9.91659C14 10.8448 13.6312 11.7351 12.9749 12.3915C12.3185 13.0478 11.4282 13.4166 10.5 13.4166ZM21.8633 13.7899C22.61 12.9491 23.0977 11.9105 23.2678 10.799C23.4378 9.68748 23.2831 8.55051 22.822 7.52492C22.361 6.49933 21.6134 5.62885 20.6692 5.01825C19.725 4.40764 18.6244 4.08295 17.5 4.08325C17.1906 4.08325 16.8938 4.20617 16.675 4.42496C16.4562 4.64375 16.3333 4.9405 16.3333 5.24992C16.3333 5.55934 16.4562 5.85608 16.675 6.07488C16.8938 6.29367 17.1906 6.41659 17.5 6.41659C18.4282 6.41659 19.3185 6.78533 19.9749 7.44171C20.6312 8.09809 21 8.98833 21 9.91659C20.9983 10.5294 20.8358 11.131 20.5287 11.6612C20.2216 12.1915 19.7807 12.6319 19.25 12.9383C19.077 13.038 18.9325 13.1805 18.8304 13.3521C18.7283 13.5237 18.6719 13.7186 18.6667 13.9183C18.6618 14.1163 18.7074 14.3123 18.7993 14.4879C18.8911 14.6634 19.0262 14.8127 19.1917 14.9216L19.6467 15.2249L19.7983 15.3066C21.2046 15.9736 22.391 17.0286 23.2178 18.3473C24.0446 19.666 24.4773 21.1935 24.465 22.7499C24.465 23.0593 24.5879 23.3561 24.8067 23.5749C25.0255 23.7937 25.3222 23.9166 25.6317 23.9166C25.9411 23.9166 26.2378 23.7937 26.4566 23.5749C26.6754 23.3561 26.7983 23.0593 26.7983 22.7499C26.8079 20.9596 26.3594 19.1965 25.4957 17.6283C24.632 16.0601 23.3816 14.7388 21.8633 13.7899Z";
|
|
30000
30101
|
function UsersAltIcon({ size = 28, color = colors.white }) {
|
|
30001
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30102
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 28 28", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: USERS_ALT_PATH, fill: color }) });
|
|
30002
30103
|
}
|
|
30003
30104
|
|
|
30004
30105
|
// src/icons/Video/videoPath.ts
|
|
@@ -30007,8 +30108,8 @@ var VIDEO_PATHS = [
|
|
|
30007
30108
|
"M1.33337 6.53333C1.33337 5.41322 1.33337 4.85317 1.55136 4.42535C1.74311 4.04902 2.04907 3.74306 2.42539 3.55132C2.85322 3.33333 3.41327 3.33333 4.53337 3.33333H8.13337C9.25348 3.33333 9.81353 3.33333 10.2414 3.55132C10.6177 3.74306 10.9236 4.04902 11.1154 4.42535C11.3334 4.85317 11.3334 5.41322 11.3334 6.53333V9.46666C11.3334 10.5868 11.3334 11.1468 11.1154 11.5746C10.9236 11.951 10.6177 12.2569 10.2414 12.4487C9.81353 12.6667 9.25348 12.6667 8.13337 12.6667H4.53337C3.41327 12.6667 2.85322 12.6667 2.42539 12.4487C2.04907 12.2569 1.74311 11.951 1.55136 11.5746C1.33337 11.1468 1.33337 10.5868 1.33337 9.46666V6.53333Z"
|
|
30008
30109
|
];
|
|
30009
30110
|
function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
30010
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30011
|
-
|
|
30111
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: VIDEO_PATHS.map((path) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
30112
|
+
Svg23.Path,
|
|
30012
30113
|
{
|
|
30013
30114
|
d: path,
|
|
30014
30115
|
stroke: color,
|
|
@@ -30023,8 +30124,8 @@ function VideoIcon({ size = 20, color = colors.primary, strokeWidth = 1.5 }) {
|
|
|
30023
30124
|
// src/icons/VideoOff/videoOffPath.ts
|
|
30024
30125
|
var VIDEO_OFF_PATH = "M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22";
|
|
30025
30126
|
function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
30026
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30027
|
-
|
|
30127
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30128
|
+
Svg23.Path,
|
|
30028
30129
|
{
|
|
30029
30130
|
d: VIDEO_OFF_PATH,
|
|
30030
30131
|
stroke: color,
|
|
@@ -30038,8 +30139,8 @@ function VideoOffIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
|
30038
30139
|
// src/icons/ZoomOut/zoomOutPath.ts
|
|
30039
30140
|
var ZOOM_OUT_PATH = "M3 8H3.2C4.88016 8 5.72024 8 6.36197 7.67302C6.92646 7.3854 7.3854 6.92646 7.67302 6.36197C8 5.72024 8 4.88016 8 3.2V3M3 16H3.2C4.88016 16 5.72024 16 6.36197 16.327C6.92646 16.6146 7.3854 17.0735 7.67302 17.638C8 18.2798 8 19.1198 8 20.8V21M16 3V3.2C16 4.88016 16 5.72024 16.327 6.36197C16.6146 6.92646 17.0735 7.3854 17.638 7.67302C18.2798 8 19.1198 8 20.8 8H21M16 21V20.8C16 19.1198 16 18.2798 16.327 17.638C16.6146 17.0735 17.0735 16.6146 17.638 16.327C18.2798 16 19.1198 16 20.8 16H21";
|
|
30040
30141
|
function ZoomOutIcon({ size = 24, color = colors.primary, strokeWidth = 2 }) {
|
|
30041
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30042
|
-
|
|
30142
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30143
|
+
Svg23.Path,
|
|
30043
30144
|
{
|
|
30044
30145
|
d: ZOOM_OUT_PATH,
|
|
30045
30146
|
stroke: color,
|
|
@@ -30072,6 +30173,7 @@ var icons = {
|
|
|
30072
30173
|
chevronLeft: ChevronLeftIcon,
|
|
30073
30174
|
clock: ClockIcon,
|
|
30074
30175
|
close: CloseIcon,
|
|
30176
|
+
cloudUpload: CloudUploadIcon,
|
|
30075
30177
|
edit: EditIcon,
|
|
30076
30178
|
clockFilled: ClockFilledIcon,
|
|
30077
30179
|
copy: CopyIcon,
|
|
@@ -30106,6 +30208,7 @@ var icons = {
|
|
|
30106
30208
|
menu: MenuIcon,
|
|
30107
30209
|
menuLines: MenuLinesIcon,
|
|
30108
30210
|
minus: MinusIcon,
|
|
30211
|
+
moonStars: MoonStarsIcon,
|
|
30109
30212
|
moreHorizontal: MoreHorizontalIcon,
|
|
30110
30213
|
navigate: NavigateIcon,
|
|
30111
30214
|
noSmoking: NoSmokingIcon,
|
|
@@ -30133,6 +30236,12 @@ var icons = {
|
|
|
30133
30236
|
usersAlt: UsersAltIcon,
|
|
30134
30237
|
video: VideoIcon,
|
|
30135
30238
|
videoOff: VideoOffIcon,
|
|
30239
|
+
cutlery: CutleryIcon,
|
|
30240
|
+
dollar: DollarIcon,
|
|
30241
|
+
dragHandle: DragHandleIcon,
|
|
30242
|
+
eye: EyeIcon,
|
|
30243
|
+
image: ImageIcon,
|
|
30244
|
+
infoCircle: InfoCircleIcon,
|
|
30136
30245
|
whatsApp: WhatsAppIcon,
|
|
30137
30246
|
zoomOut: ZoomOutIcon
|
|
30138
30247
|
};
|
|
@@ -30167,11 +30276,13 @@ var iconGroups = {
|
|
|
30167
30276
|
"checkSuccess",
|
|
30168
30277
|
"copy",
|
|
30169
30278
|
"download",
|
|
30279
|
+
"dragHandle",
|
|
30170
30280
|
"search",
|
|
30171
30281
|
"calendar",
|
|
30172
30282
|
"calendarMinus",
|
|
30173
30283
|
"calendarOutline",
|
|
30174
30284
|
"close",
|
|
30285
|
+
"cloudUpload",
|
|
30175
30286
|
"edit",
|
|
30176
30287
|
"ratingStar",
|
|
30177
30288
|
"saveHeart",
|
|
@@ -30184,6 +30295,7 @@ var iconGroups = {
|
|
|
30184
30295
|
"star",
|
|
30185
30296
|
"starFilled",
|
|
30186
30297
|
"minus",
|
|
30298
|
+
"moonStars",
|
|
30187
30299
|
"moreHorizontal",
|
|
30188
30300
|
"plus",
|
|
30189
30301
|
"refresh",
|
|
@@ -30215,12 +30327,17 @@ var iconGroups = {
|
|
|
30215
30327
|
social: ["apple", "facebook", "googlePlay", "instagram", "linkedin"],
|
|
30216
30328
|
interface: [
|
|
30217
30329
|
"areaExpand",
|
|
30330
|
+
"cutlery",
|
|
30331
|
+
"dollar",
|
|
30332
|
+
"eye",
|
|
30218
30333
|
"globe",
|
|
30219
30334
|
"layoutGrid",
|
|
30220
30335
|
"sidebar",
|
|
30221
30336
|
"settings",
|
|
30222
30337
|
"helpCircle",
|
|
30223
30338
|
"logOut",
|
|
30339
|
+
"image",
|
|
30340
|
+
"infoCircle",
|
|
30224
30341
|
"tooltipArrow"
|
|
30225
30342
|
]
|
|
30226
30343
|
};
|
|
@@ -30283,6 +30400,52 @@ var AMENITY_PATHS = {
|
|
|
30283
30400
|
d: "M13.75 5.3335C12.9544 5.3335 12.1905 5.64979 11.6279 6.2124C11.0656 6.77497 10.75 7.53803 10.75 8.3335V11.6685C10.7518 12.2873 10.9448 12.8903 11.3027 13.395C11.6608 13.8999 12.1665 14.2815 12.75 14.4878L13.416 14.7241V10.8335C13.416 10.7453 13.4514 10.6606 13.5137 10.5981C13.5762 10.5356 13.6616 10.5005 13.75 10.5005C13.8383 10.5006 13.9229 10.5357 13.9854 10.5981C14.0477 10.6606 14.083 10.7452 14.083 10.8335V14.7241L14.75 14.4878C15.3333 14.2815 15.8383 13.8997 16.1963 13.395C16.5543 12.8902 16.7482 12.2873 16.75 11.6685V8.3335C16.75 7.53795 16.4336 6.77499 15.8711 6.2124C15.3086 5.64987 14.5455 5.33358 13.75 5.3335ZM7.8291 2.896C7.08436 2.7482 6.31242 2.82426 5.61133 3.11572C4.91011 3.4073 4.31107 3.90128 3.89062 4.53369C3.52286 5.08695 3.30559 5.72481 3.25879 6.38428L3.25 6.6665V10.0015C3.25275 10.8492 3.53644 11.672 4.05664 12.3413C4.57684 13.0106 5.30421 13.4888 6.125 13.7007L6.75 13.8618V10.8335C6.75 10.7451 6.78518 10.6607 6.84766 10.5981C6.91017 10.5356 6.9946 10.5005 7.08301 10.5005C7.17141 10.5005 7.25585 10.5356 7.31836 10.5981C7.38083 10.6607 7.41602 10.7451 7.41602 10.8335V13.8716L8.04199 13.7095C8.81342 13.5095 9.50314 13.0736 10.0156 12.4634L10.1631 12.2876L10.127 12.062C10.1052 11.9268 10.0903 11.7906 10.083 11.6538V8.33447C10.0841 7.59016 10.3115 6.86331 10.7354 6.25146L10.8564 6.07764L10.8154 5.86963C10.6713 5.14369 10.3167 4.47555 9.79688 3.94873L9.79492 3.94678L9.58691 3.75342C9.08624 3.32147 8.48085 3.02537 7.8291 2.896ZM6.75 14.5024L6.33301 14.4321C5.2853 14.255 4.3338 13.713 3.64746 12.9019C3.00409 12.1414 2.63281 11.1901 2.58789 10.1987L2.58301 9.99951V6.67432C2.59783 5.64591 2.96462 4.65276 3.62207 3.86182C4.2795 3.07106 5.18807 2.52918 6.19629 2.32666C7.20464 2.12413 8.2522 2.27381 9.16406 2.74951C10.0758 3.22524 10.7973 3.9991 11.208 4.94189L11.4355 5.4624L11.9229 5.17041C12.4746 4.84014 13.106 4.66604 13.749 4.6665H13.75C14.7223 4.66659 15.6552 5.05317 16.3428 5.74072C17.0303 6.42833 17.416 7.36114 17.416 8.3335V11.6665C17.4162 12.5117 17.1243 13.3311 16.5898 13.9858C16.0554 14.6406 15.3115 15.0911 14.4834 15.2603L14.083 15.3413V17.5005C14.0829 17.5887 14.0478 17.6734 13.9854 17.7358C13.9229 17.7982 13.8383 17.8334 13.75 17.8335C13.6616 17.8335 13.5762 17.7984 13.5137 17.7358C13.4513 17.6734 13.4161 17.5887 13.416 17.5005V15.3442L13.0186 15.2603C12.534 15.1589 12.0747 14.9608 11.6689 14.6772C11.2632 14.3937 10.919 14.0309 10.6572 13.6108L10.3584 13.1313L9.91895 13.4858C9.31479 13.9737 8.59613 14.2993 7.83105 14.4321L7.41602 14.5044V17.5005C7.4159 17.5887 7.38077 17.6734 7.31836 17.7358C7.25587 17.7982 7.17131 17.8335 7.08301 17.8335C6.99471 17.8335 6.91015 17.7982 6.84766 17.7358C6.78525 17.6734 6.75012 17.5887 6.75 17.5005V14.5024Z"
|
|
30284
30401
|
}
|
|
30285
30402
|
],
|
|
30403
|
+
parking: [
|
|
30404
|
+
{
|
|
30405
|
+
d: "M7.20801 4.25H12.209C12.6076 4.25041 12.9969 4.37043 13.3271 4.59375C13.6161 4.78917 13.8487 5.05569 14.002 5.36719L14.0625 5.50293L15.1035 8.10254L15.2295 8.41699H15.835C16.3653 8.41708 16.874 8.62793 17.249 9.00293C17.6239 9.37797 17.835 9.88671 17.835 10.417V12.917C17.8349 13.0052 17.7996 13.0899 17.7373 13.1523C17.6748 13.2149 17.5894 13.25 17.501 13.25H16.168V13.75C16.168 14.2804 15.9571 14.789 15.582 15.1641C15.207 15.5391 14.6984 15.75 14.168 15.75C13.6375 15.75 13.129 15.5391 12.7539 15.1641C12.3788 14.789 12.168 14.2804 12.168 13.75V13.25H7.83496V13.75C7.83496 14.2804 7.62399 14.789 7.24902 15.1641C6.87403 15.5391 6.36528 15.7499 5.83496 15.75C5.3046 15.75 4.79596 15.539 4.4209 15.1641C4.04583 14.789 3.83496 14.2804 3.83496 13.75V13.25H2.50098C2.41269 13.2499 2.32806 13.2148 2.26562 13.1523C2.20319 13.0899 2.16805 13.0053 2.16797 12.917V10.417C2.16797 9.88663 2.37893 9.37799 2.75391 9.00293C3.12898 8.62786 3.63754 8.41699 4.16797 8.41699H4.72754L4.80859 8.01465L5.24121 5.85645C5.33232 5.40241 5.57887 4.99415 5.9375 4.70117C6.29609 4.4083 6.74502 4.24872 7.20801 4.25ZM5.57422 12.4424C5.31569 12.4939 5.078 12.6212 4.8916 12.8076C4.70531 12.994 4.57876 13.2317 4.52734 13.4902C4.47596 13.7488 4.50165 14.0172 4.60254 14.2607C4.70344 14.5042 4.87468 14.712 5.09375 14.8584C5.31302 15.0049 5.57125 15.083 5.83496 15.083C6.18846 15.0829 6.52737 14.9424 6.77734 14.6924C7.02729 14.4424 7.16797 14.1035 7.16797 13.75C7.16797 13.4863 7.08987 13.2281 6.94336 13.0088C6.79686 12.7897 6.58826 12.6194 6.34473 12.5186C6.10109 12.4176 5.83286 12.3909 5.57422 12.4424ZM13.9082 12.4424C13.6496 12.4938 13.4121 12.6212 13.2256 12.8076C13.0391 12.9941 12.9118 13.2316 12.8604 13.4902C12.809 13.7488 12.8356 14.0172 12.9365 14.2607C13.0374 14.504 13.2079 14.712 13.4268 14.8584C13.646 15.0049 13.9043 15.083 14.168 15.083C14.5216 15.083 14.8603 14.9424 15.1104 14.6924C15.3604 14.4423 15.501 14.1036 15.501 13.75C15.501 13.4863 15.4229 13.2281 15.2764 13.0088C15.1299 12.7897 14.9212 12.6194 14.6777 12.5186C14.4343 12.4178 14.1666 12.391 13.9082 12.4424ZM4.16797 9.08301C3.8145 9.08301 3.4756 9.22379 3.22559 9.47363C2.97554 9.72368 2.83496 10.0634 2.83496 10.417V12.583H4.20605L4.35449 12.4199C4.54195 12.2137 4.77052 12.0483 5.02539 11.9355C5.28024 11.8228 5.55629 11.7646 5.83496 11.7646C6.11342 11.7647 6.38888 11.8229 6.64355 11.9355C6.89842 12.0483 7.127 12.2137 7.31445 12.4199L7.46387 12.583H12.5391L12.6875 12.4199C12.8749 12.2137 13.1036 12.0483 13.3584 11.9355C13.6133 11.8228 13.8893 11.7646 14.168 11.7646C14.4467 11.7646 14.7227 11.8228 14.9775 11.9355C15.2323 12.0483 15.461 12.2137 15.6484 12.4199L15.7969 12.583H17.168V10.417C17.168 10.0634 17.0274 9.72368 16.7773 9.47363C16.5274 9.22377 16.1884 9.08309 15.835 9.08301H4.16797ZM7.21777 4.91699C6.90944 4.91315 6.60911 5.01622 6.36816 5.20898C6.12465 5.40387 5.95685 5.67778 5.89453 5.9834V5.98535L5.52734 7.81836L5.4082 8.41699H9.66797V4.91699H7.21777ZM10.335 8.41699H14.5068L14.2324 7.73047L13.4404 5.75586C13.3424 5.51024 13.1733 5.29884 12.9551 5.14941C12.7367 5.00001 12.4784 4.91939 12.2139 4.91699H10.335V8.41699Z",
|
|
30406
|
+
strokeWidth: 1
|
|
30407
|
+
}
|
|
30408
|
+
],
|
|
30409
|
+
heating: [
|
|
30410
|
+
{
|
|
30411
|
+
d: "M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM10 1.667v1.666M10 16.667v1.666M1.667 10h1.666M16.667 10h1.666M4.107 4.107l1.179 1.179M14.714 14.714l1.179 1.179M15.893 4.107l-1.179 1.179M5.286 14.714l-1.179 1.179",
|
|
30412
|
+
rounded: true,
|
|
30413
|
+
strokeWidth: 1.5
|
|
30414
|
+
}
|
|
30415
|
+
],
|
|
30416
|
+
refrigerator: [
|
|
30417
|
+
{
|
|
30418
|
+
d: "M5 1.667h10c.92 0 1.667.746 1.667 1.666v13.334c0 .92-.747 1.666-1.667 1.666H5c-.92 0-1.667-.746-1.667-1.666V3.333c0-.92.747-1.666 1.667-1.666ZM3.333 8.333h13.334M6.667 5v1.667M6.667 10.833v2.5",
|
|
30419
|
+
rounded: true,
|
|
30420
|
+
strokeWidth: 1.5
|
|
30421
|
+
}
|
|
30422
|
+
],
|
|
30423
|
+
tableware: [
|
|
30424
|
+
{
|
|
30425
|
+
d: "M3.92969 3.19043C3.77587 3.70449 3.68914 4.23585 3.6709 4.77148L3.66699 5C3.66699 6.67959 4.33391 8.29081 5.52148 9.47852C6.70917 10.6662 8.32036 11.3339 10 11.334C11.6797 11.334 13.2908 10.6662 14.4785 9.47852C15.592 8.36504 16.2485 6.87976 16.3262 5.31445L16.334 5C16.3355 4.38725 16.2469 3.77748 16.0713 3.19043L15.9639 2.83398H4.03613L3.92969 3.19043ZM3 4.99707C2.99364 4.09726 3.16722 3.20507 3.50977 2.37305C3.52473 2.3384 3.54572 2.30695 3.57129 2.2793L3.63379 2.2334L3.63477 2.23242C3.66071 2.2128 3.68846 2.19529 3.71582 2.17773C3.73328 2.17322 3.75051 2.16811 3.76855 2.16699H16.2109C16.2352 2.17121 16.2589 2.17718 16.2812 2.1875L16.2881 2.19043C16.3098 2.20012 16.3302 2.21246 16.3486 2.22754L16.3604 2.2373L16.373 2.24609L16.4219 2.28223C16.4466 2.30939 16.4678 2.33927 16.4824 2.37305C16.828 3.20487 17.0039 4.09728 17 4.99805V5C16.9992 6.72127 16.3646 8.38235 15.2168 9.66504C14.0691 10.9476 12.4887 11.7618 10.7783 11.9531L10.334 12.0029V17.167H15C15.0884 17.167 15.1738 17.2021 15.2363 17.2646C15.2986 17.3271 15.3339 17.4118 15.334 17.5C15.334 17.5884 15.2988 17.6738 15.2363 17.7363C15.1738 17.7988 15.0884 17.834 15 17.834H5C4.91177 17.8339 4.82709 17.7987 4.76465 17.7363C4.70214 17.6738 4.66699 17.5884 4.66699 17.5C4.66708 17.4117 4.70221 17.3271 4.76465 17.2646C4.82711 17.2022 4.91169 17.167 5 17.167H9.66699V12.0029L9.22266 11.9531C7.51222 11.7619 5.93197 10.9475 4.78418 9.66504C3.63636 8.38235 3.00082 6.72127 3 5V4.99707Z",
|
|
30426
|
+
strokeWidth: 1
|
|
30427
|
+
}
|
|
30428
|
+
],
|
|
30429
|
+
jacuzzi: [
|
|
30430
|
+
{
|
|
30431
|
+
d: "M2.5 10.833h15v1.667a5 5 0 0 1-5 5h-5a5 5 0 0 1-5-5v-1.667ZM5 17.5v.833M15 17.5v.833M6.667 6.667a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM10.833 4.167a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM14.167 7.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z",
|
|
30432
|
+
rounded: true,
|
|
30433
|
+
strokeWidth: 1.5
|
|
30434
|
+
}
|
|
30435
|
+
],
|
|
30436
|
+
fireplace: [
|
|
30437
|
+
{
|
|
30438
|
+
d: "M0.265153 0.0833307C0.00211679 0.242871 0.00183607 0.244488 0.000186827 1.66239C-0.00118169 2.83011 0.00348531 2.93003 0.0652792 3.05135C0.160654 3.23867 0.35723 3.33971 0.626337 3.33971H0.840878V10.4603C0.840878 17.3824 0.842738 17.5846 0.907445 17.7116C0.9465 17.7884 1.03184 17.8749 1.11399 17.9212L1.25396 18H8.97921C16.4951 18 16.708 17.9982 16.8349 17.9333C16.9115 17.8942 16.9979 17.8087 17.0441 17.7264L17.1227 17.5861V10.4629V3.33971H17.3321C17.6141 3.33971 17.7666 3.26156 17.8961 3.05076L18 2.88162V1.61443C18 0.917491 17.9873 0.355126 17.9717 0.364759C17.9562 0.374392 17.9135 0.326544 17.8769 0.258446C17.8395 0.188765 17.7527 0.105163 17.6785 0.067229C17.5496 0.00134559 17.3542 -0.000166143 8.97444 9.63968e-06L0.402251 0.000185423L0.265153 0.0833307ZM0.0146089 1.66977C0.0146089 2.38521 0.0192759 2.67289 0.0249956 2.30909C0.0307153 1.94526 0.0306802 1.3599 0.0249605 1.0083C0.0192408 0.656664 0.0145738 0.954335 0.0146089 1.66977ZM1.05142 1.66977V2.28501H8.98181H16.9122V1.66977V1.05453H8.98181H1.05142V1.66977ZM1.89359 10.1425V16.9453H2.50766H3.12174V15.731C3.12174 14.6081 3.12676 14.5068 3.18831 14.386C3.2834 14.1993 3.4804 14.0976 3.7473 14.0976H3.9598L3.97265 11.7861L3.98552 9.47453L4.07844 9.11832C4.41415 7.83135 5.26849 6.77637 6.49251 6.13729C8.26344 5.21264 10.4745 5.35963 12.0843 6.50897C12.8581 7.06145 13.4911 7.89568 13.7715 8.73248C13.9795 9.35338 13.9746 9.28377 13.9898 11.7861L14.0038 14.0976H14.2137C14.4835 14.0976 14.6586 14.1848 14.7632 14.3712C14.8405 14.509 14.8419 14.5328 14.8419 15.7284V16.9453H15.456H16.07V10.1425V3.33971H8.98181H1.89359V10.1425ZM8.61336 6.5944C8.11652 6.66376 7.9383 6.7004 7.64838 6.79282C6.3112 7.21906 5.3378 8.23632 5.08287 9.4739C5.02335 9.76274 5.01749 9.98254 5.01707 11.9443L5.01662 14.0976H6.03357H7.05052L6.9311 13.8779C6.72214 13.4934 6.64792 13.1882 6.65112 12.7265L6.65396 12.3222L7.00693 11.282C7.20109 10.71 7.3857 10.192 7.41714 10.131C7.483 10.0034 7.70126 9.87883 7.85892 9.87883C8.02458 9.87883 8.21555 9.99509 8.3438 10.174C8.40759 10.263 8.47167 10.3359 8.4862 10.3359C8.50069 10.3359 8.6287 9.94433 8.77064 9.46574C8.91258 8.98715 9.05785 8.53652 9.09347 8.46424C9.16667 8.31573 9.3717 8.19132 9.54325 8.19132C9.69983 8.19132 9.91904 8.31563 9.98385 8.44121C10.079 8.62564 11.2156 11.7832 11.2606 11.9882C11.2839 12.0946 11.3119 12.3635 11.3227 12.5859C11.3494 13.1357 11.2758 13.4325 10.9543 14.0713C10.947 14.0858 11.393 14.0976 11.9455 14.0976H12.9499L12.9388 11.8388C12.9279 9.62356 12.9262 9.57459 12.8491 9.29875C12.4772 7.96867 11.2989 6.94442 9.81647 6.66267C9.5269 6.60762 8.81004 6.56698 8.61336 6.5944ZM9.57834 10.412C9.57834 10.4704 9.18825 11.7184 9.14196 11.8081C9.07733 11.9333 8.85819 12.0585 8.70369 12.0585C8.52567 12.0585 8.35433 11.9494 8.19484 11.7344L8.04381 11.5307L7.87559 12.0143C7.67049 12.6039 7.65 12.7793 7.74825 13.1034C7.99051 13.9025 8.81752 14.3087 9.5222 13.9747C9.75762 13.8631 10.044 13.563 10.168 13.2979C10.2556 13.1106 10.2624 13.0633 10.2597 12.6562L10.2567 12.2167L9.93125 11.3203C9.63537 10.5054 9.57834 10.3586 9.57834 10.412ZM4.17445 16.0488V16.9453H8.98181H13.7892V16.0488V15.1523H8.98181H4.17445V16.0488Z",
|
|
30439
|
+
strokeWidth: 1,
|
|
30440
|
+
transform: "translate(1 1)"
|
|
30441
|
+
}
|
|
30442
|
+
],
|
|
30443
|
+
firePit: [
|
|
30444
|
+
{
|
|
30445
|
+
d: "M8.86523 1.33301C8.92124 1.33358 8.97656 1.3476 9.02539 1.375V1.37598C10.0635 1.96743 10.9266 2.82314 11.5264 3.85645C12.1261 4.8898 12.4408 6.06401 12.4395 7.25879V7.25977C12.4392 7.65228 12.4055 8.04419 12.3369 8.43066L12.0928 9.80566L13.1533 8.89746C13.6854 8.44247 14.1226 7.88697 14.4395 7.2627L14.4404 7.26172C14.4609 7.2212 14.4895 7.18531 14.5244 7.15625C14.5594 7.12714 14.5999 7.10561 14.6436 7.09277C14.6872 7.07994 14.7331 7.07644 14.7783 7.08203C14.8009 7.08484 14.8233 7.08937 14.8447 7.09668L14.9062 7.125C14.941 7.14551 14.9728 7.17043 15.002 7.19824C15.834 8.04782 16.4364 9.09528 16.751 10.2422C17.0665 11.3925 17.0826 12.6044 16.7979 13.7627C16.5131 14.921 15.9369 15.9874 15.124 16.8604C14.3111 17.7332 13.2884 18.3836 12.1533 18.75H12.1523C12.0744 18.7753 11.9899 18.7708 11.915 18.7373H11.9131C10.4762 18.1017 9.29458 17.0005 8.55859 15.6123L7.80273 14.1865L7.62012 15.791C7.53133 16.5733 7.58964 17.3652 7.79199 18.126L7.79492 18.1387L7.79883 18.1504C7.80455 18.1683 7.80954 18.1865 7.8125 18.2051L7.81641 18.2617C7.81594 18.3153 7.80252 18.3677 7.77734 18.415C7.75172 18.4632 7.71515 18.5047 7.66992 18.5352C7.62459 18.5656 7.57191 18.5843 7.51758 18.5898C7.46348 18.5954 7.40877 18.5879 7.3584 18.5674L7.35742 18.5664L6.98535 18.4023C6.13037 17.9956 5.36516 17.4194 4.73828 16.7061C4.02191 15.8909 3.50539 14.9197 3.22949 13.8701C2.95362 12.8204 2.92639 11.7204 3.14941 10.6582C3.37246 9.59609 3.83991 8.60004 4.51465 7.75L4.51855 7.74512C4.95085 7.18488 5.47054 6.69781 6.05762 6.30273L6.07715 6.29004L6.09473 6.27539L6.28613 6.11914L6.29395 6.11328C6.94962 5.55826 7.48589 4.87575 7.87012 4.10742C8.25402 3.33961 8.47841 2.50145 8.5293 1.64453C8.533 1.58832 8.55066 1.53376 8.58105 1.48633C8.61149 1.43887 8.65354 1.39987 8.70312 1.37305C8.75282 1.3462 8.80876 1.33243 8.86523 1.33301ZM8.98535 3.0127C8.62781 4.4159 7.84261 5.67295 6.73828 6.60938C6.73517 6.61182 6.73212 6.61411 6.72949 6.61621C6.72002 6.62377 6.70785 6.63335 6.69531 6.64355C6.66991 6.66424 6.63707 6.69079 6.60547 6.7168C6.57391 6.74276 6.54291 6.76878 6.51953 6.78809C6.50799 6.79762 6.49803 6.80589 6.49121 6.81152C6.48796 6.81421 6.48523 6.81685 6.4834 6.81836C6.48248 6.81912 6.48095 6.81992 6.48047 6.82031V6.82129L6.47754 6.82227C6.47377 6.82542 6.46994 6.82839 6.46582 6.83105L6.45996 6.83496C5.9192 7.19488 5.44087 7.64111 5.04395 8.15527C4.52278 8.80936 4.13704 9.56082 3.9082 10.3652C3.67941 11.1696 3.61207 12.0114 3.71094 12.8418C3.80986 13.6724 4.07294 14.4758 4.48438 15.2041C4.89574 15.9322 5.44727 16.5716 6.10742 17.085L6.94141 17.7324L6.91504 16.6777C6.88283 15.3921 7.20661 14.1224 7.85156 13.0098L7.85254 13.0078C7.88172 12.9571 7.92397 12.915 7.97461 12.8857C8.0253 12.8564 8.08305 12.8408 8.1416 12.8408H8.14258C8.16321 12.8408 8.18386 12.8427 8.2041 12.8467L8.20508 12.8477C8.27326 12.861 8.33602 12.8949 8.38379 12.9453C8.43154 12.9958 8.46213 13.0601 8.47168 13.1289V13.1279C8.50916 13.4154 8.56212 13.7008 8.63086 13.9824L8.63379 13.9941C8.86362 14.8481 9.27148 15.6437 9.8291 16.3301C10.3868 17.0165 11.0822 17.5787 11.8711 17.9785L12.0449 17.6348L12.2773 17.999C13.1666 17.6563 13.9671 17.117 14.6191 16.4219C15.2711 15.7268 15.7578 14.8937 16.043 13.9844C16.3281 13.0751 16.4049 12.1128 16.2666 11.1699C16.1283 10.2269 15.7784 9.32729 15.2441 8.53809L14.8574 7.9668L14.4346 8.51172C13.6785 9.48854 12.6415 10.2104 11.4629 10.5801C11.4001 10.5995 11.3326 10.6006 11.2695 10.582C11.2065 10.5634 11.1505 10.526 11.1084 10.4756C11.0663 10.4251 11.0403 10.3632 11.0332 10.2979C11.0262 10.2331 11.0377 10.1673 11.0674 10.1094C11.6954 8.91816 11.913 7.55284 11.6855 6.22559C11.4581 4.89839 10.7983 3.68363 9.80957 2.76953L9.19336 2.19922L8.98535 3.0127Z",
|
|
30446
|
+
strokeWidth: 1
|
|
30447
|
+
}
|
|
30448
|
+
],
|
|
30286
30449
|
pets: [
|
|
30287
30450
|
{
|
|
30288
30451
|
d: "M12.2491 11.2498C11.3324 9.58317 11.0482 9.1665 9.99907 9.1665C8.94991 9.1665 8.55241 9.79567 7.63574 11.4557C6.85074 12.8748 5.26407 12.9932 4.86824 14.1982C4.78741 14.419 4.74741 14.7623 4.74907 14.9998C4.74907 15.9798 5.40491 16.6665 6.24907 16.6665C7.29824 16.6665 8.74907 15.8332 9.99907 15.8332C11.2491 15.8332 12.6999 16.6665 13.7491 16.6665C14.5932 16.6665 15.2491 15.9807 15.2491 14.9998C15.2491 14.7623 15.2082 14.419 15.1274 14.1982C14.7316 12.989 13.0341 12.669 12.2491 11.2498ZM16.8232 6.73484C16.7161 6.68958 16.601 6.66634 16.4848 6.6665H16.4723C15.8598 6.6765 15.1723 7.2915 14.8115 8.2215C14.379 9.334 14.5782 10.4715 15.2598 10.7648C15.3673 10.8107 15.4823 10.8332 15.5982 10.8332C16.214 10.8332 16.9107 10.2148 17.274 9.27817C17.704 8.16567 17.5007 7.02817 16.8232 6.73484ZM7.89628 7.50016C7.94211 7.50016 7.98711 7.50016 8.03211 7.491C8.81878 7.38433 9.30961 6.36933 9.13211 5.22266C8.96295 4.14183 8.25961 3.3335 7.52211 3.3335C7.47628 3.3335 7.43128 3.3335 7.38628 3.34266C6.59961 3.44933 6.10878 4.46433 6.28628 5.611C6.45628 6.6885 7.15961 7.50016 7.89711 7.50016H7.89628ZM13.7129 5.611C13.8913 4.46433 13.4004 3.44933 12.6129 3.34266C12.5682 3.33647 12.5231 3.33341 12.4779 3.3335C11.7404 3.3335 11.0379 4.14183 10.8696 5.22267C10.6913 6.36933 11.1821 7.38433 11.9696 7.491C12.0146 7.49683 12.0596 7.50016 12.1046 7.50016C12.8421 7.50016 13.5463 6.6885 13.7129 5.611ZM4.74152 10.7648C5.42152 10.4715 5.61985 9.33234 5.18819 8.2215C4.82485 7.28484 4.12902 6.6665 3.51402 6.6665C3.39735 6.6665 3.28319 6.689 3.17485 6.73484C2.49485 7.02817 2.29652 8.16734 2.72819 9.27817C3.09152 10.2148 3.78735 10.8332 4.40235 10.8332C4.51902 10.8332 4.63319 10.8107 4.74152 10.7648Z",
|
|
@@ -30292,20 +30455,55 @@ var AMENITY_PATHS = {
|
|
|
30292
30455
|
]
|
|
30293
30456
|
};
|
|
30294
30457
|
function AmenityIcon({ name, size = 20, color = colors.primary }) {
|
|
30295
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30296
|
-
|
|
30458
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 20 20", fill: "none", children: AMENITY_PATHS[name].map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
30459
|
+
Svg23.Path,
|
|
30297
30460
|
{
|
|
30298
30461
|
d: path.d,
|
|
30299
30462
|
fill: path.fill ? color : "none",
|
|
30300
30463
|
stroke: path.fill ? void 0 : color,
|
|
30301
30464
|
strokeWidth: path.strokeWidth,
|
|
30302
30465
|
strokeLinecap: path.rounded ? "round" : void 0,
|
|
30303
|
-
strokeLinejoin: path.rounded ? "round" : void 0
|
|
30466
|
+
strokeLinejoin: path.rounded ? "round" : void 0,
|
|
30467
|
+
transform: path.transform
|
|
30304
30468
|
},
|
|
30305
30469
|
`${name}-${index}`
|
|
30306
30470
|
)) });
|
|
30307
30471
|
}
|
|
30308
30472
|
|
|
30473
|
+
// src/icons/ArrowLeft/arrowLeftPath.ts
|
|
30474
|
+
var ARROW_LEFT_PATH = "M10.1972 6.59961L4.80078 11.9994L10.1972 17.3996M4.80078 11.9965H19.202";
|
|
30475
|
+
function ArrowLeftIcon({ size = 24, color = colors.white, strokeWidth = 1.35 }) {
|
|
30476
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30477
|
+
Svg23.Path,
|
|
30478
|
+
{
|
|
30479
|
+
d: ARROW_LEFT_PATH,
|
|
30480
|
+
stroke: color,
|
|
30481
|
+
strokeWidth,
|
|
30482
|
+
strokeLinecap: "round",
|
|
30483
|
+
strokeLinejoin: "round"
|
|
30484
|
+
}
|
|
30485
|
+
) });
|
|
30486
|
+
}
|
|
30487
|
+
|
|
30488
|
+
// src/icons/CurrentLocation/currentLocationPath.ts
|
|
30489
|
+
var CURRENT_LOCATION_PATH = "M17.4167 9.08333H14.0833M4.08333 9.08333H0.75M9.08333 4.08333V0.75M9.08333 17.4167V14.0833M15.75 9.08333C15.75 12.7652 12.7652 15.75 9.08333 15.75C5.40144 15.75 2.41667 12.7652 2.41667 9.08333C2.41667 5.40144 5.40144 2.41667 9.08333 2.41667C12.7652 2.41667 15.75 5.40144 15.75 9.08333ZM11.5833 9.08333C11.5833 10.464 10.464 11.5833 9.08333 11.5833C7.70262 11.5833 6.58333 10.464 6.58333 9.08333C6.58333 7.70262 7.70262 6.58333 9.08333 6.58333C10.464 6.58333 11.5833 7.70262 11.5833 9.08333Z";
|
|
30490
|
+
function CurrentLocationIcon({
|
|
30491
|
+
size = 19,
|
|
30492
|
+
color = colors.primary,
|
|
30493
|
+
strokeWidth = 1.5
|
|
30494
|
+
}) {
|
|
30495
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Svg23__default.default, { width: size, height: size, viewBox: "0 0 19 19", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30496
|
+
Svg23.Path,
|
|
30497
|
+
{
|
|
30498
|
+
d: CURRENT_LOCATION_PATH,
|
|
30499
|
+
stroke: color,
|
|
30500
|
+
strokeWidth,
|
|
30501
|
+
strokeLinecap: "round",
|
|
30502
|
+
strokeLinejoin: "round"
|
|
30503
|
+
}
|
|
30504
|
+
) });
|
|
30505
|
+
}
|
|
30506
|
+
|
|
30309
30507
|
// src/utils/mergeRefs.ts
|
|
30310
30508
|
function mergeRefs(internalRef, forwardedRef) {
|
|
30311
30509
|
return (node) => {
|
|
@@ -30834,7 +31032,7 @@ function BrandLogo({
|
|
|
30834
31032
|
const size = resolveBrandLogoSize(width, height);
|
|
30835
31033
|
const fill = BRAND_LOGO_COLORS[variant];
|
|
30836
31034
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30837
|
-
|
|
31035
|
+
Svg23__default.default,
|
|
30838
31036
|
{
|
|
30839
31037
|
width: size.width,
|
|
30840
31038
|
height: size.height,
|
|
@@ -30844,7 +31042,7 @@ function BrandLogo({
|
|
|
30844
31042
|
accessible: true,
|
|
30845
31043
|
accessibilityRole: "image",
|
|
30846
31044
|
accessibilityLabel,
|
|
30847
|
-
children: BRAND_LOGO_PATHS.map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
31045
|
+
children: BRAND_LOGO_PATHS.map((path, index) => /* @__PURE__ */ jsxRuntime.jsx(Svg23.Path, { d: path, fill }, index))
|
|
30848
31046
|
}
|
|
30849
31047
|
);
|
|
30850
31048
|
}
|
|
@@ -32081,7 +32279,7 @@ var styles15 = reactNative.StyleSheet.create({
|
|
|
32081
32279
|
});
|
|
32082
32280
|
var DESKTOP_MIN_WIDTH3 = 1024;
|
|
32083
32281
|
var CHEVRON_SIZE3 = 24;
|
|
32084
|
-
react.forwardRef(function Accordion2({
|
|
32282
|
+
var Accordion = react.forwardRef(function Accordion2({
|
|
32085
32283
|
title,
|
|
32086
32284
|
children,
|
|
32087
32285
|
open: openProp,
|
|
@@ -32422,7 +32620,7 @@ var styles18 = reactNative.StyleSheet.create({
|
|
|
32422
32620
|
flex: 1
|
|
32423
32621
|
}
|
|
32424
32622
|
});
|
|
32425
|
-
react.forwardRef(
|
|
32623
|
+
var QuantityInput = react.forwardRef(
|
|
32426
32624
|
function QuantityInput2({
|
|
32427
32625
|
label,
|
|
32428
32626
|
icon: Icon2,
|
|
@@ -35188,7 +35386,7 @@ var MENU_MAX_HEIGHT = 248;
|
|
|
35188
35386
|
var BLUR_CLOSE_DELAY_MS = 120;
|
|
35189
35387
|
var AUTOCOMPLETE_ROOT_Z_INDEX = 1100;
|
|
35190
35388
|
var AUTOCOMPLETE_MENU_Z_INDEX = 1101;
|
|
35191
|
-
react.forwardRef(
|
|
35389
|
+
var AutocompleteInput = react.forwardRef(
|
|
35192
35390
|
function AutocompleteInput2({
|
|
35193
35391
|
value,
|
|
35194
35392
|
options,
|
|
@@ -37657,6 +37855,93 @@ var styles39 = reactNative.StyleSheet.create({
|
|
|
37657
37855
|
color: colors.white
|
|
37658
37856
|
}
|
|
37659
37857
|
});
|
|
37858
|
+
var CONTROL_SIZE = 16;
|
|
37859
|
+
var DOT_SIZE = 8;
|
|
37860
|
+
var RadioButton = react.forwardRef(
|
|
37861
|
+
function RadioButton2({
|
|
37862
|
+
value,
|
|
37863
|
+
defaultValue = false,
|
|
37864
|
+
onValueChange,
|
|
37865
|
+
disabled = false,
|
|
37866
|
+
variant: _variant = "default",
|
|
37867
|
+
label,
|
|
37868
|
+
children,
|
|
37869
|
+
style,
|
|
37870
|
+
labelStyle,
|
|
37871
|
+
className,
|
|
37872
|
+
hitSlop = 8,
|
|
37873
|
+
accessibilityLabel,
|
|
37874
|
+
...rest
|
|
37875
|
+
}, forwardedRef) {
|
|
37876
|
+
const containerRef = react.useRef(null);
|
|
37877
|
+
const isControlled = typeof value === "boolean";
|
|
37878
|
+
const [uncontrolledValue, setUncontrolledValue] = react.useState(defaultValue);
|
|
37879
|
+
const isActive = isControlled ? value : uncontrolledValue;
|
|
37880
|
+
const labelContent = children ?? label;
|
|
37881
|
+
const resolvedAccessibilityLabel = accessibilityLabel ?? (typeof labelContent === "string" ? labelContent : void 0);
|
|
37882
|
+
const setContainerRef = react.useMemo(() => mergeRefs(containerRef, forwardedRef), [forwardedRef]);
|
|
37883
|
+
useApplyWebClassName(containerRef, className);
|
|
37884
|
+
const handlePress = () => {
|
|
37885
|
+
if (disabled || isActive) return;
|
|
37886
|
+
if (!isControlled) setUncontrolledValue(true);
|
|
37887
|
+
onValueChange?.(true);
|
|
37888
|
+
};
|
|
37889
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
37890
|
+
reactNative.Pressable,
|
|
37891
|
+
{
|
|
37892
|
+
...rest,
|
|
37893
|
+
ref: setContainerRef,
|
|
37894
|
+
onPress: handlePress,
|
|
37895
|
+
disabled,
|
|
37896
|
+
hitSlop,
|
|
37897
|
+
accessibilityRole: "radio",
|
|
37898
|
+
accessibilityLabel: resolvedAccessibilityLabel,
|
|
37899
|
+
accessibilityState: { selected: isActive, disabled },
|
|
37900
|
+
style: [styles40.root, disabled && styles40.disabled, style],
|
|
37901
|
+
children: [
|
|
37902
|
+
/* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles40.control, children: isActive ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: styles40.dot }) : null }),
|
|
37903
|
+
labelContent != null && labelContent !== false ? typeof labelContent === "string" || typeof labelContent === "number" ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: [styles40.label, labelStyle], children: labelContent }) : labelContent : null
|
|
37904
|
+
]
|
|
37905
|
+
}
|
|
37906
|
+
);
|
|
37907
|
+
}
|
|
37908
|
+
);
|
|
37909
|
+
var styles40 = reactNative.StyleSheet.create({
|
|
37910
|
+
root: {
|
|
37911
|
+
flexDirection: "row",
|
|
37912
|
+
alignItems: "center",
|
|
37913
|
+
alignSelf: "flex-start",
|
|
37914
|
+
gap: 6
|
|
37915
|
+
},
|
|
37916
|
+
disabled: {
|
|
37917
|
+
opacity: 0.5
|
|
37918
|
+
},
|
|
37919
|
+
control: {
|
|
37920
|
+
width: CONTROL_SIZE,
|
|
37921
|
+
height: CONTROL_SIZE,
|
|
37922
|
+
borderRadius: 20,
|
|
37923
|
+
borderWidth: 1,
|
|
37924
|
+
borderColor: colors.grey700,
|
|
37925
|
+
backgroundColor: colors.dark,
|
|
37926
|
+
alignItems: "center",
|
|
37927
|
+
justifyContent: "center",
|
|
37928
|
+
flexShrink: 0
|
|
37929
|
+
},
|
|
37930
|
+
dot: {
|
|
37931
|
+
width: DOT_SIZE,
|
|
37932
|
+
height: DOT_SIZE,
|
|
37933
|
+
borderRadius: 43,
|
|
37934
|
+
backgroundColor: colors.primary
|
|
37935
|
+
},
|
|
37936
|
+
label: {
|
|
37937
|
+
flexShrink: 1,
|
|
37938
|
+
textAlign: "center",
|
|
37939
|
+
fontFamily: fonts.sans,
|
|
37940
|
+
fontSize: 12,
|
|
37941
|
+
fontWeight: "400",
|
|
37942
|
+
color: colors.white
|
|
37943
|
+
}
|
|
37944
|
+
});
|
|
37660
37945
|
|
|
37661
37946
|
// src/utils/popoverAlign.ts
|
|
37662
37947
|
function fitsCenter(triggerRect, panelWidth, viewportWidth, padding) {
|
|
@@ -37763,6 +38048,7 @@ react-dom/cjs/react-dom.development.js:
|
|
|
37763
38048
|
*)
|
|
37764
38049
|
*/
|
|
37765
38050
|
|
|
38051
|
+
exports.Accordion = Accordion;
|
|
37766
38052
|
exports.AccordionItem = AccordionItem;
|
|
37767
38053
|
exports.AccountHeader = AccountHeader;
|
|
37768
38054
|
exports.AlertTriangleIcon = AlertTriangleIcon;
|
|
@@ -37770,7 +38056,9 @@ exports.Amenity = Amenity;
|
|
|
37770
38056
|
exports.AmenityIcon = AmenityIcon;
|
|
37771
38057
|
exports.AppleIcon = AppleIcon;
|
|
37772
38058
|
exports.AreaExpandIcon = AreaExpandIcon;
|
|
38059
|
+
exports.ArrowLeftIcon = ArrowLeftIcon;
|
|
37773
38060
|
exports.ArrowRightIcon = ArrowRightIcon;
|
|
38061
|
+
exports.AutocompleteInput = AutocompleteInput;
|
|
37774
38062
|
exports.Avatar = Avatar;
|
|
37775
38063
|
exports.AvatarSimple = AvatarSimple;
|
|
37776
38064
|
exports.BRAND_LOGO_COLORS = BRAND_LOGO_COLORS;
|
|
@@ -37800,14 +38088,20 @@ exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
|
37800
38088
|
exports.ClockFilledIcon = ClockFilledIcon;
|
|
37801
38089
|
exports.ClockIcon = ClockIcon;
|
|
37802
38090
|
exports.CloseIcon = CloseIcon;
|
|
38091
|
+
exports.CloudUploadIcon = CloudUploadIcon;
|
|
37803
38092
|
exports.CommentCard = CommentCard;
|
|
37804
38093
|
exports.ContactInfoCard = ContactInfoCard;
|
|
37805
38094
|
exports.CopyIcon = CopyIcon;
|
|
37806
38095
|
exports.Counter = Counter;
|
|
38096
|
+
exports.CurrentLocationIcon = CurrentLocationIcon;
|
|
38097
|
+
exports.CutleryIcon = CutleryIcon;
|
|
37807
38098
|
exports.DatePicker = DatePicker;
|
|
38099
|
+
exports.DollarIcon = DollarIcon;
|
|
37808
38100
|
exports.DownloadIcon = DownloadIcon;
|
|
38101
|
+
exports.DragHandleIcon = DragHandleIcon;
|
|
37809
38102
|
exports.Drawer = Drawer;
|
|
37810
38103
|
exports.EditIcon = EditIcon;
|
|
38104
|
+
exports.EyeIcon = EyeIcon;
|
|
37811
38105
|
exports.FacebookIcon = FacebookIcon;
|
|
37812
38106
|
exports.FavoritesButton = FavoritesButton;
|
|
37813
38107
|
exports.FiltersIcon = FiltersIcon;
|
|
@@ -37823,7 +38117,9 @@ exports.HideIcon = HideIcon;
|
|
|
37823
38117
|
exports.HomeIcon = HomeIcon;
|
|
37824
38118
|
exports.Icon = Icon;
|
|
37825
38119
|
exports.IconStatusBadge = IconStatusBadge;
|
|
38120
|
+
exports.ImageIcon = ImageIcon;
|
|
37826
38121
|
exports.InfoCardV2 = InfoCardV2;
|
|
38122
|
+
exports.InfoCircleIcon = InfoCircleIcon;
|
|
37827
38123
|
exports.InfoTile = InfoTile;
|
|
37828
38124
|
exports.Input = Input;
|
|
37829
38125
|
exports.InstagramIcon = InstagramIcon;
|
|
@@ -37845,6 +38141,7 @@ exports.MenuItem = MenuItem;
|
|
|
37845
38141
|
exports.MenuLinesIcon = MenuLinesIcon;
|
|
37846
38142
|
exports.MinusIcon = MinusIcon;
|
|
37847
38143
|
exports.Modal = Modal;
|
|
38144
|
+
exports.MoonStarsIcon = MoonStarsIcon;
|
|
37848
38145
|
exports.MoreHorizontalIcon = MoreHorizontalIcon;
|
|
37849
38146
|
exports.NavigateIcon = NavigateIcon;
|
|
37850
38147
|
exports.NoSmokingIcon = NoSmokingIcon;
|
|
@@ -37853,7 +38150,9 @@ exports.PawIcon = PawIcon;
|
|
|
37853
38150
|
exports.PhoneIcon = PhoneIcon;
|
|
37854
38151
|
exports.PlusIcon = PlusIcon;
|
|
37855
38152
|
exports.QrCodeIcon = QrCodeIcon;
|
|
38153
|
+
exports.QuantityInput = QuantityInput;
|
|
37856
38154
|
exports.QuietHoursIcon = QuietHoursIcon;
|
|
38155
|
+
exports.RadioButton = RadioButton;
|
|
37857
38156
|
exports.Range = Range;
|
|
37858
38157
|
exports.RatingInput = RatingInput;
|
|
37859
38158
|
exports.RatingStarIcon = RatingStarIcon;
|