@televet/kibble-ui 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js CHANGED
@@ -67,1263 +67,1484 @@ function __rest(s, e) {
67
67
  return t;
68
68
  }
69
69
 
70
- var useTheme = function () { return react.useTheme(); };
71
-
72
- var MAX_COUNT = 99;
73
- var notificationCounterSizes = {
74
- xs: '8px',
75
- sm: '16px',
76
- md: '20px',
77
- lg: '24px',
78
- };
79
- var notificationCounterFontSizes = {
80
- xs: '8px',
81
- sm: '10px',
82
- md: '12px',
83
- lg: '14px',
84
- };
85
- var maxNotificationCounterSizes = {
86
- xs: '1px',
87
- sm: '2px',
88
- md: '3px',
89
- lg: '4px',
70
+ var paddingRightBySize = {
71
+ sm: 0,
72
+ md: '2px',
73
+ lg: 1,
90
74
  };
91
- var NotificationCounter = function (_a) {
92
- var count = _a.count, _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.showCount, showCount = _c === void 0 ? true : _c, rest = __rest(_a, ["count", "size", "showCount"]);
93
- var theme = useTheme();
94
- var _showCount = size === 'xs' ? false : showCount; // By default the xs size doesn't show a label
95
- if (count < 1) {
96
- return React__default["default"].createElement(React__default["default"].Fragment, null);
97
- }
98
- var counterContent = count > MAX_COUNT ? (React__default["default"].createElement(react.Box, { backgroundColor: theme.colors.white, borderRadius: theme.radii.full, height: maxNotificationCounterSizes[size], width: maxNotificationCounterSizes[size] })) : (count);
99
- return (React__default["default"].createElement(react.Flex, __assign({}, rest, { alignItems: "center", backgroundColor: theme.colors.red[500], border: theme.borders['1px'], borderColor: theme.colors.white, borderRadius: theme.radii.full, color: theme.colors.white, fontSize: notificationCounterFontSizes[size], fontWeight: theme.fontWeights.semibold, height: notificationCounterSizes[size], justifyContent: "center", width: notificationCounterSizes[size] }), _showCount && counterContent));
75
+ var Tag = function (_a) {
76
+ var leftElement = _a.leftElement, rightElement = _a.rightElement, label = _a.label, _b = _a.showCloseButton, showCloseButton = _b === void 0 ? false : _b, onClose = _a.onClose, _c = _a.size, size = _c === void 0 ? 'md' : _c, rest = __rest(_a, ["leftElement", "rightElement", "label", "showCloseButton", "onClose", "size"]);
77
+ var labelStyle = __assign(__assign({}, (!!leftElement && { ml: 1 })), (!!rightElement && { mr: 1 }));
78
+ console.log(paddingRightBySize[size]);
79
+ return (React__default["default"].createElement(react.Tag, __assign({}, rest, { size: size }, (showCloseButton && { pr: paddingRightBySize[size] })),
80
+ leftElement,
81
+ React__default["default"].createElement(react.TagLabel, __assign({}, labelStyle), label),
82
+ rightElement,
83
+ showCloseButton && !!onClose && React__default["default"].createElement(react.TagCloseButton, { onClick: onClose })));
100
84
  };
101
85
 
102
- const SvgAlertCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
103
- React__namespace.createElement("path", { d: "M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Zm.9 12.6a.9.9 0 1 1-1.8 0 .9.9 0 0 1 1.8 0Zm0-3.15a.9.9 0 1 1-1.8 0V8.4a.9.9 0 1 1 1.8 0v4.05Z", fill: color })));
104
- const ForwardRef$2x = React.forwardRef(SvgAlertCircle);
105
-
106
- const SvgAnimalBird = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
107
- React__namespace.createElement("path", { d: "M20.217 3a.782.782 0 0 0-.17.018c-2.389.07-6.78 1.674-7.36 1.913-.882.363-1.154 1.095-1.323 1.365-.672 1.069-.958 1.614-1.131 1.48-.199-.156-.743-.616-1.147-.764-.403-.147-.688-.054-.993.043-.315-.197-1.313-.275-1.313-.275s.078.998.275 1.313c-.096.305-.19.588-.043.992.146.404.608.95.763 1.148.134.173-.41.459-1.48 1.13-.27.17-1 .44-1.365 1.323-.239.58-1.843 4.976-1.912 7.365a.783.783 0 0 0 .818.946c.658.003 2.814.078 4.034-1.064 1.324-1.24 1.136-4.155 2.956-5.975.685 0 1.176.596 1.612 1.371.282.501.736 1.758.736 3.323a.783.783 0 0 0 .876.777c1.548-.074 3.428-1.95 3.428-1.95s1.864-1.868 1.95-3.414a.786.786 0 0 0 .007-.1v-.008a.783.783 0 0 0-.783-.783c-1.565 0-2.822-.454-3.323-.735-.776-.436-1.371-.927-1.371-1.613 1.82-1.82 4.737-1.632 5.977-2.956C21.07 6.657 21 4.523 20.997 3.85a.782.782 0 0 0-.78-.851Z", fill: color })));
108
- const ForwardRef$2w = React.forwardRef(SvgAnimalBird);
109
-
110
- const SvgAnimalCat = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
111
- React__namespace.createElement("path", { d: "M18.346 9.555c.29-.908.573-2.172.653-3.79a.73.73 0 0 0-.889-.746c-1.413.33-2.458.816-3.21 1.285A7.25 7.25 0 0 0 12 5.7a7.25 7.25 0 0 0-2.9.604c-.753-.469-1.797-.954-3.21-1.285a.73.73 0 0 0-.89.746c.081 1.618.363 2.882.655 3.79A6.343 6.343 0 0 0 5 12.35C5 16.023 9.2 19 12 19s7-2.977 7-6.65c0-1-.239-1.944-.654-2.795Zm-7.973 3.006c-.177.068-.45.14-.818.14-1.364 0-1.679-1.088-1.75-1.59a.347.347 0 0 1 .223-.373c.177-.067.45-.138.818-.138 1.363 0 1.678 1.087 1.75 1.589a.343.343 0 0 1-.223.372Zm2.934 2.128c-.324.335-.827.62-1.105.762a.443.443 0 0 1-.403 0c-.278-.143-.782-.428-1.105-.762-.222-.23-.022-.59.315-.59h1.982c.337 0 .537.36.315.59h.001Zm1.138-1.99c-.368 0-.64-.07-.818-.14a.344.344 0 0 1-.224-.37c.072-.502.387-1.59 1.75-1.59.369 0 .642.07.819.14.155.06.246.21.224.373-.072.501-.387 1.588-1.75 1.588h-.001Z", fill: color })));
112
- const ForwardRef$2v = React.forwardRef(SvgAnimalCat);
113
-
114
- const SvgAnimalCow = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
115
- React__namespace.createElement("path", { d: "M16.313 5c-.4 1.155.26 2 .31 2.103.195.295.258.445.498.838.49.8-.48 1.412-.918.64-1.051-1.851-1.16-2.317-2.351-2.317-.385 0-2.736.382-4.445.382-2.41 0-3.703-.382-5.185-.382-.834 0-1.481.806-1.481 1.526v3.816a.752.752 0 0 0-.741.763c0 .986.74 1.526.74 1.526s.741-.516.741-1.526V9.336c.37.897.741 2.042.741 3.033 0 2.072-.74 2.635-.74 3.288v3.58c0 .421.331.763.74.763h.741c0-1.961.301-3.3.68-4.216.33.261.724.4 1.143.4.92 0 1.684-.684 1.846-1.584.918.4 2.098.821 2.998.821h1.564c.38 0 .704.284.766.67l.53 3.271c.06.369.368.638.73.638h.854s-.156-2.407-.265-4.275c-.059-1.008 1.396-.813 1.752-1.86.448-1.312.735-3.022 1.476-3.022h1.923c.441 0 1.04-1.14 1.04-1.527 0-.386-.887-1.478-1.198-1.799-.185-.19-.67-1.418-1.186-1.418-.274 0-1.298.172-1.689.32-.257.098.038-1.433-1.614-1.419ZM11.63 16.566v2.47c0 .532.419.964.936.964h.516l.17-1.316-.342-2.118h-1.28Zm-3.658.504a2.878 2.878 0 0 1-1.638.225c-.017.074-.028.156-.043.232l.35 1.75c.085.42.444.723.861.723h.887c-.13-.546-.369-1.7-.417-2.93Z", fill: color })));
116
- const ForwardRef$2u = React.forwardRef(SvgAnimalCow);
117
-
118
- const SvgAnimalDog = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
119
- React__namespace.createElement("path", { d: "M14.4 3v2.429L12.842 8.58c-.271.55-.826.895-1.431.895H6.72L5.359 8.101a.766.766 0 0 0-1.119 0 .787.787 0 0 0 0 1.132L5.6 10.61v2.914l-.693 1.4a1.65 1.65 0 0 0-.148.46l-.586 3.561A.902.902 0 0 0 5.056 20a.9.9 0 0 0 .881-.738l.462-2.5 1.6-1.62h5.246l1.625 4.305a.852.852 0 0 0 .794.553.858.858 0 0 0 .817-1.097l-.881-3.1v-.66l1.031-2.087c.111-.224.169-.473.169-.724V8.667h.606c.637 0 1.247-.256 1.697-.712L20 7.048V5.833a.403.403 0 0 0-.4-.404h-1.2l-.566-.573a.793.793 0 0 0-.565-.237h-.87l-.72-.97A1.586 1.586 0 0 0 14.4 3Z", fill: color })));
120
- const ForwardRef$2t = React.forwardRef(SvgAnimalDog);
121
-
122
- const SvgAnimalHorse = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
123
- React__namespace.createElement("path", { d: "M17.435 3c-3.343 0-4.448 3.664-4.677 4.627-.247.08-.749.204-1.48.204-.515 0-.9-.083-1.354-.18-.528-.115-1.139-.253-2.018-.253-1.872 0-2.947 1.102-2.947 3.024 0 .721.721 2.516.915 2.988l-.188 1.71a.45.45 0 0 0 .013.145l1.003 4.024c.132.441.502.711.965.711h.928a.42.42 0 0 0 .326-.145.385.385 0 0 0 .076-.337l-.916-3.964a9.075 9.075 0 0 0 1.317-2.024c.505.223 1.44.53 2.834.53.69 0 1.427-.072 2.194-.217l.777 5.169a.983.983 0 0 0 .978.952H16.871c.23 0 .414-.176.414-.398a.389.389 0 0 0-.013-.096c-.028-.708-.218-5.52-.338-6.687.77-1.025.818-2.418.852-3.542.011-.342.022-.727.063-1.036.49.446 1.216.596 1.78.494.424-.077.997.176 1.166.265a.418.418 0 0 0 .49-.06l.438-.434a.958.958 0 0 0 .063-1.277l-1.893-2.097.576-.698a.401.401 0 0 0 .088-.338.404.404 0 0 0-.213-.277C19.3 3.262 18.324 3 17.435 3ZM4.645 8.373C3.468 8.914 2 10.29 2 13.747c0 .169.11.316.276.373l2.119.735a.513.513 0 0 0 .15.024c.093 0 .176-.039.251-.096a.385.385 0 0 0 .15-.217l.013-.096c0-.015.002-.033 0-.048-.058-.473-.09-.961-.1-1.434-.33-.869-.702-1.95-.702-2.566 0-.794.18-1.48.489-2.049Zm13.705 3.17a4.61 4.61 0 0 1-.589 1.433c.019.229.03.524.05.855l.778.253-.339 1.928a1.12 1.12 0 0 0 .74 1.301l.476.193a.44.44 0 0 0 .163.036c.065 0 .129-.02.188-.048a.4.4 0 0 0 .214-.265L20.833 14c.176-.672-.141-1.354-.74-1.614l-1.743-.844Zm-8.563 2.963c-.3.526-.602.941-.84 1.241l.764 3.277c.218.154.474.253.74.253l.69.036h.025a.424.424 0 0 0 .426-.41.386.386 0 0 0-.063-.204l-1.14-3.048.651-.904a8.068 8.068 0 0 1-1.253-.241Z", fill: color })));
124
- const ForwardRef$2s = React.forwardRef(SvgAnimalHorse);
125
-
126
- const SvgArrowCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
127
- React__namespace.createElement("path", { d: "M12 3c-4.962 0-9 4.038-9 9s4.038 9 9 9 9-4.038 9-9h-1.8c0 3.97-3.23 7.2-7.2 7.2S4.8 15.97 4.8 12 8.03 4.8 12 4.8c1.986 0 3.783.81 5.085 2.115L14.7 9.3H21V3l-2.646 2.646A8.949 8.949 0 0 0 12 3Z", fill: color })));
128
- const ForwardRef$2r = React.forwardRef(SvgArrowCircle);
129
-
130
- const SvgArrowDownRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
131
- React__namespace.createElement("path", { d: "M15.719 20.33a.97.97 0 0 0 1.36 0l3.269-3.217a.9.9 0 0 0 0-1.284l-3.269-3.218a.97.97 0 1 0-1.36 1.382l1.539 1.516H8.865c-2.17 0-3.91-1.713-3.91-3.85V3.979a.978.978 0 0 0-1.955 0v7.682c0 3.177 2.638 5.773 5.865 5.773h8.393l-1.54 1.515a.97.97 0 0 0 0 1.382Z", fill: color })));
132
- const ForwardRef$2q = React.forwardRef(SvgArrowDownRight);
133
-
134
- const SvgArrowDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
135
- React__namespace.createElement("path", { d: "M3.287 13.645a.963.963 0 1 1 1.362-1.362l6.387 6.387V3.004a.964.964 0 0 1 1.928 0V18.67l6.387-6.387a.964.964 0 1 1 1.362 1.362l-8.032 8.032a.964.964 0 0 1-1.362 0l-8.032-8.032Z", fill: color })));
136
- const ForwardRef$2p = React.forwardRef(SvgArrowDown);
137
-
138
- const SvgArrowLeft = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
139
- React__namespace.createElement("path", { d: "M10.395 3.267a.965.965 0 1 1 1.363 1.362L5.37 11.016h15.666a.964.964 0 0 1 0 1.928H5.37l6.388 6.387a.963.963 0 1 1-1.363 1.362l-8.032-8.032a.964.964 0 0 1 0-1.362l8.032-8.032Z", fill: color })));
140
- const ForwardRef$2o = React.forwardRef(SvgArrowLeft);
141
-
142
- const SvgArrowRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
143
- React__namespace.createElement("path", { d: "M13.605 20.733a.965.965 0 0 1-1.67-.674.963.963 0 0 1 .307-.688l6.388-6.387H2.964a.964.964 0 0 1 0-1.928H18.63L12.243 4.67a.964.964 0 1 1 1.362-1.362l8.032 8.032a.964.964 0 0 1 0 1.362l-8.032 8.032Z", fill: color })));
144
- const ForwardRef$2n = React.forwardRef(SvgArrowRight);
145
-
146
- const SvgArrowUp = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
147
- React__namespace.createElement("path", { d: "M20.713 10.355a.963.963 0 0 1-.674 1.668.964.964 0 0 1-.688-.306L12.964 5.33v15.665a.964.964 0 1 1-1.928 0V5.33L4.65 11.717a.964.964 0 1 1-1.362-1.362l8.032-8.033a.964.964 0 0 1 1.362 0l8.032 8.033Z", fill: color })));
148
- const ForwardRef$2m = React.forwardRef(SvgArrowUp);
149
-
150
- const SvgArrowsIn = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
151
- React__namespace.createElement("path", { d: "M13.159 4.044a.966.966 0 0 0-.063.379v5.359a.964.964 0 0 0 .963.963h5.359a.964.964 0 1 0 0-1.926h-3.033l5.078-5.078a.964.964 0 1 0-1.364-1.363l-5.077 5.078V4.423a.962.962 0 0 0-1.657-.704.965.965 0 0 0-.206.325ZM10.682 19.797a.964.964 0 0 0 .063-.379V14.06a.964.964 0 0 0-.963-.963h-5.36a.964.964 0 1 0 0 1.926h3.033L2.378 20.1a.964.964 0 0 0 1.363 1.363l5.078-5.078v3.033a.964.964 0 0 0 1.863.38Z", fill: color })));
152
- const ForwardRef$2l = React.forwardRef(SvgArrowsIn);
153
-
154
- const SvgArrowsOut = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
155
- React__namespace.createElement("path", { d: "M21.682 8.797a.964.964 0 0 0 .063-.379V3.06a.964.964 0 0 0-.963-.963h-5.36a.964.964 0 1 0 0 1.926h3.034L13.378 9.1a.964.964 0 1 0 1.363 1.363l5.078-5.078v3.033a.964.964 0 0 0 1.863.38ZM2.16 15.044a.964.964 0 0 0-.064.379v5.359a.964.964 0 0 0 .963.963h5.36a.964.964 0 1 0 0-1.926H5.384l5.078-5.078A.964.964 0 1 0 9.1 13.378l-5.078 5.078v-3.033a.964.964 0 0 0-1.863-.38Z", fill: color })));
156
- const ForwardRef$2k = React.forwardRef(SvgArrowsOut);
157
-
158
- const SvgArticle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
159
- React__namespace.createElement("path", { d: "M8.5 20v1a1 1 0 0 0 1 1H17a5 5 0 0 0 5-5V8a1 1 0 0 0-1-1h-4v2h3v8a3 3 0 0 1-3 3H8.5Z", fill: color }),
160
- React__namespace.createElement("path", { d: "M15.5 21v-1H7a3 3 0 0 1-3-3V9H2v8a5 5 0 0 0 5 5h7.5a1 1 0 0 0 1-1Z", fill: color }),
161
- React__namespace.createElement("path", { d: "M4 4v12.5H2V3a1 1 0 0 1 1-1h15a1 1 0 0 1 1 1v14a1 1 0 1 1-2 0V4H4Z", fill: color }),
162
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 7v4h6V7H7ZM6 5a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6Z", fill: color }),
163
- React__namespace.createElement("path", { d: "M5 15a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1ZM6 18a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z", fill: color })));
164
- const ForwardRef$2j = React.forwardRef(SvgArticle);
165
-
166
- const SvgAsterisk = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
167
- React__namespace.createElement("path", { d: "m9.104 13.224-5.857-1.668a1.092 1.092 0 0 1-.74-1.387l.596-1.83a1.09 1.09 0 0 1 1.445-.676l5.795 2.34-.377-6.598a1.092 1.092 0 0 1 1.09-1.155h2.026a1.09 1.09 0 0 1 1.09 1.153l-.378 6.754 5.612-2.287a1.092 1.092 0 0 1 1.451.676l.599 1.863c.188.59-.15 1.218-.746 1.385l-5.987 1.672 3.94 5.016a1.09 1.09 0 0 1-.224 1.562l-1.64 1.172a1.09 1.09 0 0 1-1.562-.313L11.824 15.4 8.447 20.72c-.33.52-1.027.664-1.537.316L5.29 19.93a1.092 1.092 0 0 1-.24-1.579l4.054-5.127Z", fill: "#363C53" })));
168
- const ForwardRef$2i = React.forwardRef(SvgAsterisk);
169
-
170
- const SvgBellRinging = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
171
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.68 5.342C10.68 4.606 11.276 4 12 4c.724 0 1.32.606 1.32 1.342v.645c2.114.552 3.52 2.412 3.52 4.813v3.49c0 .82.438 1.796.899 2.577l.002.002.785 1.199c.09.138.098.314.022.46a.442.442 0 0 1-.388.235H14.2C14.2 19.992 13.208 21 12 21c-1.208 0-2.2-1.008-2.2-2.237H5.84a.442.442 0 0 1-.388-.236.458.458 0 0 1 .022-.46l.789-1.203c.455-.773.897-1.814.897-2.636v-3.49c0-1.438.481-2.687 1.34-3.57.576-.589 1.324-.992 2.18-1.197v-.629Zm1.76 0a.442.442 0 0 0-.44-.447c-.244 0-.44.199-.44.447v.493l.085-.007c.07-.005.142-.011.216-.012a.38.38 0 0 1 .285.001c.08.003.156.01.233.018l.061.005v-.498Zm-9.909.213C1.55 7.177 1 9.108 1 11.158s.55 3.98 1.531 5.603l.752-.469c-.896-1.48-1.403-3.247-1.403-5.134 0-1.887.507-3.654 1.403-5.134l-.752-.469Zm18.186.469.752-.469C22.45 7.177 23 9.108 23 11.158s-.55 3.98-1.531 5.603l-.752-.469c.896-1.48 1.403-3.247 1.403-5.134 0-1.887-.507-3.654-1.402-5.134ZM12 6.684c2.425 0 3.96 1.641 3.96 4.116v3.49c0 1.123.53 2.2 1.024 3.04a.065.065 0 0 1 .01.013l.002.005.34.52H6.664l.34-.52.003-.005c.003-.004.006-.01.01-.013.5-.847 1.024-1.978 1.024-3.102v-3.49c0-1.237.402-2.238 1.086-2.939.683-.7 1.659-1.115 2.874-1.115Zm-8.8 4.474c0-1.63.438-3.095 1.24-4.41l.747.47a7.371 7.371 0 0 0-1.107 3.94c0 1.46.443 2.812 1.11 3.944l-.754.461C3.696 14.31 3.2 12.801 3.2 11.158Zm16.36-4.41-.747.47a7.37 7.37 0 0 1 1.107 3.94c0 1.46-.443 2.812-1.112 3.944l.756.461c.74-1.253 1.236-2.762 1.236-4.405 0-1.63-.438-3.095-1.24-4.41ZM12 20.104c.729 0 1.32-.6 1.32-1.342h-2.64c0 .741.591 1.342 1.32 1.342Z", fill: color })));
172
- const ForwardRef$2h = React.forwardRef(SvgBellRinging);
173
-
174
- const SvgBell = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
175
- React__namespace.createElement("path", { d: "M12 3c-.725 0-1.313.605-1.313 1.35v.626c-2.263.6-3.937 2.708-3.937 5.224v5.4l-1.343 1.04h-.002A.907.907 0 0 0 5 17.4c0 .497.392.9.875.9h12.25a.888.888 0 0 0 .875-.9.904.904 0 0 0-.405-.76L17.25 15.6v-5.4c0-2.516-1.674-4.624-3.938-5.224V4.35C13.313 3.605 12.726 3 12 3Zm-1.75 16.2c0 .99.787 1.8 1.75 1.8s1.75-.81 1.75-1.8h-3.5Z", fill: color })));
176
- const ForwardRef$2g = React.forwardRef(SvgBell);
177
-
178
- const SvgBone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
179
- React__namespace.createElement("path", { d: "M8.22 22.5a3.325 3.325 0 0 1-3.36-3.36 3.325 3.325 0 0 1-3.36-3.36 3.325 3.325 0 0 1 3.36-3.36c.771 0 1.483.25 2.084.725l6.203-6.203a3.406 3.406 0 0 1-.727-2.082 3.325 3.325 0 0 1 3.36-3.36 3.325 3.325 0 0 1 3.36 3.36 3.325 3.325 0 0 1 3.36 3.36 3.325 3.325 0 0 1-3.36 3.36c-.771 0-1.483-.25-2.084-.725l-6.203 6.203c.466.597.727 1.335.727 2.082a3.325 3.325 0 0 1-3.36 3.36Z", fill: "#363C53" })));
180
- const ForwardRef$2f = React.forwardRef(SvgBone);
181
-
182
- const SvgBookmarkFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
183
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 3.917C4 3.41 4.408 3 4.911 3H19.09c.503 0 .911.41.911.917v16.166a.917.917 0 0 1-.53.833.907.907 0 0 1-.974-.137L12 15.18l-6.495 5.6a.907.907 0 0 1-.974.137.917.917 0 0 1-.531-.833V3.917Z", fill: color })));
184
- const ForwardRef$2e = React.forwardRef(SvgBookmarkFilled);
185
-
186
- const SvgBookmarkOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
187
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 3.917C4 3.41 4.408 3 4.911 3H19.09c.503 0 .911.41.911.917v16.166a.917.917 0 0 1-.53.833.907.907 0 0 1-.974-.137L12 15.18l-6.495 5.6a.907.907 0 0 1-.974.137.917.917 0 0 1-.531-.833V3.917Zm1.823.917V18.09l5.584-4.815a.907.907 0 0 1 1.186 0l5.584 4.815V4.834H5.823Z", fill: color })));
188
- const ForwardRef$2d = React.forwardRef(SvgBookmarkOutlined);
189
-
190
- const SvgBrush = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
191
- React__namespace.createElement("path", { d: "M16.351 3.001a.338.338 0 0 0-.045.012.36.36 0 0 0-.287.253.36.36 0 0 0 .103.366l1.396 1.363.023.035c.007.009.015.015.023.022.347.444.503.98.263 1.747l-1.098-1.07a.374.374 0 0 0-.298-.113h-.034a.361.361 0 0 0-.183.62l1.293 1.285a9.25 9.25 0 0 1-.72 1.14l-1.088-1.106a.375.375 0 0 0-.297-.124l-.046.012a.363.363 0 0 0-.275.25.357.357 0 0 0 .092.359l1.166 1.194a24.27 24.27 0 0 1-.857 1.014l-1.11-1.082a.373.373 0 0 0-.297-.112h-.034a.357.357 0 0 0-.183.62l1.121 1.115.011.012c-.329.347-.65.645-.96.9l-1.26-1.228a.372.372 0 0 0-.262-.113.468.468 0 0 0-.07.011.367.367 0 0 0-.276.25.356.356 0 0 0 .093.359l1.179 1.161c-.434.301-.836.52-1.201.676a.136.136 0 0 0-.024-.023l-1.257-1.228a.373.373 0 0 0-.297-.113h-.034a.362.362 0 0 0-.286.254.357.357 0 0 0 .103.365l1.006 1.005c-.386.095-.7.134-.904.134-.609 0-1.01-.17-1.2-.35l-.012-.01c-.005-.006-.007-.018-.011-.023a.153.153 0 0 0-.035-.034L7.864 11.41a.373.373 0 0 0-.297-.113l-.045.011a.357.357 0 0 0-.184.62l1.327 1.308c.018.267.074.524.126.755.08.35.141.646.045.834-.097.193-.344.33-.686.518-.549.302-1.299.72-2.06 1.713-1.105 1.444-1.409 2.917-.732 3.584.24.235.556.361.905.361.71 0 1.581-.508 2.585-1.51.975-.973 1.352-2.061 1.6-2.784.096-.274.2-.591.276-.665.694-.672 1.215-.775 1.875-.913.96-.2 2.157-.453 4.199-2.4C18.927 10.698 20 8.763 20 6.98c0-1.688-1.301-2.436-2.013-2.548l-1.338-1.319a.368.368 0 0 0-.298-.112Zm-2.939.35a.352.352 0 0 0-.046.011.36.36 0 0 0-.183.62l.95.935c.145.144.38.144.525 0a.36.36 0 0 0 0-.519l-.95-.935a.376.376 0 0 0-.296-.113ZM11.603 4.5a.361.361 0 0 0-.285.254.355.355 0 0 0 .103.365l1.029 1.016a.37.37 0 0 0 .367.125.359.359 0 0 0 .148-.633l-1.03-1.014a.37.37 0 0 0-.297-.113h-.034Zm2.62.778a.36.36 0 0 0-.184.62l.688.676a.368.368 0 0 0 .641-.145.36.36 0 0 0-.126-.363l-.688-.676a.37.37 0 0 0-.296-.112h-.035Zm-4.13.575a.376.376 0 0 0-.045.011.36.36 0 0 0-.183.62l1.006.98c.09.107.23.156.368.126a.358.358 0 0 0 .147-.633l-.994-.991a.375.375 0 0 0-.299-.114Zm3.032.867a.357.357 0 0 0-.183.62l.686.677a.37.37 0 0 0 .642-.145.358.358 0 0 0-.127-.363l-.686-.675a.372.372 0 0 0-.297-.113h-.035Zm-4.38.733a.361.361 0 0 0-.287.254.356.356 0 0 0 .103.365l.938.925a.368.368 0 0 0 .642-.145.36.36 0 0 0-.127-.362l-.937-.925a.373.373 0 0 0-.263-.113h-.069Zm2.916.71a.358.358 0 0 0-.183.62l.686.676a.37.37 0 0 0 .642-.145.357.357 0 0 0-.127-.362l-.687-.677a.372.372 0 0 0-.297-.112h-.034ZM7.817 9.38a.333.333 0 0 0-.045.012.362.362 0 0 0-.287.253.362.362 0 0 0 .103.367l.802.788c.145.144.38.144.526 0a.364.364 0 0 0 0-.518l-.801-.789a.372.372 0 0 0-.298-.113Zm2.38.226a.357.357 0 0 0-.183.62l.63.631c.144.143.379.143.525 0a.362.362 0 0 0 0-.52l-.64-.618a.373.373 0 0 0-.298-.113h-.035ZM9.1 11.049a.359.359 0 0 0-.183.618l.446.452c.145.144.38.144.526 0a.362.362 0 0 0 0-.518l-.458-.44a.374.374 0 0 0-.298-.113H9.1v.001Z", fill: color })));
192
- const ForwardRef$2c = React.forwardRef(SvgBrush);
193
-
194
- const SvgBulkSelect = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
195
- React__namespace.createElement("path", { d: "M19.646 6.264A2.025 2.025 0 0 1 21 8.175v9A3.825 3.825 0 0 1 17.175 21h-9a2.026 2.026 0 0 1-1.91-1.354l1.887.004h9.023a2.475 2.475 0 0 0 2.475-2.475v-9l-.004-.046V6.264ZM16.721 3a2.025 2.025 0 0 1 2.025 2.025v11.697a2.025 2.025 0 0 1-2.025 2.025H5.025A2.025 2.025 0 0 1 3 16.722V5.025A2.025 2.025 0 0 1 5.025 3h11.697Zm-3.398 4.923-3.501 3.5-.882-1.178a.674.674 0 1 0-1.08.81l1.35 1.8a.676.676 0 0 0 1.017.072l4.05-4.05a.676.676 0 0 0-.954-.954Z", fill: color })));
196
- const ForwardRef$2b = React.forwardRef(SvgBulkSelect);
197
-
198
- const SvgButtons = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
199
- React__namespace.createElement("path", { d: "M7.636 5.243a1.36 1.36 0 0 0-1.363 1.352 1.36 1.36 0 0 0 1.363 1.351A1.36 1.36 0 0 0 9 6.595a1.36 1.36 0 0 0-1.364-1.352ZM12 5.243a1.36 1.36 0 0 0-1.364 1.352A1.36 1.36 0 0 0 12 7.946a1.36 1.36 0 0 0 1.364-1.351A1.36 1.36 0 0 0 12 5.243ZM16.364 5.243A1.36 1.36 0 0 0 15 6.595a1.36 1.36 0 0 0 1.364 1.351 1.36 1.36 0 0 0 1.363-1.351 1.36 1.36 0 0 0-1.363-1.352Z", fill: color }),
200
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.91 2C3.86 2 3 2.852 3 3.892v5.405c0 1.04.86 1.892 1.91 1.892h14.18c1.05 0 1.91-.851 1.91-1.892V3.892C21 2.852 20.14 2 19.09 2H4.91Zm-.274 1.892c0-.155.117-.27.273-.27h14.182c.156 0 .273.115.273.27v5.405c0 .155-.117.27-.273.27H4.909a.265.265 0 0 1-.273-.27V3.892Z", fill: color }),
201
- React__namespace.createElement("path", { d: "M7.636 16.054a1.36 1.36 0 0 0-1.363 1.351 1.36 1.36 0 0 0 1.363 1.352A1.36 1.36 0 0 0 9 17.405a1.36 1.36 0 0 0-1.364-1.35ZM12 16.054a1.36 1.36 0 0 0-1.364 1.351A1.36 1.36 0 0 0 12 18.757a1.36 1.36 0 0 0 1.364-1.352A1.36 1.36 0 0 0 12 16.055ZM16.364 16.054A1.36 1.36 0 0 0 15 17.405a1.36 1.36 0 0 0 1.364 1.352 1.36 1.36 0 0 0 1.363-1.352 1.36 1.36 0 0 0-1.363-1.35Z", fill: color }),
202
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.91 12.81c-1.05 0-1.91.852-1.91 1.893v5.405C3 21.148 3.86 22 4.91 22h14.18c1.05 0 1.91-.852 1.91-1.892v-5.405c0-1.04-.86-1.892-1.91-1.892H4.91Zm-.274 1.893c0-.155.117-.27.273-.27h14.182c.156 0 .273.115.273.27v5.405c0 .155-.117.27-.273.27H4.909a.265.265 0 0 1-.273-.27v-5.405Z", fill: color })));
203
- const ForwardRef$2a = React.forwardRef(SvgButtons);
204
-
205
- const SvgCaduceus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
206
- React__namespace.createElement("path", { d: "M12.197 3c-.282 0-.552.118-.75.33-.2.21-.312.496-.312.794 0 .158.032.314.093.458.061.144.15.273.261.378v1.138c.251.072.488.183.708.322.22-.139.457-.25.708-.322V4.96c.11-.105.2-.234.26-.378a1.159 1.159 0 0 0-.218-1.253C12.75 3.12 12.48 3 12.198 3Zm3.54.75c-.541 0-1.41.396-1.41 1.499 0 .31.14.618.236.925.863.33 1.528 1.088 1.77 2.037 1.744-.168 3.785-.99 4.696-1.552v-.002a.728.728 0 0 0 .27-.275.784.784 0 0 0-.107-.914.688.688 0 0 0-.53-.218c-2.8-.011-2.84-1.5-4.926-1.5Zm-7.074.001c-2.087 0-2.125 1.49-4.933 1.5a.689.689 0 0 0-.523.218.783.783 0 0 0-.108.913.728.728 0 0 0 .272.275v.002c.91.561 2.95 1.384 4.695 1.552.243-.95.907-1.707 1.77-2.037.096-.307.237-.614.237-.925 0-1.103-.87-1.499-1.41-1.498Zm2.118 3.735c-.815 0-1.416.717-1.416 1.51 0 1.014.36 1.826.877 2.36.117.121.24.226.365.323-.099.063-.197.126-.293.202-.52.41-.949 1.12-.949 1.988 0 .833.328 1.527.772 1.978.197.2.41.356.623.492-.383.39-.687.966-.687 1.653 0 .6.18 1.126.451 1.539a.725.725 0 0 0-.35.344.789.789 0 0 0-.065.503c.035.17.124.322.253.43.129.108.29.165.454.162 0 0 .644-.012 1.381-.252.737.24 1.381.252 1.381.252a.683.683 0 0 0 .454-.162.757.757 0 0 0 .252-.43.789.789 0 0 0-.063-.503.725.725 0 0 0-.351-.344c.27-.413.45-.939.45-1.539 0-.687-.303-1.263-.687-1.653a3.45 3.45 0 0 0 .624-.492c.444-.45.771-1.145.771-1.978 0-.868-.429-1.578-.948-1.988-.095-.076-.194-.139-.293-.202.125-.098.248-.202.365-.322.517-.535.877-1.347.877-2.36 0-.794-.601-1.511-1.416-1.511-.436 0-.8.227-1.034.504a1.516 1.516 0 0 0-.382 1.007.781.781 0 0 0 .122.43.716.716 0 0 0 .331.279.671.671 0 0 0 .423.028.703.703 0 0 0 .363-.232c-.076.271-.104.607-.274.782-.225.232-.575.425-.965.612-.39-.187-.74-.38-.965-.612-.17-.175-.198-.51-.274-.782a.702.702 0 0 0 .363.232.67.67 0 0 0 .422-.028.716.716 0 0 0 .332-.28.782.782 0 0 0 .122-.43c0-.401-.147-.73-.382-1.006-.234-.277-.598-.504-1.034-.504Zm1.416 5.052c.426.19.81.365 1.037.545.277.22.379.348.379.786 0 .475-.115.673-.335.896-.22.223-.589.428-1.022.637l-.059.03-.06-.03c-.432-.21-.802-.414-1.021-.637-.22-.223-.335-.421-.335-.896 0-.438.102-.567.379-.786.227-.18.61-.356 1.037-.545Zm0 4.558c.167.093.314.183.416.27.22.19.292.287.292.626 0 .383-.1.59-.259.779a1.57 1.57 0 0 1-.449.338 1.57 1.57 0 0 1-.45-.338c-.159-.19-.258-.396-.258-.779 0-.339.073-.437.292-.625.102-.088.25-.178.416-.271Z", fill: color })));
207
- const ForwardRef$29 = React.forwardRef(SvgCaduceus);
208
-
209
- const SvgCalendarCheck = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
210
- React__namespace.createElement("path", { d: "M7.556 2a.895.895 0 0 0-.889.9v.9h-.89C4.795 3.8 4 4.606 4 5.6v12.6C4 19.194 4.798 20 5.777 20h12.446A1.79 1.79 0 0 0 20 18.2V5.6c0-.994-.795-1.8-1.777-1.8h-.89v-.9c0-.496-.398-.9-.889-.9a.895.895 0 0 0-.888.9v.9H8.443v-.9a.893.893 0 0 0-.886-.9h-.001ZM5.777 8.3h12.446l.001 9.9H5.777V8.3Zm8.713 2.438a.875.875 0 0 0-.624.262l-2.31 2.34-.976-.99a.872.872 0 0 0-1.246 0 .895.895 0 0 0 0 1.26l1.594 1.615a.882.882 0 0 0 1.258 0l2.927-2.964a.898.898 0 0 0 0-1.261.87.87 0 0 0-.622-.262h-.001Z", fill: color })));
211
- const ForwardRef$28 = React.forwardRef(SvgCalendarCheck);
212
-
213
- const SvgCalendarDate = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
214
- React__namespace.createElement("path", { d: "M7.556 2a.895.895 0 0 0-.89.9v.9H5.78C4.8 3.8 4 4.61 4 5.6v12.6c0 .99.8 1.8 1.778 1.8H18.22C19.2 20 20 19.19 20 18.2V5.6c0-.99-.8-1.8-1.778-1.8h-.888v-.9c0-.495-.398-.899-.89-.899a.894.894 0 0 0-.888.9v.9H8.444V2.9c0-.496-.397-.9-.888-.9Zm-1.78 6.3h12.446v9.9H5.78V8.3h-.002Zm8 4.5a.895.895 0 0 0-.887.9v1.8c0 .497.399.9.889.9h1.778c.49 0 .888-.403.888-.9v-1.8c0-.496-.398-.9-.888-.9h-1.78Z", fill: color })));
215
- const ForwardRef$27 = React.forwardRef(SvgCalendarDate);
216
-
217
- const SvgCalendarInfo = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
218
- React__namespace.createElement("path", { d: "M16.445 10.286h-8.89v1.777h8.89v-1.777Zm1.777-5.08h-.889V4h-1.777v1.206H8.444V4H6.667v1.206h-.89c-.986 0-1.768.8-1.768 1.778L4 18.286C4 19.263 4.791 20 5.778 20h12.444C19.2 20 20 19.264 20 18.286V6.984c0-.978-.8-1.778-1.778-1.778Zm0 13.08H5.778V8.508h12.444v9.778Zm-4.444-4.445H7.556v1.778h6.222v-1.778Z", fill: color })));
219
- const ForwardRef$26 = React.forwardRef(SvgCalendarInfo);
220
-
221
- const SvgCalendarOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
222
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.783 3.708c0-.387.315-.708.695-.708h.696c.38 0 .696.321.696.708v.709h6.26v-.709c0-.387.316-.708.696-.708h.696c.38 0 .695.321.695.708v.709h2.087a.7.7 0 0 1 .499.202c.13.132.197.32.197.506v14.167a.732.732 0 0 1-.197.507.705.705 0 0 1-.499.201H4.696a.7.7 0 0 1-.498-.2.727.727 0 0 1-.198-.508V5.125c0-.185.067-.374.198-.506a.695.695 0 0 1 .498-.202h2.087v-.709Zm1.39 0h-.695v2.125h.696V3.708Zm7.653 0h.696v2.125h-.696V3.708ZM6.783 5.125H4.696v2.48h14.608v-2.48h-2.087v.708a.707.707 0 0 1-.695.709h-.696a.707.707 0 0 1-.696-.709v-.708H8.87v.708a.707.707 0 0 1-.696.709h-.696a.707.707 0 0 1-.695-.709v-.708ZM4.696 8.313h14.608v10.979H4.696V8.312Zm2.087 9.562V9.729h10.434v8.146H6.783Zm.695-7.438h1.74v1.771h-1.74v-1.77Zm4.174 0H9.913v1.771h1.74v-1.77Zm.696 0h1.739v1.771h-1.74v-1.77Zm4.174 0h-1.74v1.771h1.74v-1.77Zm-9.044 2.48h1.74v1.77h-1.74v-1.77Zm4.174 0H9.913v1.77h1.74v-1.77Zm.696 0h1.739v1.77h-1.74v-1.77Zm4.174 0h-1.74v1.77h1.74v-1.77Zm-9.044 2.479h1.74v1.77h-1.74v-1.77Zm4.174 0H9.913v1.77h1.74v-1.77Zm.696 0h1.739v1.77h-1.74v-1.77Zm4.174 0h-1.74v1.77h1.74v-1.77Z", fill: color })));
223
- const ForwardRef$25 = React.forwardRef(SvgCalendarOutlined);
224
-
225
- const SvgCalendarPen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
226
- React__namespace.createElement("path", { d: "M6.619 2.001a.91.91 0 0 0-.905.914v.912h-.905C3.81 3.827 3 4.645 3 5.654v12.78c0 1.009.81 1.826 1.81 1.826h10.107l-1.81-1.827H4.81V8.391h12.666v5.635l1.81 1.826v-10.2c0-1.008-.81-1.826-1.81-1.826h-.906v-.914A.909.909 0 0 0 15.667 2a.91.91 0 0 0-.905.914v.912H7.525v-.914A.91.91 0 0 0 6.62 2l-.001.001Zm.905 9.13a.91.91 0 0 0-.905.913.91.91 0 0 0 .905.914h7.238c.5 0 .905-.41.905-.914a.91.91 0 0 0-.905-.913H7.524Zm0 3.652a.91.91 0 0 0-.905.913.91.91 0 0 0 .905.914h3.62c.499 0 .904-.41.904-.914a.91.91 0 0 0-.905-.913H7.524Zm6.785 0a.456.456 0 0 0-.452.456v1.181c0 .12.048.237.133.323l4.523 4.565 1.81-1.827-4.524-4.564a.456.456 0 0 0-.32-.134h-1.17Zm6.654 5.344-1.811 1.826.664.669c.5.504 1.31.504 1.81 0a1.3 1.3 0 0 0 0-1.827l-.663-.668Z", fill: color })));
227
- const ForwardRef$24 = React.forwardRef(SvgCalendarPen);
228
-
229
- const SvgCameraFlip = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
230
- React__namespace.createElement("path", { d: "M8.766 3.975a.84.84 0 0 0-.665.328l-.957 1.285H2.5a1 1 0 0 0-1 1V19.1a1 1 0 0 0 1 1h18.962a1 1 0 0 0 1-1V6.588a1 1 0 0 0-1-1H16.82l-.958-1.285a.84.84 0 0 0-.665-.328h-6.43ZM8.86 5.99a1 1 0 0 1 .802-.402h4.64a1 1 0 0 1 .802.402l.658.882.252.328h3.837a1 1 0 0 1 1 1v9.288a1 1 0 0 1-1 1H4.112a1 1 0 0 1-1-1V8.2a1 1 0 0 1 1-1H7.95l.252-.328.657-.882Zm3.122 2.016c-2.074 0-3.796 1.304-4.499 3.1-.184.47.201.931.707.931.376 0 .694-.265.857-.605.51-1.062 1.64-1.813 2.935-1.813 1.052 0 2.05.535 2.646 1.386l-1.033 1.032h3.225V8.813l-1.033 1.033a4.824 4.824 0 0 0-3.805-1.84ZM7.144 13.65v3.225l1.033-1.033a4.824 4.824 0 0 0 3.804 1.84c2.075 0 3.797-1.305 4.5-3.1.184-.471-.202-.932-.707-.932-.377 0-.694.266-.857.605-.511 1.062-1.64 1.814-2.936 1.814a3.261 3.261 0 0 1-2.645-1.386l1.033-1.033H7.144Z", fill: color })));
231
- const ForwardRef$23 = React.forwardRef(SvgCameraFlip);
232
-
233
- const SvgCameraOff = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
234
- React__namespace.createElement("path", { d: "M3.133 3.023c.22-.22.575-.22.795 0l17.766 17.766a.563.563 0 0 1-.795.795L3.133 3.818a.563.563 0 0 1 0-.795ZM3.83 6.016c-.89.12-1.58.9-1.58 1.84v9.286c0 1.025.816 1.858 1.818 1.858h11.819c.27 0 .527-.06.758-.17L3.83 6.017Z", fill: color }),
235
- React__namespace.createElement("path", { d: "M17.466 18.061c.152-.271.238-.585.238-.919v-2.709l3.068 2.506a.906.906 0 0 0 .57.204.903.903 0 0 0 .394-.093.932.932 0 0 0 .514-.836V8.786c0-.357-.2-.683-.514-.839a.898.898 0 0 0-.964.114l-3.066 2.506v-2.71c0-1.024-.818-1.857-1.82-1.857H5.406l12.06 12.061Z", fill: color })));
236
- const ForwardRef$22 = React.forwardRef(SvgCameraOff);
237
-
238
- const SvgCamera = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
239
- React__namespace.createElement("path", { d: "M9.927 4.5a1.5 1.5 0 0 0-1.342.83l-.295.59c-.255.509-.774.83-1.342.83H3.75a1.5 1.5 0 0 0-1.5 1.5V18a1.5 1.5 0 0 0 1.5 1.5h16.5a1.5 1.5 0 0 0 1.5-1.5V8.25a1.5 1.5 0 0 0-1.5-1.5h-3.198a1.5 1.5 0 0 1-1.342-.83l-.295-.59a1.502 1.502 0 0 0-1.342-.83H9.927Zm-4.677.75A.75.75 0 0 0 4.5 6h2.25A.75.75 0 0 0 6 5.25h-.75ZM12 7.5a5.256 5.256 0 0 1 5.25 5.25A5.256 5.256 0 0 1 12 18a5.256 5.256 0 0 1-5.25-5.25A5.256 5.256 0 0 1 12 7.5Zm6.75.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM12 9a3.75 3.75 0 1 0 0 7.5A3.75 3.75 0 0 0 12 9Z", fill: color })));
240
- const ForwardRef$21 = React.forwardRef(SvgCamera);
241
-
242
- const SvgCancel = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
243
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm5.602 5.306a6.3 6.3 0 0 0 8.704-8.704l-8.704 8.704Zm-1.908-1.909a6.3 6.3 0 0 1 8.704-8.704l-8.704 8.704Z", fill: color })));
244
- const ForwardRef$20 = React.forwardRef(SvgCancel);
245
-
246
- const SvgCellphoneAlert = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
247
- React__namespace.createElement("path", { d: "M11 8a1 1 0 1 1 2 0v4a1 1 0 1 1-2 0V8ZM13 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: color }),
248
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.627 2.5h8.637c.954 0 1.727.773 1.727 1.727v15.546c0 .954-.773 1.727-1.727 1.727H7.627A1.727 1.727 0 0 1 5.9 19.773V4.227c0-.954.773-1.727 1.727-1.727Zm2.591 17.273h3.455v-.864h-3.455v.864Zm-2.59-2.591h8.636V5.09H7.627v12.09Z", fill: color })));
249
- const ForwardRef$1$ = React.forwardRef(SvgCellphoneAlert);
250
-
251
- const SvgCellphone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
252
- React__namespace.createElement("path", { d: "M16.264 2.5H7.627c-.954 0-1.727.773-1.727 1.727v15.546c0 .954.773 1.727 1.727 1.727h8.637c.954 0 1.727-.773 1.727-1.727V4.227c0-.954-.773-1.727-1.727-1.727Zm-2.591 17.273h-3.455v-.864h3.455v.864Zm2.59-2.591H7.628V5.09h8.637v12.09Z", fill: color })));
253
- const ForwardRef$1_ = React.forwardRef(SvgCellphone);
254
-
255
- const SvgChainLink = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
256
- React__namespace.createElement("path", { d: "M16.521 4.082c-.869 0-1.738.331-2.4.993L12.238 6.96a3.393 3.393 0 0 0-.813 3.478l1.354-1.354c.056-.387.227-.76.525-1.058l1.885-1.885c.367-.367.85-.552 1.333-.552s.966.184 1.333.552c.735.735.735 1.93 0 2.665l-1.885 1.885c-.297.298-.67.468-1.058.525l-1.355 1.355a3.383 3.383 0 0 0 3.479-.814l1.885-1.885a3.396 3.396 0 0 0 0-4.797 3.383 3.383 0 0 0-2.399-.993Zm-2.276 4.892a.754.754 0 0 0-.519.228l-4.524 4.524a.754.754 0 1 0 1.067 1.066l4.524-4.524a.753.753 0 0 0-.548-1.294Zm-4.717 2.278a3.376 3.376 0 0 0-2.568.985l-1.885 1.885a3.397 3.397 0 0 0 0 4.798c.661.661 1.53.992 2.399.992.868 0 1.737-.33 2.398-.992l1.885-1.886a3.393 3.393 0 0 0 .814-3.478l-1.355 1.355c-.056.387-.227.76-.525 1.058l-1.885 1.885a1.886 1.886 0 0 1-2.665 0 1.887 1.887 0 0 1 0-2.665l1.885-1.885a1.87 1.87 0 0 1 1.058-.526l1.354-1.354a3.416 3.416 0 0 0-.91-.172Z", fill: color })));
257
- const ForwardRef$1Z = React.forwardRef(SvgChainLink);
258
-
259
- const SvgChatBubbleFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
260
- React__namespace.createElement("path", { d: "M12 4c-4.695 0-8.5 3.152-8.5 7.04 0 2.155 1.173 4.082 3.015 5.374.047.983-.108 2.34-1.494 2.966l-.003.001a.32.32 0 0 0-.21.299.324.324 0 0 0 .355.319c1.591-.01 2.942-.852 3.874-1.741a1.283 1.283 0 0 1 1.114-.347A10.1 10.1 0 0 0 12 18.08c4.695 0 8.5-3.152 8.5-7.04S16.695 4 12 4Z", fill: color })));
261
- const ForwardRef$1Y = React.forwardRef(SvgChatBubbleFilled);
262
-
263
- const SvgChatBubbleOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
264
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.6 11.04C2.6 6.504 6.974 3.1 12 3.1c5.026 0 9.4 3.404 9.4 7.94 0 4.536-4.374 7.94-9.4 7.94-.69 0-1.364-.063-2.014-.184l.165-.885-.163.885a.384.384 0 0 0-.33.112c-1.016.97-2.567 1.97-4.463 1.99-.02.002-.039.002-.058.002h-.002c-.66 0-1.227-.528-1.227-1.22v-.001c0-.502.308-.94.755-1.125.7-.322.929-.947.957-1.684-1.824-1.424-3.02-3.486-3.02-5.83ZM12 4.9c-4.364 0-7.6 2.9-7.6 6.14 0 1.809.982 3.48 2.632 4.637l.36.253.022.44c.028.587-.004 1.443-.375 2.235a6.072 6.072 0 0 0 1.377-.999 2.183 2.183 0 0 1 1.898-.58h.002A9.2 9.2 0 0 0 12 17.18c4.364 0 7.6-2.9 7.6-6.14 0-3.24-3.236-6.14-7.6-6.14Z", fill: color })));
265
- const ForwardRef$1X = React.forwardRef(SvgChatBubbleOutlined);
266
-
267
- const SvgCheckmarkBox = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
268
- React__namespace.createElement("path", { d: "M18.223 4H5.777C4.795 4 4 4.795 4 5.777v12.446C4 19.205 4.795 20 5.777 20h12.446c.982 0 1.777-.795 1.777-1.777V5.777C20 4.795 19.205 4 18.223 4Zm-8 12.812-4.185-4.184 1.257-1.256 2.928 2.927 6.482-6.484 1.256 1.258-7.738 7.74Z", fill: color })));
269
- const ForwardRef$1W = React.forwardRef(SvgCheckmarkBox);
270
-
271
- const SvgCheckmarkCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
272
- React__namespace.createElement("path", { d: "M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Zm5.136 6.936-6.3 6.3a.898.898 0 0 1-1.272 0l-2.7-2.7a.899.899 0 1 1 1.272-1.272l2.064 2.063 5.664-5.663a.899.899 0 1 1 1.272 1.272Z", fill: color })));
273
- const ForwardRef$1V = React.forwardRef(SvgCheckmarkCircle);
274
-
275
- const SvgCheckmarkList = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
276
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m9.159 8.25-3.277 4.075L4.8 11.244 3.753 12.29 6 14.54l4.316-5.365-1.157-.926ZM1.5 8.99v7.405h7.405v-3.309l-1.481 1.828H2.98v-4.443h2.493l1.192-1.48H1.5Zm9.626 4.443v-1.48h11.106v1.48H11.126Z", fill: color })));
277
- const ForwardRef$1U = React.forwardRef(SvgCheckmarkList);
278
-
279
- const SvgCheckmark = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
280
- React__namespace.createElement("path", { d: "M10.5 17 19 8.5 17.5 7l-7 7-4-4.003L5 11.5l5.5 5.5Z", fill: color })));
281
- const ForwardRef$1T = React.forwardRef(SvgCheckmark);
282
-
283
- const SvgChevronDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
284
- React__namespace.createElement("path", { d: "M12 13.69 6.607 8.277a.937.937 0 0 0-1.331 0 .951.951 0 0 0 0 1.34l6.096 6.12c.347.35.91.35 1.256 0l6.096-6.119a.951.951 0 0 0 0-1.34.937.937 0 0 0-1.331 0L12 13.69Z", fill: color })));
285
- const ForwardRef$1S = React.forwardRef(SvgChevronDown);
286
-
287
- const SvgChevronLeft = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
288
- React__namespace.createElement("path", { d: "m10.31 12 5.412-5.393a.937.937 0 0 0 0-1.331.951.951 0 0 0-1.34 0l-6.12 6.096a.883.883 0 0 0 0 1.256l6.12 6.096c.37.368.97.368 1.34 0a.937.937 0 0 0 0-1.331L10.31 12Z", fill: color })));
289
- const ForwardRef$1R = React.forwardRef(SvgChevronLeft);
290
-
291
- const SvgChevronRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
292
- React__namespace.createElement("path", { d: "m13.69 12-5.413 5.393a.937.937 0 0 0 0 1.331c.37.368.97.368 1.34 0l6.12-6.096a.882.882 0 0 0 0-1.256L9.619 5.276a.951.951 0 0 0-1.34 0 .937.937 0 0 0 0 1.331L13.69 12Z", fill: color })));
293
- const ForwardRef$1Q = React.forwardRef(SvgChevronRight);
294
-
295
- const SvgChevronUpDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
296
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.393 9.726 12 5.314l-4.393 4.41a.937.937 0 0 1-1.331 0 .951.951 0 0 1 0-1.339l5.096-5.12a.883.883 0 0 1 1.256 0l5.096 5.121c.368.37.368.97 0 1.34a.937.937 0 0 1-1.331 0Zm-8.786 4.552L12 18.69l4.393-4.411a.937.937 0 0 1 1.331 0c.368.37.368.97 0 1.34l-5.096 5.119a.882.882 0 0 1-1.256 0l-5.096-5.12a.951.951 0 0 1 0-1.34.937.937 0 0 1 1.331 0Z", fill: color })));
297
- const ForwardRef$1P = React.forwardRef(SvgChevronUpDown);
298
-
299
- const SvgChevronUp = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
300
- React__namespace.createElement("path", { d: "m12 10.31 5.393 5.412c.367.37.964.37 1.331 0a.951.951 0 0 0 0-1.34l-6.096-6.12a.883.883 0 0 0-1.256 0l-6.096 6.12a.951.951 0 0 0 0 1.34c.367.37.964.37 1.331 0L12 10.31Z", fill: color })));
301
- const ForwardRef$1O = React.forwardRef(SvgChevronUp);
302
-
303
- const SvgCircleDotted = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
304
- React__namespace.createElement("path", { d: "M12.011 3c-4.661 0-8.507 3.561-8.96 8.105h1.817c.446-3.548 3.476-6.304 7.143-6.304 3.668 0 6.698 2.756 7.144 6.304h1.817C20.518 6.561 16.672 3 12.012 3Zm-8.96 9.907a8.95 8.95 0 0 0 1.996 4.79l1.28-1.28a7.185 7.185 0 0 1-1.46-3.51H3.052Zm14.608 3.539a7.275 7.275 0 0 1-1.275 1.27l.911 1.562a9.102 9.102 0 0 0 1.923-1.898l-1.559-.934ZM7.601 17.689l-1.28 1.281a9.004 9.004 0 0 0 4.155 1.909l.128-1.812a7.175 7.175 0 0 1-3.003-1.378Zm7.23.938a7.18 7.18 0 0 1-2.431.567L12.27 21a8.943 8.943 0 0 0 3.47-.814l-.91-1.559Z", fill: color })));
305
- const ForwardRef$1N = React.forwardRef(SvgCircleDotted);
86
+ var blur = {
87
+ none: 0,
88
+ sm: '4px',
89
+ base: '8px',
90
+ md: '12px',
91
+ lg: '16px',
92
+ xl: '24px',
93
+ '2xl': '40px',
94
+ '3xl': '64px',
95
+ };
306
96
 
307
- const SvgClockGear = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
308
- React__namespace.createElement("path", { d: "M12.076 2C6.52 2 2 6.485 2 12c0 5.514 4.52 10 10.076 10 .227 0 .448-.019.671-.033a6.872 6.872 0 0 1-.592-1.971c-.027 0-.052.004-.078.004-4.446 0-8.062-3.589-8.062-8 0-4.41 3.617-8 8.06-8 4.446 0 8.062 3.59 8.062 8 0 .027-.004.051-.004.077.7.1 1.37.302 1.986.59.015-.22.034-.442.034-.667 0-5.513-4.52-10-10.077-10Zm-1.007 3.999v5.587l-3.736 3.707 1.426 1.415 4.325-4.294V6h-2.015V6ZM18.186 14a.252.252 0 0 0-.253.224l-.117 1.012c-.489.168-.93.425-1.312.752l-.944-.406a.253.253 0 0 0-.32.107l-.946 1.622a.252.252 0 0 0 .07.33l.811.599c-.048.247-.077.5-.077.76s.03.513.079.76l-.814.6a.252.252 0 0 0-.069.33l.945 1.621c.066.111.201.155.321.105l.944-.404a4 4 0 0 0 1.31.75l.118 1.013c.016.13.125.225.254.225h1.886c.13 0 .239-.097.254-.225l.118-1.01a4.02 4.02 0 0 0 1.311-.753l.944.407c.12.05.257.002.321-.108l.946-1.621a.254.254 0 0 0-.07-.33l-.813-.6c.05-.247.078-.5.078-.76s-.029-.513-.078-.76l.814-.6a.252.252 0 0 0 .069-.33l-.946-1.62a.256.256 0 0 0-.32-.108l-.945.406a4.002 4.002 0 0 0-1.31-.75l-.119-1.014a.255.255 0 0 0-.254-.224h-1.886Zm.943 3c1.112 0 2.016.896 2.016 2 0 1.103-.904 2-2.016 2a2.009 2.009 0 0 1-2.015-2c0-1.104.903-2 2.015-2Z", fill: color })));
309
- const ForwardRef$1M = React.forwardRef(SvgClockGear);
97
+ var borders = {
98
+ none: 0,
99
+ '1px': '1px solid',
100
+ '2px': '2px solid',
101
+ '4px': '4px solid',
102
+ '8px': '8px solid',
103
+ };
310
104
 
311
- const SvgClock = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
312
- React__namespace.createElement("path", { d: "M12.9 6.5a.9.9 0 1 0-1.8 0V12a.9.9 0 0 0 .546.827l3.5 1.5a.9.9 0 1 0 .709-1.654L12.9 11.406V6.5Z", fill: color }),
313
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM3.8 12a8.2 8.2 0 1 1 16.4 0 8.2 8.2 0 1 1-16.4 0Z", fill: color })));
314
- const ForwardRef$1L = React.forwardRef(SvgClock);
315
-
316
- const SvgCloseCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
317
- React__namespace.createElement("path", { d: "M12 3c-4.977 0-9 4.023-9 9s4.023 9 9 9 9-4.023 9-9-4.023-9-9-9Zm4.5 12.231L15.231 16.5 12 13.269 8.769 16.5 7.5 15.231 10.731 12 7.5 8.769 8.769 7.5 12 10.731 15.231 7.5 16.5 8.769 13.269 12l3.231 3.231Z", fill: color })));
318
- const ForwardRef$1K = React.forwardRef(SvgCloseCircle);
105
+ var coreColors = {
106
+ comet: {
107
+ 50: '#F0F1F5',
108
+ 100: '#D5D7E2',
109
+ 200: '#BABECF',
110
+ 300: '#9FA5BC',
111
+ 400: '#838BA9',
112
+ 500: '#687297',
113
+ 600: '#575D7C',
114
+ 700: '#3F445A',
115
+ 800: '#2A2D3C',
116
+ 900: '#15171E',
117
+ },
118
+ teal: {
119
+ 50: '#F7FAFC',
120
+ 100: '#EBF9FB',
121
+ 200: '#DCF6FB',
122
+ 300: '#AFE1EC',
123
+ 400: '#78CBDC',
124
+ 500: '#39ADC3',
125
+ 600: '#3CA0B4',
126
+ 700: '#2E8C9E',
127
+ 800: '#236976',
128
+ 900: '#17464F',
129
+ },
130
+ blue: {
131
+ 50: '#E7E9FE',
132
+ 100: '#BBC2FB',
133
+ 200: '#909AF9',
134
+ 300: '#6473F7',
135
+ 400: '#384BF5',
136
+ 500: '#0D24F2',
137
+ 600: '#0A1DC2',
138
+ 700: '#000B8E',
139
+ 800: '#050E5F',
140
+ 900: '#030730',
141
+ },
142
+ purple: {
143
+ 50: '#F3EBFA',
144
+ 100: '#DDC6F0',
145
+ 200: '#D1AEEF',
146
+ 300: '#BC8AE7',
147
+ 400: '#AA6AE0',
148
+ 500: '#9046CF',
149
+ 600: '#6B2AA2',
150
+ 700: '#502079',
151
+ 800: '#351551',
152
+ 900: '#1B0B28',
153
+ },
154
+ red: {
155
+ 50: '#FFF5F5',
156
+ 100: '#FED7D7',
157
+ 200: '#FEB2B2',
158
+ 300: '#FC8181',
159
+ 400: '#F56565',
160
+ 500: '#EC493F',
161
+ 600: '#C53030',
162
+ 700: '#9B2C2C',
163
+ 800: '#822727',
164
+ 900: '#63171B',
165
+ },
166
+ orange: {
167
+ 50: '#FFFAF0',
168
+ 100: '#FEEBC8',
169
+ 200: '#FBD38D',
170
+ 300: '#F6AD55',
171
+ 400: '#ED8936',
172
+ 500: '#DD6B20',
173
+ 600: '#C05621',
174
+ 700: '#9C4221',
175
+ 800: '#7B341E',
176
+ 900: '#652B19',
177
+ },
178
+ yellow: {
179
+ 50: '#FFFFF0',
180
+ 100: '#FEFCBF',
181
+ 200: '#FAF089',
182
+ 300: '#F6E05E',
183
+ 400: '#ECC94B',
184
+ 500: '#D69E2E',
185
+ 600: '#B7791F',
186
+ 700: '#975A16',
187
+ 800: '#744210',
188
+ 900: '#5F370E',
189
+ },
190
+ green: {
191
+ 50: '#F0FFF4',
192
+ 100: '#C6F6D5',
193
+ 200: '#9AE6B4',
194
+ 300: '#68D391',
195
+ 400: '#48BB78',
196
+ 500: '#38A169',
197
+ 600: '#25855A',
198
+ 700: '#276749',
199
+ 800: '#22543D',
200
+ 900: '#1C4532',
201
+ },
202
+ gray: {
203
+ 50: '#F9F9FA',
204
+ 100: '#EBEEEF',
205
+ 200: '#DDE2E3',
206
+ 300: '#CDD4D6',
207
+ 400: '#BCC5C8',
208
+ 500: '#A9B5B8',
209
+ 600: '#94A2A6',
210
+ 700: '#7A8C90',
211
+ 800: '#5B7074',
212
+ 900: '#354144',
213
+ },
214
+ transparent: 'transparent',
215
+ current: 'currentColor',
216
+ black: '#000000',
217
+ white: '#FFFFFF',
218
+ whiteAlpha: {
219
+ 50: 'rgba(255, 255, 255, 0.04)',
220
+ 100: 'rgba(255, 255, 255, 0.06)',
221
+ 200: 'rgba(255, 255, 255, 0.08)',
222
+ 300: 'rgba(255, 255, 255, 0.16)',
223
+ 400: 'rgba(255, 255, 255, 0.24)',
224
+ 500: 'rgba(255, 255, 255, 0.36)',
225
+ 600: 'rgba(255, 255, 255, 0.48)',
226
+ 700: 'rgba(255, 255, 255, 0.64)',
227
+ 800: 'rgba(255, 255, 255, 0.80)',
228
+ 900: 'rgba(255, 255, 255, 0.92)',
229
+ },
230
+ blackAlpha: {
231
+ 50: 'rgba(0, 0, 0, 0.04)',
232
+ 100: 'rgba(0, 0, 0, 0.06)',
233
+ 200: 'rgba(0, 0, 0, 0.08)',
234
+ 300: 'rgba(0, 0, 0, 0.16)',
235
+ 400: 'rgba(0, 0, 0, 0.24)',
236
+ 500: 'rgba(0, 0, 0, 0.36)',
237
+ 600: 'rgba(0, 0, 0, 0.48)',
238
+ 700: 'rgba(0, 0, 0, 0.64)',
239
+ 800: 'rgba(0, 0, 0, 0.80)',
240
+ 900: 'rgba(0, 0, 0, 0.92)',
241
+ },
242
+ };
243
+ var semanticColors = {
244
+ background: {
245
+ light: coreColors.white,
246
+ grayLight: coreColors.gray[50],
247
+ grayDark: coreColors.gray[300],
248
+ brand: coreColors.teal[600],
249
+ tealLight: coreColors.teal[50],
250
+ dark: coreColors.blue[800],
251
+ table: coreColors.comet[50],
252
+ hover: coreColors.teal[100],
253
+ info: coreColors.teal[200],
254
+ error: coreColors.red[100],
255
+ warning: coreColors.orange[100],
256
+ success: coreColors.green[100],
257
+ overlay: coreColors.blackAlpha[300],
258
+ },
259
+ border: {
260
+ light: {
261
+ default: coreColors.gray[200],
262
+ focus: coreColors.teal[600],
263
+ info: coreColors.teal[600],
264
+ error: coreColors.red[500],
265
+ warning: coreColors.orange[200],
266
+ success: coreColors.green[200],
267
+ heavy: coreColors.comet[700],
268
+ },
269
+ dark: {
270
+ default: coreColors.comet[600],
271
+ heavy: coreColors.white,
272
+ },
273
+ },
274
+ divider: {
275
+ light: {
276
+ default: coreColors.gray[200],
277
+ },
278
+ dark: {
279
+ default: coreColors.comet[600],
280
+ },
281
+ },
282
+ status: {
283
+ open: coreColors.blue[300],
284
+ confirmed: coreColors.teal[500],
285
+ success: coreColors.green[400],
286
+ warning: coreColors.yellow[400],
287
+ action: coreColors.orange[400],
288
+ negative: coreColors.red[300],
289
+ error: coreColors.red[500],
290
+ archived: coreColors.gray[800],
291
+ closed: coreColors.gray[900],
292
+ },
293
+ general: {
294
+ brand: coreColors.teal[600],
295
+ error: coreColors.red[500],
296
+ },
297
+ };
298
+ var adaptiveColors = {
299
+ icon: {
300
+ light: {
301
+ currentColor: 'currentColor',
302
+ default: coreColors.comet[700],
303
+ subtle: coreColors.gray[800],
304
+ inactive: coreColors.gray[700],
305
+ active: coreColors.teal[600],
306
+ success: coreColors.green[600],
307
+ warning: coreColors.yellow[600],
308
+ error: coreColors.red[500],
309
+ },
310
+ dark: {
311
+ currentColor: 'currentColor',
312
+ default: coreColors.white,
313
+ subtle: coreColors.gray[200],
314
+ inactive: coreColors.gray[400],
315
+ active: coreColors.teal[400],
316
+ success: coreColors.green[400],
317
+ warning: coreColors.yellow[300],
318
+ error: coreColors.red[300],
319
+ },
320
+ },
321
+ text: {
322
+ light: {
323
+ default: coreColors.comet[700],
324
+ headline: coreColors.blue[800],
325
+ subtle: coreColors.gray[800],
326
+ link: coreColors.teal[600],
327
+ success: coreColors.green[600],
328
+ warning: coreColors.yellow[600],
329
+ error: coreColors.red[500],
330
+ placeholder: coreColors.blackAlpha[500],
331
+ },
332
+ dark: {
333
+ default: coreColors.white,
334
+ headline: coreColors.white,
335
+ subtle: coreColors.comet[300],
336
+ link: coreColors.teal[400],
337
+ success: coreColors.green[400],
338
+ warning: coreColors.yellow[300],
339
+ error: coreColors.red[300],
340
+ placeholder: coreColors.whiteAlpha[600],
341
+ },
342
+ },
343
+ };
344
+ var colors = __assign(__assign(__assign({}, coreColors), semanticColors), adaptiveColors);
319
345
 
320
- const SvgClose = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
321
- React__namespace.createElement("path", { d: "M18.695 5.305a1.042 1.042 0 0 0-1.475 0L12 10.525l-5.22-5.22A1.043 1.043 0 1 0 5.305 6.78l5.22 5.22-5.22 5.22a1.042 1.042 0 1 0 1.475 1.475l5.22-5.22 5.22 5.22a1.042 1.042 0 1 0 1.475-1.475L13.475 12l5.22-5.22a1.042 1.042 0 0 0 0-1.475Z", fill: color })));
322
- const ForwardRef$1J = React.forwardRef(SvgClose);
346
+ var fonts = {
347
+ body: 'LinearSans, Noto Sans, Arial, Helvetica, sans-serif',
348
+ heading: 'LinearSans, Noto Sans, Arial, Helvetica, sans-serif',
349
+ mono: 'LinearSans, Noto Sans, Arial, Helvetica, sans-serif',
350
+ };
323
351
 
324
- const SvgClosedSign = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
325
- React__namespace.createElement("path", { d: "M12.054 4.114a.784.784 0 0 0-.779.788c0 .433.35.787.779.787a.784.784 0 0 0 .778-.787.784.784 0 0 0-.778-.788Zm-1.386 1.5L5.745 8.839H7.18l4.012-2.633a1.561 1.561 0 0 1-.523-.59Zm2.771 0c-.121.24-.302.442-.523.591l4.012 2.633h1.422L13.44 5.615ZM3.496 9.627a.392.392 0 0 0-.389.393v9.447c0 .219.175.394.389.394h17.116a.39.39 0 0 0 .388-.394V10.02a.39.39 0 0 0-.389-.393H3.497ZM5.83 12.38c.643 0 1.167.53 1.167 1.18v.394H6.22v-.393a.392.392 0 0 0-.389-.394.392.392 0 0 0-.39.393v2.363c0 .217.176.393.39.393a.392.392 0 0 0 .389-.393v-.394h.778v.394c0 .65-.524 1.18-1.167 1.18s-1.167-.53-1.167-1.18v-2.362c0-.65.524-1.181 1.167-1.181Zm1.556 0h.777v3.936H9.33v.788H7.386V12.38Zm3.112 0c.643 0 1.167.53 1.167 1.18v2.363c0 .65-.524 1.18-1.167 1.18s-1.167-.53-1.167-1.18v-2.362c0-.65.524-1.181 1.167-1.181Zm2.723 0c.642 0 1.166.53 1.166 1.18v.394h-.778v-.393a.391.391 0 0 0-.388-.394.392.392 0 0 0-.39.393v.542l1.556.787v1.034c0 .65-.524 1.18-1.166 1.18-.643 0-1.167-.53-1.167-1.18v-.394h.778v.394c0 .217.175.393.388.393a.392.392 0 0 0 .39-.393v-.542l-1.556-.787V13.56c0-.65.524-1.18 1.167-1.18Zm1.555 0h1.945v.787h-1.167v1.18h1.167v.788h-1.167v1.18h1.167v.788h-1.945v-4.723Zm2.334 0h1.167c.643 0 1.167.53 1.167 1.18v2.363c0 .65-.524 1.18-1.167 1.18H17.11v-4.723Zm-6.612.787a.392.392 0 0 0-.39.393v2.362c0 .217.175.394.39.394.214 0 .389-.177.389-.393V13.56a.392.392 0 0 0-.39-.394Zm7.39 0v3.149h.389c.214 0 .39-.177.39-.393V13.56a.392.392 0 0 0-.39-.394h-.389Z", fill: color })));
326
- React.forwardRef(SvgClosedSign);
352
+ var fontSizes = {
353
+ xs: '0.75rem',
354
+ sm: '0.875rem',
355
+ md: '1rem',
356
+ lg: '1.125rem',
357
+ xl: '1.25rem',
358
+ '2xl': '1.5rem',
359
+ '3xl': '1.875rem',
360
+ '4xl': '2.25rem',
361
+ '5xl': '3rem',
362
+ '6xl': '3.75rem',
363
+ '7xl': '4.5rem',
364
+ '8xl': '6rem',
365
+ '9xl': '8rem',
366
+ };
327
367
 
328
- const SvgCode = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
329
- React__namespace.createElement("path", { d: "M5.778 4C4.796 4 4 4.796 4 5.778v12.444C4 19.194 4.806 20 5.778 20h12.444c.972 0 1.778-.806 1.778-1.778V5.777C20 4.797 19.204 4 18.222 4H5.778Zm0 3.556h12.444v10.666H5.778V7.556Zm4.444 2.743a.627.627 0 0 0-.444.184L8 12.26a.888.888 0 0 0 0 1.257l1.778 1.778a.629.629 0 0 0 .889-.889L9.149 12.89l1.518-1.518a.629.629 0 0 0-.445-1.072Zm3.556 0a.627.627 0 0 0-.445 1.072l1.518 1.518-1.518 1.517a.629.629 0 0 0 .89.89L16 13.516a.888.888 0 0 0 0-1.257l-1.778-1.777a.627.627 0 0 0-.444-.184Z", fill: color })));
330
- const ForwardRef$1I = React.forwardRef(SvgCode);
368
+ var fontWeights = {
369
+ hairline: 100,
370
+ thin: 200,
371
+ light: 300,
372
+ normal: 400,
373
+ medium: 500,
374
+ semibold: 600,
375
+ bold: 700,
376
+ extrabold: 800,
377
+ black: 900,
378
+ };
331
379
 
332
- const SvgConversation = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
333
- React__namespace.createElement("path", { d: "M8.277 1c-1.16 0-2.11.99-2.11 2.2v4.4c0 1.21.95 2.2 2.11 2.2h2.112l1.625 2.539a.572.572 0 0 0 .972 0l1.625-2.54h2.112c1.16 0 2.11-.99 2.11-2.2V3.2c0-1.21-.95-2.2-2.11-2.2H8.277ZM7.223 13.1c-1.167 0-2.112.985-2.112 2.2 0 1.215.945 2.2 2.112 2.2 1.165 0 2.11-.985 2.11-2.2 0-1.216-.945-2.2-2.11-2.2Zm10.554 0c-1.165 0-2.11.985-2.11 2.2 0 1.215.945 2.2 2.11 2.2 1.167 0 2.112-.985 2.112-2.2 0-1.216-.945-2.2-2.112-2.2ZM7.223 18.6C4.915 18.6 3 19.6 3 21.039v.86C3 22.508 3.473 23 4.056 23h6.333c.583 0 1.056-.493 1.056-1.1v-.862c0-1.439-1.917-2.438-4.222-2.438Zm10.554 0c-2.305 0-4.221 1-4.221 2.439v.86c0 .608.472 1.101 1.055 1.101h6.333c.583 0 1.056-.493 1.056-1.1v-.862c0-1.439-1.915-2.438-4.223-2.438Z", fill: color })));
334
- const ForwardRef$1H = React.forwardRef(SvgConversation);
380
+ var lineHeights = {
381
+ normal: 'normal',
382
+ none: 1,
383
+ shorter: 1.25,
384
+ short: 1.375,
385
+ base: 1.5,
386
+ tall: 1.625,
387
+ taller: '2',
388
+ '3': '.75rem',
389
+ '4': '1rem',
390
+ '5': '1.25rem',
391
+ '6': '1.5rem',
392
+ '7': '1.75rem',
393
+ '8': '2rem',
394
+ '9': '2.25rem',
395
+ '10': '2.5rem',
396
+ };
335
397
 
336
- const SvgCreditCardHand = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
337
- React__namespace.createElement("path", { d: "M10.286 6c-.895 0-1.62.684-1.62 1.53v.764H20V7.53C20 6.684 19.276 6 18.381 6h-8.095Zm-1.62 3.823v3.06c0 .33.115.636.306.886l3.67-2.159c.702-.414 1.622-.261 2.132.356l.59.713c.416.503.606 1.12.582 1.733h2.435c.895 0 1.619-.684 1.619-1.529v-3.06H8.667Zm-2.632.07a1 1 0 0 0-.51.165l-1.83 1.2A1.505 1.505 0 0 0 3 12.515v4.957C3 18.316 3.724 19 4.619 19h4.519c.907 0 1.754-.428 2.256-1.14l2.721-2.894c.31-.404.299-.952-.027-1.344-.36-.518-.818-.604-1.374-.252l-3.559 2.094c-.918.541-2.108-.083-2.108-1.104v-3.55c0-.554-.494-.937-1.013-.916Z", fill: color })));
338
- const ForwardRef$1G = React.forwardRef(SvgCreditCardHand);
398
+ var radii = {
399
+ none: '0',
400
+ sm: '0.125rem',
401
+ base: '0.25rem',
402
+ md: '0.375rem',
403
+ lg: '0.5rem',
404
+ xl: '0.75rem',
405
+ '2xl': '1rem',
406
+ '3xl': '1.5rem',
407
+ full: '9999px',
408
+ };
339
409
 
340
- const SvgCreditCardLogoAmex = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
341
- React__namespace.createElement("path", { fill: "#1976D2", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
342
- React__namespace.createElement("path", { fill: "#FFF", d: "m22.255 20-2.113 4.683L18.039 20h-2.695v6.726L12.341 20h-2.274L7 26.981h1.815l.671-1.558h3.432l.682 1.558h3.465v-5.185l2.299 5.185h1.563l2.351-5.095v5.095H25V20h-2.745zm-12.12 3.915 1.026-2.44 1.066 2.44h-2.092zm27.748-.502L41 20.018h-2.217l-1.994 2.164L34.86 20H28v6.982h6.635l2.092-2.311L38.767 27h2.21l-3.094-3.587zm-4.155 2.103h-4.011v-1.381h3.838v-1.323h-3.838v-1.308l4.234.012 1.693 1.897-1.916 2.103z" })));
343
- React.forwardRef(SvgCreditCardLogoAmex);
410
+ var shadows = {
411
+ xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
412
+ sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
413
+ base: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
414
+ md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
415
+ lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
416
+ xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
417
+ '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)',
418
+ outline: '0 0 0 3px rgba(66, 153, 225, 0.6)',
419
+ inner: 'inset 0 2px 4px 0 rgba(0,0,0,0.06)',
420
+ none: 'none',
421
+ 'dark-lg': 'rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px',
422
+ };
344
423
 
345
- const SvgCreditCardLogoDiners = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
346
- React__namespace.createElement("path", { fill: "#CFD8DC", d: "M45 35c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V13c0-2.2 1.8-4 4-4h34c2.2 0 4 1.8 4 4v22z" }),
347
- React__namespace.createElement("path", { fill: "#1565C0", d: "M29 16H19c-4.4 0-8 3.6-8 8s3.6 8 8 8h10c4.4 0 8-3.6 8-8s-3.6-8-8-8z" }),
348
- React__namespace.createElement("path", { fill: "#FFF", d: "M19 18c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm-4 6c0-1.9 1.3-3.4 3-3.9v7.7c-1.7-.4-3-1.9-3-3.8zm5 3.9v-7.7c1.7.4 3 2 3 3.9 0 1.8-1.3 3.3-3 3.8z" })));
349
- React.forwardRef(SvgCreditCardLogoDiners);
424
+ var sizes = {
425
+ max: 'max-content',
426
+ min: 'min-content',
427
+ full: '100%',
428
+ '3xs': '14rem',
429
+ '2xs': '16rem',
430
+ xs: '20rem',
431
+ sm: '24rem',
432
+ md: '28rem',
433
+ lg: '32rem',
434
+ xl: '36rem',
435
+ '2xl': '42rem',
436
+ '3xl': '48rem',
437
+ '4xl': '56rem',
438
+ '5xl': '64rem',
439
+ '6xl': '72rem',
440
+ '7xl': '80rem',
441
+ '8xl': '90rem',
442
+ container: {
443
+ sm: '640px',
444
+ md: '768px',
445
+ lg: '1024px',
446
+ xl: '1280px',
447
+ },
448
+ };
350
449
 
351
- const SvgCreditCardLogoDiscover = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
352
- React__namespace.createElement("path", { fill: "#E1E7EA", d: "M45 35c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V13c0-2.2 1.8-4 4-4h34c2.2 0 4 1.8 4 4v22z" }),
353
- React__namespace.createElement("path", { fill: "#FF6D00", d: "M45 35c0 2.2-1.8 4-4 4H16s23.6-3.8 29-15v11zM22 24c0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3-3 1.3-3 3z" }),
354
- React__namespace.createElement("path", { d: "M11.2 21h1.1v6h-1.1v-6zm6 3c0 1.7 1.3 3 3 3 .5 0 .9-.1 1.4-.3v-1.3c-.4.4-.8.6-1.4.6-1.1 0-1.9-.8-1.9-2 0-1.1.8-2 1.9-2 .5 0 .9.2 1.4.6v-1.3c-.5-.2-.9-.4-1.4-.4-1.7.1-3 1.5-3 3.1zm13.4.9L29 21h-1.2l2.5 6h.6l2.5-6h-1.2l-1.6 3.9zm3.3 2.1h3.2v-1H35v-1.6h2v-1h-2V22h2.1v-1h-3.2v6zm7.6-4.2c0-1.1-.7-1.8-2-1.8h-1.7v6h1.1v-2.4h.1l1.6 2.4H42l-1.8-2.5c.8-.2 1.3-.8 1.3-1.7zm-2.3 1h-.3V22h.3c.7 0 1.1.3 1.1.9 0 .5-.3.9-1.1.9zM7.7 21H6v6h1.6c2.5 0 3.1-2.1 3.1-3 .1-1.8-1.2-3-3-3zm-.3 5h-.3v-4h.4c1.5 0 2.1 1 2.1 2 0 .4-.1 2-2.2 2zm7.9-2.7c-.7-.3-.9-.4-.9-.7 0-.4.4-.6.8-.6.3 0 .6.1.9.5l.6-.8c-.5-.5-1-.7-1.7-.7-1 0-1.8.7-1.8 1.7 0 .8.4 1.2 1.4 1.6.6.2 1.1.4 1.1.9s-.4.8-.9.8-1-.3-1.2-.8l-.7.7c.5.8 1.1 1.1 2 1.1 1.2 0 2-.8 2-1.9 0-.9-.4-1.3-1.6-1.8z" })));
355
- React.forwardRef(SvgCreditCardLogoDiscover);
450
+ var zIndices = {
451
+ hide: -1,
452
+ auto: 'auto',
453
+ base: 0,
454
+ docked: 10,
455
+ dropdown: 1000,
456
+ sticky: 1100,
457
+ banner: 1200,
458
+ overlay: 1300,
459
+ modal: 1400,
460
+ popover: 1500,
461
+ skipLink: 1600,
462
+ toast: 1700,
463
+ tooltip: 1800,
464
+ };
356
465
 
357
- const SvgCreditCardLogoGeneric = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
358
- React__namespace.createElement("path", { fill: "#3F51B5", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
359
- React__namespace.createElement("path", { fill: "#FFC107", d: "M16 21a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v4zm-1 5H9v2h6v-2zm8 5H9v2h14v-2zm0-5h-6v2h6v-2zm8 0h-6v2h6v-2zm8 0h-6v2h6v-2z" }),
360
- React__namespace.createElement("path", { fill: "#9FA8DA", d: "M20 16h19v4H20z" })));
361
- React.forwardRef(SvgCreditCardLogoGeneric);
466
+ var TagConfig = {
467
+ baseStyle: {
468
+ container: {
469
+ borderRadius: radii.md,
470
+ },
471
+ label: {
472
+ fontWeight: fontWeights.semibold,
473
+ },
474
+ closeButton: {
475
+ height: '20px',
476
+ marginInline: 0,
477
+ marginLeft: 1,
478
+ opacity: 0.5,
479
+ width: '20px',
480
+ _hover: {
481
+ opacity: 0.8,
482
+ },
483
+ _active: {
484
+ opacity: 1,
485
+ },
486
+ _focus: {
487
+ backgroundColor: 'transparent',
488
+ boxShadow: 0,
489
+ },
490
+ },
491
+ },
492
+ sizes: {
493
+ sm: {
494
+ container: {
495
+ height: '20px',
496
+ px: '8px',
497
+ },
498
+ label: {
499
+ fontSize: fontSizes.xs,
500
+ },
501
+ closeButton: {
502
+ fontSize: fontSizes.sm,
503
+ },
504
+ },
505
+ md: {
506
+ container: {
507
+ height: '24px',
508
+ px: '8px',
509
+ },
510
+ label: {
511
+ fontSize: fontSizes.sm,
512
+ },
513
+ closeButton: {
514
+ fontSize: fontSizes.md,
515
+ },
516
+ },
517
+ lg: {
518
+ container: {
519
+ height: '32px',
520
+ px: '12px',
521
+ },
522
+ label: {
523
+ fontSize: fontSizes.md,
524
+ },
525
+ closeButton: {
526
+ fontSize: fontSizes.lg,
527
+ },
528
+ },
529
+ },
530
+ };
362
531
 
363
- const SvgCreditCardLogoJcb = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
364
- React__namespace.createElement("path", { fill: "#CFD8DC", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
365
- React__namespace.createElement("path", { fill: "#3F51B5", d: "M10.669 13C8.58 13 7 14.324 7 16.617V35h6.483C15.114 35 17 33.469 17 31.483V13h-6.331z" }),
366
- React__namespace.createElement("path", { fill: "#E53935", d: "M22.669 13C20.58 13 19 14.324 19 16.617V35h6.483C27.114 35 29 33.469 29 31.483V13h-6.331z" }),
367
- React__namespace.createElement("path", { fill: "#388E3C", d: "M34.669 13C32.58 13 31 14.324 31 16.617V35h6.483C39.114 35 41 33.469 41 31.483V13h-6.331z" }),
368
- React__namespace.createElement("path", { fill: "#FAFAFA", d: "M15.806 24.453c0 1.835-2.369 2.803-4.101 2.803-1.884 0-3.567-1.12-3.926-2.545h1.274c.152.866 1.021 1.475 1.987 1.475 1.07 0 1.834-.764 1.834-1.732v-3.311h2.931v3.31zm22.8-.415c.762 0 1.295-.759 1.295-1.519 0-.762-.663-1.422-1.425-1.422h-6.262v5.852h6.392c.863 0 1.522-.757 1.523-1.519 0-.759-.659-1.392-1.523-1.392zm-3.955-2.331h1.979c.504 0 .961.453.961.959 0 .509-.457.967-.961.967h-1.979v-1.926zm2.028 4.636h-2.027v-1.928h2.027c.508 0 .965.456.965.965 0 .505-.457.963-.965.963zm-8.868-4.167c-1.168-.27-2.286-.427-2.845-.427-1.218 0-2.181 1.017-2.181 2.303 0 1.292.963 2.311 2.181 2.311.559 0 1.677-.107 2.845-.38v1.021h-4.875c-1.522 0-2.79-1.342-2.79-2.952 0-1.607 1.268-2.948 2.79-2.948h4.875v1.072z" })));
369
- React.forwardRef(SvgCreditCardLogoJcb);
532
+ var useTheme = function () { return react.useTheme(); };
370
533
 
371
- const SvgCreditCardLogoMastercard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
372
- React__namespace.createElement("path", { fill: "#3F51B5", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
373
- React__namespace.createElement("path", { fill: "#FFC107", d: "M30 14a10 10 0 1 0 0 20 10 10 0 1 0 0-20Z" }),
374
- React__namespace.createElement("path", { fill: "#FF3D00", d: "M22.014 30a9.983 9.983 0 0 1-1.176-2h5.325a9.9 9.9 0 0 0 .637-2h-6.598A9.976 9.976 0 0 1 20 24h7c0-.686-.07-1.354-.201-2h-6.598a9.964 9.964 0 0 1 .637-2h5.325a9.936 9.936 0 0 0-1.176-2h-2.973c.437-.58.93-1.122 1.481-1.595A9.955 9.955 0 0 0 17 14c-5.523 0-10 4.477-10 10s4.477 10 10 10c3.269 0 6.162-1.575 7.986-4h-2.972z" })));
375
- React.forwardRef(SvgCreditCardLogoMastercard);
534
+ var MAX_COUNT = 99;
535
+ var notificationCounterSizes = {
536
+ xs: '8px',
537
+ sm: '16px',
538
+ md: '20px',
539
+ lg: '24px',
540
+ };
541
+ var notificationCounterFontSizes = {
542
+ xs: '8px',
543
+ sm: '10px',
544
+ md: '12px',
545
+ lg: '14px',
546
+ };
547
+ var maxNotificationCounterSizes = {
548
+ xs: '1px',
549
+ sm: '2px',
550
+ md: '3px',
551
+ lg: '4px',
552
+ };
553
+ var NotificationCounter = function (_a) {
554
+ var count = _a.count, _b = _a.size, size = _b === void 0 ? 'md' : _b, _c = _a.showCount, showCount = _c === void 0 ? true : _c, rest = __rest(_a, ["count", "size", "showCount"]);
555
+ var theme = useTheme();
556
+ var _showCount = size === 'xs' ? false : showCount; // By default the xs size doesn't show a label
557
+ if (count < 1) {
558
+ return React__default["default"].createElement(React__default["default"].Fragment, null);
559
+ }
560
+ var counterContent = count > MAX_COUNT ? (React__default["default"].createElement(react.Box, { backgroundColor: theme.colors.white, borderRadius: theme.radii.full, height: maxNotificationCounterSizes[size], width: maxNotificationCounterSizes[size] })) : (count);
561
+ return (React__default["default"].createElement(react.Flex, __assign({}, rest, { alignItems: "center", backgroundColor: theme.colors.red[500], border: theme.borders['1px'], borderColor: theme.colors.white, borderRadius: theme.radii.full, color: theme.colors.white, fontSize: notificationCounterFontSizes[size], fontWeight: theme.fontWeights.semibold, height: notificationCounterSizes[size], justifyContent: "center", width: notificationCounterSizes[size] }), _showCount && counterContent));
562
+ };
376
563
 
377
- const SvgCreditCardLogoUnionpay = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
378
- React__namespace.createElement("path", { fill: "#e21836", d: "M10.09 9h11.585c1.617 0 2.623 1.362 2.246 3.039l-5.394 23.927c-.381 1.671-2 3.034-3.618 3.034H3.325c-1.369-.001-2.302-.98-2.325-2.296a3.092 3.092 0 0 1 .079-.739l5.396-23.927C6.852 10.362 8.471 9 10.09 9" }),
379
- React__namespace.createElement("path", { fill: "#00447c", d: "M20.5 9h13.47c1.657 0 .91 1.362.52 3.039l-5.527 23.928c-.388 1.67-.267 3.033-1.928 3.033H13.38c-1.39 0-2.336-.955-2.379-2.246a3.065 3.065 0 0 1 .081-.788l5.711-23.928C17.187 10.362 18.657 9 20.316 9" }),
380
- React__namespace.createElement("path", { fill: "#007b84", d: "M33.273 9h11.401c1.183 0 2.039.727 2.266 1.773.044.204.064.42.059.645-.005.2-.031.408-.079.62l-5.393 23.928C41.146 37.637 39.525 39 37.906 39h-11.58c-1.355 0-2.279-.953-2.324-2.241a3.088 3.088 0 0 1 .078-.792l5.578-23.928C30.036 10.362 31.653 9 33.273 9z" }),
381
- React__namespace.createElement("path", { fill: "#fefefe", d: "M19.364 18.117c-.325-.195-.905-.134-1.302.135-.396.263-.45.636-.126.833.319.189.902.134 1.296-.137.394-.268.453-.638.132-.831zm22.944 1.259-1.171 2.048L40.874 19l-1.24.294.454 3.963-1.415 2.293c-.038.054-.072.091-.119.107a.491.491 0 0 1-.21.03h-.04l-.304.937.75.001c.53-.002.904-.288 1.092-.625L44 19l-1.692.376zM22.157 25l-.404.701c-.087.153-.235.299-.563.299h-.201l-.282.875h.668c.787 0 1.158-.431 1.158-.431h2.086l.301-.933h-1.752l.28-.51L22.157 25zm-11.741-5.115c-.194.75-.341 1.24-.679 1.585-.233.238-.593.351-.923.35-.493 0-.91-.311-.883-.823.002-.038.007-.078.014-.119C8.187 19.531 9.242 16 9.242 16H7.275l-1.02 4.03s-.25.968-.255 1.379c-.004.313.047.569.164.785.376.685 1.488.806 2.124.806 1.088 0 1.731-.104 2.257-.424.839-.51 1.082-1.2 1.341-2.175C12.178 19.305 13 16 13 16h-1.595l-.989 3.885zM13.701 23l.705-2.869c.153-.066.303-.131.445-.131.338 0 .414.281.397.393-.014.136-.59 2.607-.59 2.607h1.404l.491-2.068c.204-.764.307-1.152.177-1.468-.136-.353-.484-.464-.806-.464-.21 0-.596.073-.946.234-.127.061-.247.132-.374.202l.103-.438-1.493.234L12.25 23h1.451zm11.875 0 .705-2.869c.153-.066.303-.131.445-.131.338 0 .414.281.397.393-.014.136-.59 2.607-.59 2.607h1.404l.491-2.068c.204-.764.307-1.152.177-1.468-.136-.353-.484-.464-.806-.464-.21 0-.596.073-.946.234-.127.061-.247.132-.374.202l.103-.438-1.493.234L24.125 23h1.451zM17 23h1.451l.75-3-1.486.22zm18.424-6.38c-.414-.603-1.269-.615-2.257-.62h-2.341L29 23h1.579l.665-2.5h.294c1.007 0 1.972-.014 2.809-.618.585-.426 1.033-.992 1.228-1.757a2.8 2.8 0 0 0 .096-.633c.007-.293-.083-.645-.247-.872zm-1.682 1.57c-.115.467-.428.86-.822 1.049-.324.16-.721.137-1.125.136h-.252L32.175 17h.62c.75 0 .988.477.986.875 0 .103-.013.209-.039.315zM28.47 29l-.099.293c-.02.063-.1.207-.327.207h-.419V29H26.5v2.5c-.007.183.179.5.998.5h.932l.286-.876-.84.001c-.25 0-.245-.116-.248-.3-.003-.2-.003-.575-.003-.575h.794c.73 0 .89-.606.946-.787l.109-.463H28.47z" }),
382
- React__namespace.createElement("path", { fill: "#fefefe", d: "M28.824 25c-1.502 0-1.795.67-1.795.67l.206-.67h-1.21l-1.979 6.083c-.021.07-.048.18-.046.299.006.282.174.618.964.618l.718-.001.32-.999h-.485c-.157 0-.125-.13-.125-.13l.709-2.152h1.778c1.47 0 1.743-.9 1.875-1.31L30.538 25h-1.714zm-.526 3h-2.001l.206-.604h2.005l-.21.604zm.524-1.482s-1.012-.01-1.175.02c-.717.124-1.018.508-1.018.508L26.967 26h2.023l-.168.518zm8.685-7.284-.028.111a1.065 1.065 0 0 0-.811-.345c-.5 0-.937.179-1.45.617-.451.39-.677.926-.811 1.439-.052.19-.083.491-.083.694 0 1.25 1.082 1.25 1.345 1.25.395 0 .71-.151.965-.347l-.091.347h1.451L39 19l-1.493.234zm-1.409 2.882c-.063 0-.438 0-.429-.411a2.85 2.85 0 0 1 .125-.691c.17-.608.399-1.139 1-1.139.47 0 .461.377.26 1.133a3.459 3.459 0 0 1-.348.8c-.185.278-.396.308-.608.308zm-12.33-2.623c-.297-.373-.838-.492-1.402-.493-.339 0-1.149.031-1.796.579-.465.396-.69.934-.831 1.449-.142.525-.316 1.471.596 1.824.281.116.69.148.955.148.675.001 1.372-.174 1.908-.695.413-.422.614-1.051.685-1.31.231-.857.081-1.258-.115-1.502zm-2.339 2.622c-.063 0-.438 0-.429-.411.004-.203.06-.471.125-.691.169-.572.4-1.139 1-1.139.47 0 .461.377.26 1.133a3.459 3.459 0 0 1-.348.8c-.185.279-.396.309-.608.308zm-.582 5-.291.885h.846l-.248.769h-.848l-.306.937h.845l-.536 1.639c-.072.217-.075.654.738.654h1.627L23 31h-1.181c-.25 0-.183-.177-.183-.177l.368-1.132h1.746l.302-.921h-1.747l.255-.77h1.713l.297-.885h-3.723zm18.853.801L40 27h-4.037l-.294.916h1.211l-.247.743h-1.232l-.263.812h1.082l-.963 1.265a.608.608 0 0 1-.508.264h-.486l.095-.289h-.418L35.479 26h.547l.172-.518v.517c0 .434.125.626.821.626h.478l.303-.935h-.223c-.147.003-.217-.044-.205-.138V25h-1.25c-1.175 0-1.903.055-2.193.132-.351.09-.807.357-.807.357l.157-.489H31.98l-1.862 5.722h-.28l-.318.968h2.874l-.101.31h1.229l.1-.31h.402l-.105.31h1.02c.259 0 .468-.058.642-.155.182-.101.325-.244.447-.407l.756-1.006.115 1.055c.029.192.103.513.892.513h.568l.329-1h-.371c-.265 0-.322-.195-.337-.297l-.132-1.024h-.615l.25-.208h1.703l.268-.812h-1.585l.251-.743h1.58zM32.964 26h1.303l-.278.853s-.462.028-.693.08c-.393.09-.72.248-.72.248L32.964 26zm-.235 4.722h-1.306l.347-1.064h1.303l-.344 1.064zm.679-2.1s-.346.043-.574.095c-.399.115-.855.283-.855.283l.4-1.218h1.308l-.279.84z" })));
383
- React.forwardRef(SvgCreditCardLogoUnionpay);
564
+ const SvgAlertCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
565
+ React__namespace.createElement("path", { d: "M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Zm.9 12.6a.9.9 0 1 1-1.8 0 .9.9 0 0 1 1.8 0Zm0-3.15a.9.9 0 1 1-1.8 0V8.4a.9.9 0 1 1 1.8 0v4.05Z", fill: color })));
566
+ const ForwardRef$2x = React.forwardRef(SvgAlertCircle);
384
567
 
385
- const SvgCreditCardLogoVisa = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
386
- React__namespace.createElement("path", { fill: "#1565C0", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
387
- React__namespace.createElement("path", { fill: "#FFF", d: "m15.186 19-2.626 7.832s-.667-3.313-.733-3.729c-1.495-3.411-3.701-3.221-3.701-3.221L10.726 30v-.002h3.161L18.258 19h-3.072zm2.503 11h2.871l1.736-11h-2.907zm20.319-11h-3.021l-4.71 11h2.852l.588-1.571h3.596L37.619 30h2.613l-2.224-11zm-3.495 7.328 1.563-4.157.818 4.157h-2.381zm-8.144-4.122c0-.606.498-1.057 1.926-1.057.928 0 1.991.674 1.991.674l.466-2.309s-1.358-.515-2.691-.515c-3.019 0-4.576 1.444-4.576 3.272 0 3.306 3.979 2.853 3.979 4.551 0 .291-.231.964-1.888.964-1.662 0-2.759-.609-2.759-.609l-.495 2.216s1.063.606 3.117.606c2.059 0 4.915-1.54 4.915-3.752 0-2.661-3.985-2.853-3.985-4.041z" }),
388
- React__namespace.createElement("path", { fill: "#FFC107", d: "m12.212 24.945-.966-4.748s-.437-1.029-1.573-1.029h-4.44s5.661 1.672 6.979 5.777z" })));
389
- React.forwardRef(SvgCreditCardLogoVisa);
568
+ const SvgAnimalBird = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
569
+ React__namespace.createElement("path", { d: "M20.217 3a.782.782 0 0 0-.17.018c-2.389.07-6.78 1.674-7.36 1.913-.882.363-1.154 1.095-1.323 1.365-.672 1.069-.958 1.614-1.131 1.48-.199-.156-.743-.616-1.147-.764-.403-.147-.688-.054-.993.043-.315-.197-1.313-.275-1.313-.275s.078.998.275 1.313c-.096.305-.19.588-.043.992.146.404.608.95.763 1.148.134.173-.41.459-1.48 1.13-.27.17-1 .44-1.365 1.323-.239.58-1.843 4.976-1.912 7.365a.783.783 0 0 0 .818.946c.658.003 2.814.078 4.034-1.064 1.324-1.24 1.136-4.155 2.956-5.975.685 0 1.176.596 1.612 1.371.282.501.736 1.758.736 3.323a.783.783 0 0 0 .876.777c1.548-.074 3.428-1.95 3.428-1.95s1.864-1.868 1.95-3.414a.786.786 0 0 0 .007-.1v-.008a.783.783 0 0 0-.783-.783c-1.565 0-2.822-.454-3.323-.735-.776-.436-1.371-.927-1.371-1.613 1.82-1.82 4.737-1.632 5.977-2.956C21.07 6.657 21 4.523 20.997 3.85a.782.782 0 0 0-.78-.851Z", fill: color })));
570
+ const ForwardRef$2w = React.forwardRef(SvgAnimalBird);
390
571
 
391
- const SvgCrossClipboard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
392
- React__namespace.createElement("path", { d: "M20 3.8h-5.497C14.136 2.753 13.16 2 12 2c-1.16 0-2.136.753-2.503 1.8H4V20h16V3.8Zm-8 0c.49 0 .889.403.889.9s-.398.9-.889.9a.895.895 0 0 1-.889-.9c0-.497.398-.9.889-.9Zm3.556 9.9h-2.667v2.7H11.11v-2.7H8.444v-1.8h2.667V9.2h1.778v2.7h2.667v1.8Z", fill: color })));
393
- const ForwardRef$1F = React.forwardRef(SvgCrossClipboard);
572
+ const SvgAnimalCat = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
573
+ React__namespace.createElement("path", { d: "M18.346 9.555c.29-.908.573-2.172.653-3.79a.73.73 0 0 0-.889-.746c-1.413.33-2.458.816-3.21 1.285A7.25 7.25 0 0 0 12 5.7a7.25 7.25 0 0 0-2.9.604c-.753-.469-1.797-.954-3.21-1.285a.73.73 0 0 0-.89.746c.081 1.618.363 2.882.655 3.79A6.343 6.343 0 0 0 5 12.35C5 16.023 9.2 19 12 19s7-2.977 7-6.65c0-1-.239-1.944-.654-2.795Zm-7.973 3.006c-.177.068-.45.14-.818.14-1.364 0-1.679-1.088-1.75-1.59a.347.347 0 0 1 .223-.373c.177-.067.45-.138.818-.138 1.363 0 1.678 1.087 1.75 1.589a.343.343 0 0 1-.223.372Zm2.934 2.128c-.324.335-.827.62-1.105.762a.443.443 0 0 1-.403 0c-.278-.143-.782-.428-1.105-.762-.222-.23-.022-.59.315-.59h1.982c.337 0 .537.36.315.59h.001Zm1.138-1.99c-.368 0-.64-.07-.818-.14a.344.344 0 0 1-.224-.37c.072-.502.387-1.59 1.75-1.59.369 0 .642.07.819.14.155.06.246.21.224.373-.072.501-.387 1.588-1.75 1.588h-.001Z", fill: color })));
574
+ const ForwardRef$2v = React.forwardRef(SvgAnimalCat);
394
575
 
395
- const SvgCrossHatPerson = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
396
- React__namespace.createElement("path", { d: "M12 2c-3.014 0-3.562.869-3.656 1.137a.472.472 0 0 0-.025.1l-.452 4.076c.6-.268 1.42-.233 2.482-.176.494.027 1.054.063 1.651.063s1.157-.036 1.651-.062c1.06-.059 1.883-.092 2.483.175l-.453-4.075a.477.477 0 0 0-.024-.1C15.561 2.87 15.011 2 12 2Zm-.391 1.6h.782v1.2h1.174v.8h-1.174v1.2h-.782V5.6h-1.174v-.8h1.174V3.6ZM9.518 7.9c-.734-.022-1.296.026-1.566.287-.175.173-.256.479-.256.938 0 2.426 1.93 4.4 4.304 4.4 2.373 0 4.304-1.974 4.304-4.4 0-.46-.08-.765-.256-.937-.358-.348-1.246-.31-2.36-.25C13.185 7.963 12.618 8 12 8c-.618 0-1.185-.036-1.688-.063-.278-.015-.55-.029-.794-.037ZM12 13.925c-.877 0-1.75.081-2.58.237l2.58 6.4 2.617-6.387a13.877 13.877 0 0 0-2.617-.25Zm-3.35.412c-3.185.791-5.65 2.601-5.65 4.5V22h9a.4.4 0 0 1-.367-.25L8.65 14.337ZM12 22h9v-3.162c0-1.89-2.438-3.704-5.6-4.5l-3.034 7.412A.403.403 0 0 1 12 22Z", fill: color })));
397
- const ForwardRef$1E = React.forwardRef(SvgCrossHatPerson);
576
+ const SvgAnimalCow = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
577
+ React__namespace.createElement("path", { d: "M16.313 5c-.4 1.155.26 2 .31 2.103.195.295.258.445.498.838.49.8-.48 1.412-.918.64-1.051-1.851-1.16-2.317-2.351-2.317-.385 0-2.736.382-4.445.382-2.41 0-3.703-.382-5.185-.382-.834 0-1.481.806-1.481 1.526v3.816a.752.752 0 0 0-.741.763c0 .986.74 1.526.74 1.526s.741-.516.741-1.526V9.336c.37.897.741 2.042.741 3.033 0 2.072-.74 2.635-.74 3.288v3.58c0 .421.331.763.74.763h.741c0-1.961.301-3.3.68-4.216.33.261.724.4 1.143.4.92 0 1.684-.684 1.846-1.584.918.4 2.098.821 2.998.821h1.564c.38 0 .704.284.766.67l.53 3.271c.06.369.368.638.73.638h.854s-.156-2.407-.265-4.275c-.059-1.008 1.396-.813 1.752-1.86.448-1.312.735-3.022 1.476-3.022h1.923c.441 0 1.04-1.14 1.04-1.527 0-.386-.887-1.478-1.198-1.799-.185-.19-.67-1.418-1.186-1.418-.274 0-1.298.172-1.689.32-.257.098.038-1.433-1.614-1.419ZM11.63 16.566v2.47c0 .532.419.964.936.964h.516l.17-1.316-.342-2.118h-1.28Zm-3.658.504a2.878 2.878 0 0 1-1.638.225c-.017.074-.028.156-.043.232l.35 1.75c.085.42.444.723.861.723h.887c-.13-.546-.369-1.7-.417-2.93Z", fill: color })));
578
+ const ForwardRef$2u = React.forwardRef(SvgAnimalCow);
398
579
 
399
- const SvgCrossPaw = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
400
- React__namespace.createElement("path", { d: "M9.674 2.88a1.872 1.872 0 0 0-1.872 1.872v3.05h-3.05A1.872 1.872 0 0 0 2.88 9.675v3.692c0 1.034.838 1.872 1.871 1.872h3.051v3.05c0 1.034.838 1.872 1.872 1.872h3.692a.641.641 0 1 0 0-1.282H9.674a.59.59 0 0 1-.59-.59v-3.691a.641.641 0 0 0-.64-.641H4.75a.59.59 0 0 1-.59-.59V9.674a.59.59 0 0 1 .59-.59h3.692c.354 0 .641-.287.641-.64V4.751a.59.59 0 0 1 .59-.59h3.692a.59.59 0 0 1 .59.59v3.691c0 .354.287.641.64.641h3.692a.59.59 0 0 1 .59.59v3.077a.64.64 0 1 0 1.282 0V9.674a1.872 1.872 0 0 0-1.872-1.871h-3.05V4.752a1.872 1.872 0 0 0-1.872-1.872H9.674Z", fill: color }),
401
- React__namespace.createElement("path", { d: "M16.438 13.92h.143a.74.74 0 0 1 .417.17c.295.276.475.652.505 1.054.123.768-.178 1.414-.683 1.496h-.109a.684.684 0 0 1-.437-.177 1.602 1.602 0 0 1-.518-1.047c-.123-.768.177-1.408.682-1.496ZM18.99 14.09a.773.773 0 0 1 .41-.17h.15c.491.095.805.734.696 1.503-.035.401-.22.775-.519 1.047a.684.684 0 0 1-.45.17h-.11c-.49-.088-.804-.734-.695-1.503.034-.401.22-.775.518-1.047ZM14.446 16.184a.81.81 0 0 1 .177 0h.027a1.114 1.114 0 0 1 .997.85c.107.316.095.66-.034.966a.776.776 0 0 1-.471.456.682.682 0 0 1-.205 0 1.114 1.114 0 0 1-.928-.85 1.356 1.356 0 0 1 0-.966.782.782 0 0 1 .437-.456ZM20.69 16.455c.173-.152.39-.247.62-.27h.028c.06.004.12.016.177.033a.787.787 0 0 1 .464.422c.122.297.134.627.035.932a1.108 1.108 0 0 1-.963.85.683.683 0 0 1-.204 0 .78.78 0 0 1-.471-.422 1.356 1.356 0 0 1-.034-.966c.052-.224.174-.427.348-.579ZM16.63 18.374c.347-.789.832-1.278 1.364-1.278.532 0 1.017.49 1.365 1.278a2.723 2.723 0 0 0 1.242 1.36.9.9 0 0 1 .58.83c0 .979-1.61 1.516-3.187 1.516-1.576 0-3.187-.537-3.214-1.516a.896.896 0 0 1 .58-.83c.57-.29 1.02-.772 1.27-1.36Z", fill: color })));
402
- const ForwardRef$1D = React.forwardRef(SvgCrossPaw);
580
+ const SvgAnimalDog = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
581
+ React__namespace.createElement("path", { d: "M14.4 3v2.429L12.842 8.58c-.271.55-.826.895-1.431.895H6.72L5.359 8.101a.766.766 0 0 0-1.119 0 .787.787 0 0 0 0 1.132L5.6 10.61v2.914l-.693 1.4a1.65 1.65 0 0 0-.148.46l-.586 3.561A.902.902 0 0 0 5.056 20a.9.9 0 0 0 .881-.738l.462-2.5 1.6-1.62h5.246l1.625 4.305a.852.852 0 0 0 .794.553.858.858 0 0 0 .817-1.097l-.881-3.1v-.66l1.031-2.087c.111-.224.169-.473.169-.724V8.667h.606c.637 0 1.247-.256 1.697-.712L20 7.048V5.833a.403.403 0 0 0-.4-.404h-1.2l-.566-.573a.793.793 0 0 0-.565-.237h-.87l-.72-.97A1.586 1.586 0 0 0 14.4 3Z", fill: color })));
582
+ const ForwardRef$2t = React.forwardRef(SvgAnimalDog);
403
583
 
404
- const SvgDogHouseOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
405
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 4a.379.379 0 0 0-.212.065l-8.625 5.84a.368.368 0 0 0-.163.304v1.663c0 .137.077.263.2.327a.38.38 0 0 0 .388-.023l.912-.621v9.075c0 .204.168.37.375.37H9a.372.372 0 0 0 .375-.37v-4.804c0-1.433 1.17-2.587 2.625-2.587 1.454 0 2.625 1.154 2.625 2.587v4.804c0 .204.168.37.375.37h4.125a.372.372 0 0 0 .375-.37v-9.075l.912.62a.38.38 0 0 0 .387.024c.123-.064.2-.19.201-.327v-1.663a.368.368 0 0 0-.163-.305l-8.625-5.839A.379.379 0 0 0 12.001 4Zm0 .818 8.25 5.585v.764l-8.037-5.475a.38.38 0 0 0-.426 0L3.75 11.167v-.764L12 4.818Zm6.75 6.225L12 6.445l-6.75 4.598v9.218h3.375v-4.435c0-1.832 1.515-3.326 3.375-3.326s3.375 1.494 3.375 3.326v4.435h3.375v-9.218Z", fill: color })));
406
- const ForwardRef$1C = React.forwardRef(SvgDogHouseOutlined);
584
+ const SvgAnimalHorse = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
585
+ React__namespace.createElement("path", { d: "M17.435 3c-3.343 0-4.448 3.664-4.677 4.627-.247.08-.749.204-1.48.204-.515 0-.9-.083-1.354-.18-.528-.115-1.139-.253-2.018-.253-1.872 0-2.947 1.102-2.947 3.024 0 .721.721 2.516.915 2.988l-.188 1.71a.45.45 0 0 0 .013.145l1.003 4.024c.132.441.502.711.965.711h.928a.42.42 0 0 0 .326-.145.385.385 0 0 0 .076-.337l-.916-3.964a9.075 9.075 0 0 0 1.317-2.024c.505.223 1.44.53 2.834.53.69 0 1.427-.072 2.194-.217l.777 5.169a.983.983 0 0 0 .978.952H16.871c.23 0 .414-.176.414-.398a.389.389 0 0 0-.013-.096c-.028-.708-.218-5.52-.338-6.687.77-1.025.818-2.418.852-3.542.011-.342.022-.727.063-1.036.49.446 1.216.596 1.78.494.424-.077.997.176 1.166.265a.418.418 0 0 0 .49-.06l.438-.434a.958.958 0 0 0 .063-1.277l-1.893-2.097.576-.698a.401.401 0 0 0 .088-.338.404.404 0 0 0-.213-.277C19.3 3.262 18.324 3 17.435 3ZM4.645 8.373C3.468 8.914 2 10.29 2 13.747c0 .169.11.316.276.373l2.119.735a.513.513 0 0 0 .15.024c.093 0 .176-.039.251-.096a.385.385 0 0 0 .15-.217l.013-.096c0-.015.002-.033 0-.048-.058-.473-.09-.961-.1-1.434-.33-.869-.702-1.95-.702-2.566 0-.794.18-1.48.489-2.049Zm13.705 3.17a4.61 4.61 0 0 1-.589 1.433c.019.229.03.524.05.855l.778.253-.339 1.928a1.12 1.12 0 0 0 .74 1.301l.476.193a.44.44 0 0 0 .163.036c.065 0 .129-.02.188-.048a.4.4 0 0 0 .214-.265L20.833 14c.176-.672-.141-1.354-.74-1.614l-1.743-.844Zm-8.563 2.963c-.3.526-.602.941-.84 1.241l.764 3.277c.218.154.474.253.74.253l.69.036h.025a.424.424 0 0 0 .426-.41.386.386 0 0 0-.063-.204l-1.14-3.048.651-.904a8.068 8.068 0 0 1-1.253-.241Z", fill: color })));
586
+ const ForwardRef$2s = React.forwardRef(SvgAnimalHorse);
407
587
 
408
- const SvgDogHouse = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
409
- React__namespace.createElement("path", { d: "M12 4 2 12.904h2.727V21h14.546v-8.096H22L12 4Zm3.636 15.201H8.364v-4.22L12 12.905l3.636 2.078v4.22Z", fill: color })));
410
- const ForwardRef$1B = React.forwardRef(SvgDogHouse);
588
+ const SvgArrowCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
589
+ React__namespace.createElement("path", { d: "M12 3c-4.962 0-9 4.038-9 9s4.038 9 9 9 9-4.038 9-9h-1.8c0 3.97-3.23 7.2-7.2 7.2S4.8 15.97 4.8 12 8.03 4.8 12 4.8c1.986 0 3.783.81 5.085 2.115L14.7 9.3H21V3l-2.646 2.646A8.949 8.949 0 0 0 12 3Z", fill: color })));
590
+ const ForwardRef$2r = React.forwardRef(SvgArrowCircle);
411
591
 
412
- const SvgDollarCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
413
- React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm.666 11.905v1.429h-1.332v-1.425c-1.42-.19-2.315-1.015-2.365-2.24h1.52c.073.61.688 1 1.574 1 .818 0 1.395-.396 1.395-.963 0-.48-.373-.755-1.296-.953l-.98-.208c-1.37-.287-2.04-1-2.04-2.146 0-1.22.849-2.078 2.192-2.293v-1.44h1.332v1.438c1.304.211 2.184 1.056 2.225 2.211h-1.478c-.074-.594-.627-.99-1.387-.99-.786 0-1.307.366-1.307.938 0 .464.36.73 1.24.916l.906.195c1.51.316 2.16.968 2.16 2.133.001 1.323-.882 2.195-2.359 2.398Z", fill: color })));
414
- const ForwardRef$1A = React.forwardRef(SvgDollarCircle);
592
+ const SvgArrowDownRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
593
+ React__namespace.createElement("path", { d: "M15.719 20.33a.97.97 0 0 0 1.36 0l3.269-3.217a.9.9 0 0 0 0-1.284l-3.269-3.218a.97.97 0 1 0-1.36 1.382l1.539 1.516H8.865c-2.17 0-3.91-1.713-3.91-3.85V3.979a.978.978 0 0 0-1.955 0v7.682c0 3.177 2.638 5.773 5.865 5.773h8.393l-1.54 1.515a.97.97 0 0 0 0 1.382Z", fill: color })));
594
+ const ForwardRef$2q = React.forwardRef(SvgArrowDownRight);
415
595
 
416
- const SvgDollar = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
417
- React__namespace.createElement("path", { d: "M10.751 2a.427.427 0 0 0-.418.435v1.237a.459.459 0 0 1-.299.427C8.473 4.683 7 6.16 7 8.667c0 3.166 2.666 4.167 4.333 4.834 2 .833 2.334.999 2.334 1.832 0 .834-.334 1.667-1.667 1.667-1.1 0-1.52-.567-1.633-1.234-.04-.236-.22-.433-.452-.433H7.418c-.23 0-.42.195-.397.434.15 1.535 1.078 3.429 3.008 4.135a.462.462 0 0 1 .304.43v1.233c0 .24.188.435.418.435h2.498c.23 0 .418-.195.418-.435v-1.232c0-.196.127-.366.304-.43 2.116-.775 3.029-2.977 3.029-4.57 0-3.166-2.666-4.167-4.333-4.834-2-.833-2.334-.999-2.334-1.832C10.333 7.333 11.167 7 12 7c1.1 0 1.52.567 1.633 1.234.04.236.22.433.452.433h2.497c.23 0 .42-.195.396-.434-.148-1.536-1.077-3.429-3.007-4.135a.462.462 0 0 1-.304-.43V2.434A.427.427 0 0 0 13.249 2H10.75Z", fill: color })));
418
- const ForwardRef$1z = React.forwardRef(SvgDollar);
596
+ const SvgArrowDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
597
+ React__namespace.createElement("path", { d: "M3.287 13.645a.963.963 0 1 1 1.362-1.362l6.387 6.387V3.004a.964.964 0 0 1 1.928 0V18.67l6.387-6.387a.964.964 0 1 1 1.362 1.362l-8.032 8.032a.964.964 0 0 1-1.362 0l-8.032-8.032Z", fill: color })));
598
+ const ForwardRef$2p = React.forwardRef(SvgArrowDown);
419
599
 
420
- const SvgDotsCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
421
- React__namespace.createElement("path", { d: "M12 3c-4.962 0-9 4.038-9 9s4.038 9 9 9 9-4.038 9-9-4.038-9-9-9ZM7.5 13.125a1.125 1.125 0 1 1 0-2.25 1.125 1.125 0 0 1 0 2.25Zm4.5 0a1.125 1.125 0 1 1 0-2.25 1.125 1.125 0 0 1 0 2.25Zm4.5 0a1.125 1.125 0 1 1 0-2.25 1.125 1.125 0 0 1 0 2.25Z", fill: color })));
422
- const ForwardRef$1y = React.forwardRef(SvgDotsCircle);
600
+ const SvgArrowLeft = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
601
+ React__namespace.createElement("path", { d: "M10.395 3.267a.965.965 0 1 1 1.363 1.362L5.37 11.016h15.666a.964.964 0 0 1 0 1.928H5.37l6.388 6.387a.963.963 0 1 1-1.363 1.362l-8.032-8.032a.964.964 0 0 1 0-1.362l8.032-8.032Z", fill: color })));
602
+ const ForwardRef$2o = React.forwardRef(SvgArrowLeft);
423
603
 
424
- const SvgDotsHorizontal = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
425
- React__namespace.createElement("path", { d: "M3 12a2 2 0 1 0 4.001-.001A2 2 0 0 0 3 12Zm7 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm7 0A2 2 0 1 0 21 11.998 2 2 0 0 0 17 12Z", fill: color })));
426
- const ForwardRef$1x = React.forwardRef(SvgDotsHorizontal);
604
+ const SvgArrowRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
605
+ React__namespace.createElement("path", { d: "M13.605 20.733a.965.965 0 0 1-1.67-.674.963.963 0 0 1 .307-.688l6.388-6.387H2.964a.964.964 0 0 1 0-1.928H18.63L12.243 4.67a.964.964 0 1 1 1.362-1.362l8.032 8.032a.964.964 0 0 1 0 1.362l-8.032 8.032Z", fill: color })));
606
+ const ForwardRef$2n = React.forwardRef(SvgArrowRight);
427
607
 
428
- const SvgDotsVertical = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
429
- React__namespace.createElement("path", { d: "M12 3a2 2 0 1 0 .001 4.001A2 2 0 0 0 12 3Zm0 7a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7A2 2 0 1 0 12.002 21 2 2 0 0 0 12 17Z", fill: color })));
430
- const ForwardRef$1w = React.forwardRef(SvgDotsVertical);
608
+ const SvgArrowUp = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
609
+ React__namespace.createElement("path", { d: "M20.713 10.355a.963.963 0 0 1-.674 1.668.964.964 0 0 1-.688-.306L12.964 5.33v15.665a.964.964 0 1 1-1.928 0V5.33L4.65 11.717a.964.964 0 1 1-1.362-1.362l8.032-8.033a.964.964 0 0 1 1.362 0l8.032 8.033Z", fill: color })));
610
+ const ForwardRef$2m = React.forwardRef(SvgArrowUp);
431
611
 
432
- const SvgDoubleArrowCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
433
- React__namespace.createElement("path", { d: "M12 3c-4.962 0-9 4.038-9 9h1.8c0-3.722 2.838-6.793 6.465-7.163a7.255 7.255 0 0 1 .91-.035 7.163 7.163 0 0 1 4.91 2.113L14.7 9.3H21V3l-2.64 2.64A8.972 8.972 0 0 0 12 3ZM12.735 19.163a7.162 7.162 0 0 1-5.82-2.078L9.3 14.7H3V21l2.64-2.64A8.972 8.972 0 0 0 12 21", fill: color }),
434
- React__namespace.createElement("path", { d: "M12.735 19.163c.325-.033.643-.088.954-.163 3.158-.762 5.511-3.611 5.511-7H21a8.96 8.96 0 0 1-.514 3 9.044 9.044 0 0 1-5.813 5.595A8.967 8.967 0 0 1 12 21", fill: color })));
435
- const ForwardRef$1v = React.forwardRef(SvgDoubleArrowCircle);
612
+ const SvgArrowsIn = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
613
+ React__namespace.createElement("path", { d: "M13.159 4.044a.966.966 0 0 0-.063.379v5.359a.964.964 0 0 0 .963.963h5.359a.964.964 0 1 0 0-1.926h-3.033l5.078-5.078a.964.964 0 1 0-1.364-1.363l-5.077 5.078V4.423a.962.962 0 0 0-1.657-.704.965.965 0 0 0-.206.325ZM10.682 19.797a.964.964 0 0 0 .063-.379V14.06a.964.964 0 0 0-.963-.963h-5.36a.964.964 0 1 0 0 1.926h3.033L2.378 20.1a.964.964 0 0 0 1.363 1.363l5.078-5.078v3.033a.964.964 0 0 0 1.863.38Z", fill: color })));
614
+ const ForwardRef$2l = React.forwardRef(SvgArrowsIn);
436
615
 
437
- const SvgDownload = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
438
- React__namespace.createElement("path", { d: "M10.687 3c-1.157 0-2.096.94-2.096 2.097v5.59H6.32c-.986 0-1.193.159-.35 1.005l4.608 4.608c1.537 1.537 1.518 1.542 3.058 0l4.586-4.608c.843-.846.562-1.005-.328-1.005H15.58v-5.59A2.097 2.097 0 0 0 13.483 3h-2.796ZM3 16.278v2.796c0 1.157.94 2.096 2.097 2.096h13.976c1.158 0 2.097-.94 2.097-2.097v-2.795h-1.398v2.796a.7.7 0 0 1-.698.698H5.096a.7.7 0 0 1-.7-.698v-2.796H3Z", fill: color })));
439
- const ForwardRef$1u = React.forwardRef(SvgDownload);
616
+ const SvgArrowsOut = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
617
+ React__namespace.createElement("path", { d: "M21.682 8.797a.964.964 0 0 0 .063-.379V3.06a.964.964 0 0 0-.963-.963h-5.36a.964.964 0 1 0 0 1.926h3.034L13.378 9.1a.964.964 0 1 0 1.363 1.363l5.078-5.078v3.033a.964.964 0 0 0 1.863.38ZM2.16 15.044a.964.964 0 0 0-.064.379v5.359a.964.964 0 0 0 .963.963h5.36a.964.964 0 1 0 0-1.926H5.384l5.078-5.078A.964.964 0 1 0 9.1 13.378l-5.078 5.078v-3.033a.964.964 0 0 0-1.863-.38Z", fill: color })));
618
+ const ForwardRef$2k = React.forwardRef(SvgArrowsOut);
440
619
 
441
- const SvgDragDrop = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
442
- React__namespace.createElement("path", { d: "M3 3v2h3V3H3Zm6 0v2h3V3H9Zm6 0v2h3V3h-3ZM3 7v3h2V7H3Zm13 0v2H9c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2h-1V7h-2ZM3 12v3h2v-3H3Zm10 0 4 4-1.7.2.61 1.32-.85.48-.73-1.44-1.33 1.2V12Z", fill: color })));
443
- const ForwardRef$1t = React.forwardRef(SvgDragDrop);
620
+ const SvgArticle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
621
+ React__namespace.createElement("path", { d: "M8.5 20v1a1 1 0 0 0 1 1H17a5 5 0 0 0 5-5V8a1 1 0 0 0-1-1h-4v2h3v8a3 3 0 0 1-3 3H8.5Z", fill: color }),
622
+ React__namespace.createElement("path", { d: "M15.5 21v-1H7a3 3 0 0 1-3-3V9H2v8a5 5 0 0 0 5 5h7.5a1 1 0 0 0 1-1Z", fill: color }),
623
+ React__namespace.createElement("path", { d: "M4 4v12.5H2V3a1 1 0 0 1 1-1h15a1 1 0 0 1 1 1v14a1 1 0 1 1-2 0V4H4Z", fill: color }),
624
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 7v4h6V7H7ZM6 5a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6Z", fill: color }),
625
+ React__namespace.createElement("path", { d: "M5 15a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1ZM6 18a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z", fill: color })));
626
+ const ForwardRef$2j = React.forwardRef(SvgArticle);
444
627
 
445
- const SvgEmailSend = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
446
- React__namespace.createElement("path", { d: "M4.565 4C3.71 4 3 4.691 3 5.524v9.905h1.565V5.524h12.522V4H4.565Zm3.13 3.048c-.478 0-.902.214-1.189.544l6.668 4.027 6.614-4.09a1.576 1.576 0 0 0-1.136-.481H7.696Zm12.522 1.74-7.043 4.355L6.13 8.888v7.303c0 .84.702 1.523 1.566 1.523h5.478V15.43c0-.421.35-.762.783-.762h2.347v-1.524c0-.42.351-.762.783-.762h1.43l1.7 1.655V8.787Zm-2.347 5.117v2.286h-3.13v1.523h3.13V20L21 16.952l-3.13-3.047Z", fill: color })));
447
- const ForwardRef$1s = React.forwardRef(SvgEmailSend);
628
+ const SvgAsterisk = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
629
+ React__namespace.createElement("path", { d: "m9.104 13.224-5.857-1.668a1.092 1.092 0 0 1-.74-1.387l.596-1.83a1.09 1.09 0 0 1 1.445-.676l5.795 2.34-.377-6.598a1.092 1.092 0 0 1 1.09-1.155h2.026a1.09 1.09 0 0 1 1.09 1.153l-.378 6.754 5.612-2.287a1.092 1.092 0 0 1 1.451.676l.599 1.863c.188.59-.15 1.218-.746 1.385l-5.987 1.672 3.94 5.016a1.09 1.09 0 0 1-.224 1.562l-1.64 1.172a1.09 1.09 0 0 1-1.562-.313L11.824 15.4 8.447 20.72c-.33.52-1.027.664-1.537.316L5.29 19.93a1.092 1.092 0 0 1-.24-1.579l4.054-5.127Z", fill: "#363C53" })));
630
+ const ForwardRef$2i = React.forwardRef(SvgAsterisk);
448
631
 
449
- const SvgEnvelopeFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
450
- React__namespace.createElement("path", { d: "M21.279 5.309a2.172 2.172 0 0 0-1.696-.809H4.417c-.6 0-1.143.241-1.536.63l9.135 5.286 9.263-5.107Z", fill: color }),
451
- React__namespace.createElement("path", { d: "M2.25 7.263v9.344c0 1.184.97 2.143 2.167 2.143h15.166c1.197 0 2.167-.96 2.167-2.143V7.524l-9.766 5.547L2.25 7.263Z", fill: color })));
452
- const ForwardRef$1r = React.forwardRef(SvgEnvelopeFilled);
632
+ const SvgBellRinging = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
633
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.68 5.342C10.68 4.606 11.276 4 12 4c.724 0 1.32.606 1.32 1.342v.645c2.114.552 3.52 2.412 3.52 4.813v3.49c0 .82.438 1.796.899 2.577l.002.002.785 1.199c.09.138.098.314.022.46a.442.442 0 0 1-.388.235H14.2C14.2 19.992 13.208 21 12 21c-1.208 0-2.2-1.008-2.2-2.237H5.84a.442.442 0 0 1-.388-.236.458.458 0 0 1 .022-.46l.789-1.203c.455-.773.897-1.814.897-2.636v-3.49c0-1.438.481-2.687 1.34-3.57.576-.589 1.324-.992 2.18-1.197v-.629Zm1.76 0a.442.442 0 0 0-.44-.447c-.244 0-.44.199-.44.447v.493l.085-.007c.07-.005.142-.011.216-.012a.38.38 0 0 1 .285.001c.08.003.156.01.233.018l.061.005v-.498Zm-9.909.213C1.55 7.177 1 9.108 1 11.158s.55 3.98 1.531 5.603l.752-.469c-.896-1.48-1.403-3.247-1.403-5.134 0-1.887.507-3.654 1.403-5.134l-.752-.469Zm18.186.469.752-.469C22.45 7.177 23 9.108 23 11.158s-.55 3.98-1.531 5.603l-.752-.469c.896-1.48 1.403-3.247 1.403-5.134 0-1.887-.507-3.654-1.402-5.134ZM12 6.684c2.425 0 3.96 1.641 3.96 4.116v3.49c0 1.123.53 2.2 1.024 3.04a.065.065 0 0 1 .01.013l.002.005.34.52H6.664l.34-.52.003-.005c.003-.004.006-.01.01-.013.5-.847 1.024-1.978 1.024-3.102v-3.49c0-1.237.402-2.238 1.086-2.939.683-.7 1.659-1.115 2.874-1.115Zm-8.8 4.474c0-1.63.438-3.095 1.24-4.41l.747.47a7.371 7.371 0 0 0-1.107 3.94c0 1.46.443 2.812 1.11 3.944l-.754.461C3.696 14.31 3.2 12.801 3.2 11.158Zm16.36-4.41-.747.47a7.37 7.37 0 0 1 1.107 3.94c0 1.46-.443 2.812-1.112 3.944l.756.461c.74-1.253 1.236-2.762 1.236-4.405 0-1.63-.438-3.095-1.24-4.41ZM12 20.104c.729 0 1.32-.6 1.32-1.342h-2.64c0 .741.591 1.342 1.32 1.342Z", fill: color })));
634
+ const ForwardRef$2h = React.forwardRef(SvgBellRinging);
453
635
 
454
- const SvgEnvelopeOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
455
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 6a1.991 1.991 0 0 1 .45-1.263C1.815 4.287 2.373 4 3 4h18a1.996 1.996 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6Zm20 2.094-9 5.091-9-5.09V18h18V8.094ZM3.434 6 12 10.815 20.566 6H3.434Z", fill: color })));
456
- const ForwardRef$1q = React.forwardRef(SvgEnvelopeOutlined);
636
+ const SvgBell = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
637
+ React__namespace.createElement("path", { d: "M12 3c-.725 0-1.313.605-1.313 1.35v.626c-2.263.6-3.937 2.708-3.937 5.224v5.4l-1.343 1.04h-.002A.907.907 0 0 0 5 17.4c0 .497.392.9.875.9h12.25a.888.888 0 0 0 .875-.9.904.904 0 0 0-.405-.76L17.25 15.6v-5.4c0-2.516-1.674-4.624-3.938-5.224V4.35C13.313 3.605 12.726 3 12 3Zm-1.75 16.2c0 .99.787 1.8 1.75 1.8s1.75-.81 1.75-1.8h-3.5Z", fill: color })));
638
+ const ForwardRef$2g = React.forwardRef(SvgBell);
457
639
 
458
- const SvgExternalLink = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
459
- React__namespace.createElement("path", { d: "M20 11a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h6a1 1 0 1 0 0-2H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-6a1 1 0 0 0-1-1Z", fill: color }),
460
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.293 11.293A1 1 0 0 1 21 12v6a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h6a1 1 0 1 1 0 2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-6a1 1 0 0 1 .293-.707Z", fill: color }),
461
- React__namespace.createElement("path", { d: "M16 5h1.58l-6.29 6.28a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219L19 6.42V8a1 1 0 0 0 2 0V4a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2Z", fill: color }),
462
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.266 3.036A1 1 0 0 0 20 3h-4a1 1 0 1 0 0 2h1.58l-6.29 6.28a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219L19 6.42V8a1 1 0 0 0 2 0V4a1 1 0 0 0-.734-.964Zm-7.917 9.306Zm0 0Z", fill: color })));
463
- const ForwardRef$1p = React.forwardRef(SvgExternalLink);
640
+ const SvgBone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
641
+ React__namespace.createElement("path", { d: "M8.22 22.5a3.325 3.325 0 0 1-3.36-3.36 3.325 3.325 0 0 1-3.36-3.36 3.325 3.325 0 0 1 3.36-3.36c.771 0 1.483.25 2.084.725l6.203-6.203a3.406 3.406 0 0 1-.727-2.082 3.325 3.325 0 0 1 3.36-3.36 3.325 3.325 0 0 1 3.36 3.36 3.325 3.325 0 0 1 3.36 3.36 3.325 3.325 0 0 1-3.36 3.36c-.771 0-1.483-.25-2.084-.725l-6.203 6.203c.466.597.727 1.335.727 2.082a3.325 3.325 0 0 1-3.36 3.36Z", fill: "#363C53" })));
642
+ const ForwardRef$2f = React.forwardRef(SvgBone);
464
643
 
465
- const SvgEyeOpen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
466
- React__namespace.createElement("path", { d: "M12.001 5c-5.61 0-8.273 5.144-8.921 6.612a.976.976 0 0 0 0 .774C3.728 13.855 6.391 19 12.001 19c5.591 0 8.256-5.108 8.914-6.597a1 1 0 0 0 0-.806C20.257 10.107 17.593 5 12.001 5Zm0 2.626c2.26 0 4.09 1.958 4.09 4.373 0 2.417-1.83 4.376-4.09 4.376-2.258 0-4.09-1.96-4.09-4.376 0-2.418 1.832-4.374 4.09-4.374v.001Zm0 1.75c-1.354 0-2.455 1.175-2.455 2.624 0 1.45 1.102 2.625 2.455 2.625 1.355 0 2.456-1.176 2.456-2.626 0-1.448-1.1-2.624-2.456-2.624Z", fill: color })));
467
- const ForwardRef$1o = React.forwardRef(SvgEyeOpen);
644
+ const SvgBookmarkFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
645
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 3.917C4 3.41 4.408 3 4.911 3H19.09c.503 0 .911.41.911.917v16.166a.917.917 0 0 1-.53.833.907.907 0 0 1-.974-.137L12 15.18l-6.495 5.6a.907.907 0 0 1-.974.137.917.917 0 0 1-.531-.833V3.917Z", fill: color })));
646
+ const ForwardRef$2e = React.forwardRef(SvgBookmarkFilled);
468
647
 
469
- const SvgEyeSlash = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
470
- React__namespace.createElement("path", { d: "M5.163 4 3.998 5.165l2.287 2.287c-.445.363-.84.748-1.194 1.135a12.458 12.458 0 0 0-2.018 3.08.798.798 0 0 0 0 .665c.608 1.341 3.23 6.261 8.926 6.261.99 0 1.888-.149 2.697-.405a8.14 8.14 0 0 0 1.63-.697L18.836 20 20 18.834 5.163 4ZM12 5.407c-.989 0-1.887.149-2.696.404l1.371 1.368a6.782 6.782 0 0 1 1.327-.125c4.352 0 6.546 3.52 7.263 4.945a10.541 10.541 0 0 1-1.524 2.243l1.17 1.17a12.48 12.48 0 0 0 2.017-3.079.8.8 0 0 0 0-.666c-.608-1.342-3.23-6.261-8.926-6.261l-.002.001ZM7.456 8.622l1.707 1.707a3.225 3.225 0 0 0-.454 1.876 3.288 3.288 0 0 0 3.084 3.082c.066.01.14.009.206.009.61 0 1.178-.165 1.671-.46l1.427 1.427a6.718 6.718 0 0 1-1.771.558c-.42.082-.856.123-1.327.123-4.352 0-6.546-3.518-7.263-4.943.272-.544.767-1.402 1.524-2.244a9.469 9.469 0 0 1 1.196-1.135Zm4.749.09 3.083 3.082a3.288 3.288 0 0 0-3.083-3.082Zm-1.797 2.863 2.017 2.015c-.132.04-.278.058-.426.058-.906 0-1.649-.742-1.649-1.649 0-.147.018-.293.058-.424Z", fill: color })));
471
- const ForwardRef$1n = React.forwardRef(SvgEyeSlash);
648
+ const SvgBookmarkOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
649
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 3.917C4 3.41 4.408 3 4.911 3H19.09c.503 0 .911.41.911.917v16.166a.917.917 0 0 1-.53.833.907.907 0 0 1-.974-.137L12 15.18l-6.495 5.6a.907.907 0 0 1-.974.137.917.917 0 0 1-.531-.833V3.917Zm1.823.917V18.09l5.584-4.815a.907.907 0 0 1 1.186 0l5.584 4.815V4.834H5.823Z", fill: color })));
650
+ const ForwardRef$2d = React.forwardRef(SvgBookmarkOutlined);
472
651
 
473
- const SvgEyedropper = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
474
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.388 3.99c.63-.63 1.527-.99 2.335-.99.366 0 .731.074 1.08.213.46.154.89.413 1.254.777a3.264 3.264 0 0 1 0 4.59l-2.417 2.423.841.843-1.27 1.274-.76-.761c-1.097 1.057-4.288 4.135-5.102 4.951-1.526 1.53-2.424 1.71-3.411 1.89l-.115.016c-.572.078-1.029.14-2.04 1.154l-.628.63L3 18.84l.628-.63c1.167-1.17 1.257-1.71 1.257-2.25.09-.99.27-1.8 1.796-3.33A399.2 399.2 0 0 1 11.73 7.7l-.02-.02.037-.037-.822-.824 1.27-1.274.822.824 2.37-2.379Zm-2.404 4.967a397.492 397.492 0 0 0-4.956 4.844C6.86 14.969 6.77 15.42 6.77 16.05c0 .54-.09 1.08-.45 1.71.45-.27.9-.36 1.438-.36.628-.09 1.167-.18 2.335-1.35.69-.693 3.014-2.933 4.404-4.274l.662-.639-2.175-2.18Z", fill: color })));
475
- const ForwardRef$1m = React.forwardRef(SvgEyedropper);
652
+ const SvgBrush = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
653
+ React__namespace.createElement("path", { d: "M16.351 3.001a.338.338 0 0 0-.045.012.36.36 0 0 0-.287.253.36.36 0 0 0 .103.366l1.396 1.363.023.035c.007.009.015.015.023.022.347.444.503.98.263 1.747l-1.098-1.07a.374.374 0 0 0-.298-.113h-.034a.361.361 0 0 0-.183.62l1.293 1.285a9.25 9.25 0 0 1-.72 1.14l-1.088-1.106a.375.375 0 0 0-.297-.124l-.046.012a.363.363 0 0 0-.275.25.357.357 0 0 0 .092.359l1.166 1.194a24.27 24.27 0 0 1-.857 1.014l-1.11-1.082a.373.373 0 0 0-.297-.112h-.034a.357.357 0 0 0-.183.62l1.121 1.115.011.012c-.329.347-.65.645-.96.9l-1.26-1.228a.372.372 0 0 0-.262-.113.468.468 0 0 0-.07.011.367.367 0 0 0-.276.25.356.356 0 0 0 .093.359l1.179 1.161c-.434.301-.836.52-1.201.676a.136.136 0 0 0-.024-.023l-1.257-1.228a.373.373 0 0 0-.297-.113h-.034a.362.362 0 0 0-.286.254.357.357 0 0 0 .103.365l1.006 1.005c-.386.095-.7.134-.904.134-.609 0-1.01-.17-1.2-.35l-.012-.01c-.005-.006-.007-.018-.011-.023a.153.153 0 0 0-.035-.034L7.864 11.41a.373.373 0 0 0-.297-.113l-.045.011a.357.357 0 0 0-.184.62l1.327 1.308c.018.267.074.524.126.755.08.35.141.646.045.834-.097.193-.344.33-.686.518-.549.302-1.299.72-2.06 1.713-1.105 1.444-1.409 2.917-.732 3.584.24.235.556.361.905.361.71 0 1.581-.508 2.585-1.51.975-.973 1.352-2.061 1.6-2.784.096-.274.2-.591.276-.665.694-.672 1.215-.775 1.875-.913.96-.2 2.157-.453 4.199-2.4C18.927 10.698 20 8.763 20 6.98c0-1.688-1.301-2.436-2.013-2.548l-1.338-1.319a.368.368 0 0 0-.298-.112Zm-2.939.35a.352.352 0 0 0-.046.011.36.36 0 0 0-.183.62l.95.935c.145.144.38.144.525 0a.36.36 0 0 0 0-.519l-.95-.935a.376.376 0 0 0-.296-.113ZM11.603 4.5a.361.361 0 0 0-.285.254.355.355 0 0 0 .103.365l1.029 1.016a.37.37 0 0 0 .367.125.359.359 0 0 0 .148-.633l-1.03-1.014a.37.37 0 0 0-.297-.113h-.034Zm2.62.778a.36.36 0 0 0-.184.62l.688.676a.368.368 0 0 0 .641-.145.36.36 0 0 0-.126-.363l-.688-.676a.37.37 0 0 0-.296-.112h-.035Zm-4.13.575a.376.376 0 0 0-.045.011.36.36 0 0 0-.183.62l1.006.98c.09.107.23.156.368.126a.358.358 0 0 0 .147-.633l-.994-.991a.375.375 0 0 0-.299-.114Zm3.032.867a.357.357 0 0 0-.183.62l.686.677a.37.37 0 0 0 .642-.145.358.358 0 0 0-.127-.363l-.686-.675a.372.372 0 0 0-.297-.113h-.035Zm-4.38.733a.361.361 0 0 0-.287.254.356.356 0 0 0 .103.365l.938.925a.368.368 0 0 0 .642-.145.36.36 0 0 0-.127-.362l-.937-.925a.373.373 0 0 0-.263-.113h-.069Zm2.916.71a.358.358 0 0 0-.183.62l.686.676a.37.37 0 0 0 .642-.145.357.357 0 0 0-.127-.362l-.687-.677a.372.372 0 0 0-.297-.112h-.034ZM7.817 9.38a.333.333 0 0 0-.045.012.362.362 0 0 0-.287.253.362.362 0 0 0 .103.367l.802.788c.145.144.38.144.526 0a.364.364 0 0 0 0-.518l-.801-.789a.372.372 0 0 0-.298-.113Zm2.38.226a.357.357 0 0 0-.183.62l.63.631c.144.143.379.143.525 0a.362.362 0 0 0 0-.52l-.64-.618a.373.373 0 0 0-.298-.113h-.035ZM9.1 11.049a.359.359 0 0 0-.183.618l.446.452c.145.144.38.144.526 0a.362.362 0 0 0 0-.518l-.458-.44a.374.374 0 0 0-.298-.113H9.1v.001Z", fill: color })));
654
+ const ForwardRef$2c = React.forwardRef(SvgBrush);
476
655
 
477
- const SvgFaceScreen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
478
- React__namespace.createElement("path", { d: "M3.667 5C2.746 5 2 5.716 2 6.6v9.6c0 .884.746 1.6 1.667 1.6h16.666c.921 0 1.667-.716 1.667-1.6V6.6c0-.884-.746-1.6-1.667-1.6H3.667Zm0 2.4h2.5V9h-2.5V7.4ZM12 7.4c.795 0 1.042.542 1.042.542.71 0 1.041.747 1.041 1.624 0 .437-.184.8-.184.8.074.044.196.184.166.432-.056.464-.25.581-.372.591-.047.432-.701.986-.858 1.066v.723c.312.974 2.042.496 2.5 2.222H8.667c.458-1.726 2.188-1.248 2.5-2.222v-.723c-.157-.08-.811-.634-.858-1.066-.123-.01-.316-.127-.373-.59-.03-.25.09-.39.165-.433 0 0-.183-.401-.183-.8 0-1.184.61-2.166 2.082-2.166Zm-8.333 3.2h2.5v1.6h-2.5v-1.6Zm0 3.2h2.5v1.6h-2.5v-1.6Zm4.166 5.6a.865.865 0 0 0-.597.23.799.799 0 0 0-.248.57.773.773 0 0 0 .248.57.836.836 0 0 0 .597.23h8.334a.865.865 0 0 0 .597-.23.799.799 0 0 0 .248-.57.773.773 0 0 0-.248-.57.84.84 0 0 0-.597-.23H7.833Z", fill: color })));
479
- const ForwardRef$1l = React.forwardRef(SvgFaceScreen);
656
+ const SvgBulkSelect = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
657
+ React__namespace.createElement("path", { d: "M19.646 6.264A2.025 2.025 0 0 1 21 8.175v9A3.825 3.825 0 0 1 17.175 21h-9a2.026 2.026 0 0 1-1.91-1.354l1.887.004h9.023a2.475 2.475 0 0 0 2.475-2.475v-9l-.004-.046V6.264ZM16.721 3a2.025 2.025 0 0 1 2.025 2.025v11.697a2.025 2.025 0 0 1-2.025 2.025H5.025A2.025 2.025 0 0 1 3 16.722V5.025A2.025 2.025 0 0 1 5.025 3h11.697Zm-3.398 4.923-3.501 3.5-.882-1.178a.674.674 0 1 0-1.08.81l1.35 1.8a.676.676 0 0 0 1.017.072l4.05-4.05a.676.676 0 0 0-.954-.954Z", fill: color })));
658
+ const ForwardRef$2b = React.forwardRef(SvgBulkSelect);
480
659
 
481
- const SvgFormsFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
482
- React__namespace.createElement("path", { d: "M5.685 3C4.759 3 4 3.736 4 4.637v10.636c0 .45.377.817.842.817a.83.83 0 0 0 .843-.817V4.636h9.263a.83.83 0 0 0 .843-.818.83.83 0 0 0-.843-.818H5.685Zm3.367 3.272c-.926 0-1.685.737-1.685 1.637v11.454c0 .9.759 1.637 1.685 1.637h9.263c.926 0 1.685-.737 1.685-1.637v-8.322c0-.433-.177-.85-.494-1.157l-3.223-3.131a1.711 1.711 0 0 0-1.19-.48H9.051Zm2.526 6.546h4.211a.83.83 0 0 1 .843.818.83.83 0 0 1-.843.818H11.58a.83.83 0 0 1-.842-.818.83.83 0 0 1 .842-.818h-.002Zm0 3.272h4.211a.83.83 0 0 1 .843.818.83.83 0 0 1-.843.819H11.58a.83.83 0 0 1-.842-.819c0-.45.377-.818.842-.818h-.002Z", fill: color })));
483
- const ForwardRef$1k = React.forwardRef(SvgFormsFilled);
660
+ const SvgButtons = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
661
+ React__namespace.createElement("path", { d: "M7.636 5.243a1.36 1.36 0 0 0-1.363 1.352 1.36 1.36 0 0 0 1.363 1.351A1.36 1.36 0 0 0 9 6.595a1.36 1.36 0 0 0-1.364-1.352ZM12 5.243a1.36 1.36 0 0 0-1.364 1.352A1.36 1.36 0 0 0 12 7.946a1.36 1.36 0 0 0 1.364-1.351A1.36 1.36 0 0 0 12 5.243ZM16.364 5.243A1.36 1.36 0 0 0 15 6.595a1.36 1.36 0 0 0 1.364 1.351 1.36 1.36 0 0 0 1.363-1.351 1.36 1.36 0 0 0-1.363-1.352Z", fill: color }),
662
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.91 2C3.86 2 3 2.852 3 3.892v5.405c0 1.04.86 1.892 1.91 1.892h14.18c1.05 0 1.91-.851 1.91-1.892V3.892C21 2.852 20.14 2 19.09 2H4.91Zm-.274 1.892c0-.155.117-.27.273-.27h14.182c.156 0 .273.115.273.27v5.405c0 .155-.117.27-.273.27H4.909a.265.265 0 0 1-.273-.27V3.892Z", fill: color }),
663
+ React__namespace.createElement("path", { d: "M7.636 16.054a1.36 1.36 0 0 0-1.363 1.351 1.36 1.36 0 0 0 1.363 1.352A1.36 1.36 0 0 0 9 17.405a1.36 1.36 0 0 0-1.364-1.35ZM12 16.054a1.36 1.36 0 0 0-1.364 1.351A1.36 1.36 0 0 0 12 18.757a1.36 1.36 0 0 0 1.364-1.352A1.36 1.36 0 0 0 12 16.055ZM16.364 16.054A1.36 1.36 0 0 0 15 17.405a1.36 1.36 0 0 0 1.364 1.352 1.36 1.36 0 0 0 1.363-1.352 1.36 1.36 0 0 0-1.363-1.35Z", fill: color }),
664
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.91 12.81c-1.05 0-1.91.852-1.91 1.893v5.405C3 21.148 3.86 22 4.91 22h14.18c1.05 0 1.91-.852 1.91-1.892v-5.405c0-1.04-.86-1.892-1.91-1.892H4.91Zm-.274 1.893c0-.155.117-.27.273-.27h14.182c.156 0 .273.115.273.27v5.405c0 .155-.117.27-.273.27H4.909a.265.265 0 0 1-.273-.27v-5.405Z", fill: color })));
665
+ const ForwardRef$2a = React.forwardRef(SvgButtons);
484
666
 
485
- const SvgFormsOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
486
- React__namespace.createElement("path", { d: "M3.75 3.954c0-.938.781-1.704 1.737-1.704h9.569a.852.852 0 0 1 0 1.705h-9.57v11.063a.868.868 0 0 1-1.736 0V3.954ZM10.697 13.33c0-.472.382-.853.853-.853h4.374a.852.852 0 0 1 0 1.704H11.55a.852.852 0 0 1-.853-.852ZM11.56 15.293a.857.857 0 0 0-.863.853c0 .47.386.852.862.852h4.354a.857.857 0 0 0 .862-.852.857.857 0 0 0-.862-.852H11.56Z", fill: color }),
487
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.224 7.363c0-.937.781-1.704 1.736-1.704h6.948l4.342 4.262v9.375c0 .938-.781 1.704-1.737 1.705H8.961c-.956 0-1.737-.767-1.737-1.705V7.363Zm7.816 0H8.96v11.932h9.553v-8.522H15.04v-3.41Z", fill: color })));
488
- const ForwardRef$1j = React.forwardRef(SvgFormsOutlined);
667
+ const SvgCaduceus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
668
+ React__namespace.createElement("path", { d: "M12.197 3c-.282 0-.552.118-.75.33-.2.21-.312.496-.312.794 0 .158.032.314.093.458.061.144.15.273.261.378v1.138c.251.072.488.183.708.322.22-.139.457-.25.708-.322V4.96c.11-.105.2-.234.26-.378a1.159 1.159 0 0 0-.218-1.253C12.75 3.12 12.48 3 12.198 3Zm3.54.75c-.541 0-1.41.396-1.41 1.499 0 .31.14.618.236.925.863.33 1.528 1.088 1.77 2.037 1.744-.168 3.785-.99 4.696-1.552v-.002a.728.728 0 0 0 .27-.275.784.784 0 0 0-.107-.914.688.688 0 0 0-.53-.218c-2.8-.011-2.84-1.5-4.926-1.5Zm-7.074.001c-2.087 0-2.125 1.49-4.933 1.5a.689.689 0 0 0-.523.218.783.783 0 0 0-.108.913.728.728 0 0 0 .272.275v.002c.91.561 2.95 1.384 4.695 1.552.243-.95.907-1.707 1.77-2.037.096-.307.237-.614.237-.925 0-1.103-.87-1.499-1.41-1.498Zm2.118 3.735c-.815 0-1.416.717-1.416 1.51 0 1.014.36 1.826.877 2.36.117.121.24.226.365.323-.099.063-.197.126-.293.202-.52.41-.949 1.12-.949 1.988 0 .833.328 1.527.772 1.978.197.2.41.356.623.492-.383.39-.687.966-.687 1.653 0 .6.18 1.126.451 1.539a.725.725 0 0 0-.35.344.789.789 0 0 0-.065.503c.035.17.124.322.253.43.129.108.29.165.454.162 0 0 .644-.012 1.381-.252.737.24 1.381.252 1.381.252a.683.683 0 0 0 .454-.162.757.757 0 0 0 .252-.43.789.789 0 0 0-.063-.503.725.725 0 0 0-.351-.344c.27-.413.45-.939.45-1.539 0-.687-.303-1.263-.687-1.653a3.45 3.45 0 0 0 .624-.492c.444-.45.771-1.145.771-1.978 0-.868-.429-1.578-.948-1.988-.095-.076-.194-.139-.293-.202.125-.098.248-.202.365-.322.517-.535.877-1.347.877-2.36 0-.794-.601-1.511-1.416-1.511-.436 0-.8.227-1.034.504a1.516 1.516 0 0 0-.382 1.007.781.781 0 0 0 .122.43.716.716 0 0 0 .331.279.671.671 0 0 0 .423.028.703.703 0 0 0 .363-.232c-.076.271-.104.607-.274.782-.225.232-.575.425-.965.612-.39-.187-.74-.38-.965-.612-.17-.175-.198-.51-.274-.782a.702.702 0 0 0 .363.232.67.67 0 0 0 .422-.028.716.716 0 0 0 .332-.28.782.782 0 0 0 .122-.43c0-.401-.147-.73-.382-1.006-.234-.277-.598-.504-1.034-.504Zm1.416 5.052c.426.19.81.365 1.037.545.277.22.379.348.379.786 0 .475-.115.673-.335.896-.22.223-.589.428-1.022.637l-.059.03-.06-.03c-.432-.21-.802-.414-1.021-.637-.22-.223-.335-.421-.335-.896 0-.438.102-.567.379-.786.227-.18.61-.356 1.037-.545Zm0 4.558c.167.093.314.183.416.27.22.19.292.287.292.626 0 .383-.1.59-.259.779a1.57 1.57 0 0 1-.449.338 1.57 1.57 0 0 1-.45-.338c-.159-.19-.258-.396-.258-.779 0-.339.073-.437.292-.625.102-.088.25-.178.416-.271Z", fill: color })));
669
+ const ForwardRef$29 = React.forwardRef(SvgCaduceus);
489
670
 
490
- const SvgFunnelFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
491
- React__namespace.createElement("path", { d: "M4.889 4a.89.89 0 0 0 0 1.777l4.535 7.112h5.188l4.5-7.112a.889.889 0 0 0 0-1.777H4.888Zm5.334 10.667v4.443c0 .492.397.89.888.89h1.778a.889.889 0 0 0 .888-.889v-4.444h-3.554Z", fill: color })));
492
- const ForwardRef$1i = React.forwardRef(SvgFunnelFilled);
671
+ const SvgCalendarCheck = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
672
+ React__namespace.createElement("path", { d: "M7.556 2a.895.895 0 0 0-.889.9v.9h-.89C4.795 3.8 4 4.606 4 5.6v12.6C4 19.194 4.798 20 5.777 20h12.446A1.79 1.79 0 0 0 20 18.2V5.6c0-.994-.795-1.8-1.777-1.8h-.89v-.9c0-.496-.398-.9-.889-.9a.895.895 0 0 0-.888.9v.9H8.443v-.9a.893.893 0 0 0-.886-.9h-.001ZM5.777 8.3h12.446l.001 9.9H5.777V8.3Zm8.713 2.438a.875.875 0 0 0-.624.262l-2.31 2.34-.976-.99a.872.872 0 0 0-1.246 0 .895.895 0 0 0 0 1.26l1.594 1.615a.882.882 0 0 0 1.258 0l2.927-2.964a.898.898 0 0 0 0-1.261.87.87 0 0 0-.622-.262h-.001Z", fill: color })));
673
+ const ForwardRef$28 = React.forwardRef(SvgCalendarCheck);
493
674
 
494
- const SvgFunnelOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
495
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.1 4.889A1.79 1.79 0 0 1 4.889 3.1H19.11a1.79 1.79 0 0 1 .532 3.497l-4.966 7.318v5.196c0 .986-.8 1.789-1.788 1.789H11.11a1.788 1.788 0 0 1-1.788-1.79v-5.194l-4.966-7.32A1.79 1.79 0 0 1 3.1 4.89Zm1.8 0v.002a.02.02 0 0 1-.001.003.008.008 0 0 1-.002.003l-.003.002a.02.02 0 0 1-.003 0l-.002.001h.492l5.742 8.463V19.1h-.012.002a.015.015 0 0 1 .005.002l.002.002.002.003a.022.022 0 0 1 0 .003v-.01h1.755v.011-.001l.002-.004v-.001l.001-.002.004-.002h.003l.002-.001h-.012v-5.738L18.62 4.9h.492-.002l-.003-.001-.003-.002-.002-.003v-.003l-.001-.002v-.002l.001-.003a.01.01 0 0 1 .002-.004l.003-.001a.017.017 0 0 1 .005-.002h-.477l-.015.023H5.381l-.015-.023h-.477", fill: color })));
496
- const ForwardRef$1h = React.forwardRef(SvgFunnelOutlined);
675
+ const SvgCalendarDate = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
676
+ React__namespace.createElement("path", { d: "M7.556 2a.895.895 0 0 0-.89.9v.9H5.78C4.8 3.8 4 4.61 4 5.6v12.6c0 .99.8 1.8 1.778 1.8H18.22C19.2 20 20 19.19 20 18.2V5.6c0-.99-.8-1.8-1.778-1.8h-.888v-.9c0-.495-.398-.899-.89-.899a.894.894 0 0 0-.888.9v.9H8.444V2.9c0-.496-.397-.9-.888-.9Zm-1.78 6.3h12.446v9.9H5.78V8.3h-.002Zm8 4.5a.895.895 0 0 0-.887.9v1.8c0 .497.399.9.889.9h1.778c.49 0 .888-.403.888-.9v-1.8c0-.496-.398-.9-.888-.9h-1.78Z", fill: color })));
677
+ const ForwardRef$27 = React.forwardRef(SvgCalendarDate);
497
678
 
498
- const SvgGear = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
499
- React__namespace.createElement("path", { d: "M10.577 2.5a.943.943 0 0 0-.924.769l-.315 1.628a7.494 7.494 0 0 0-2.117 1.226l-1.55-.537a.939.939 0 0 0-1.123.422L3.127 8.492a.955.955 0 0 0 .197 1.192l1.242 1.09A7.703 7.703 0 0 0 4.46 12c0 .418.042.826.106 1.226l-1.242 1.09a.959.959 0 0 0-.198 1.192l1.422 2.484a.94.94 0 0 0 1.123.424l1.55-.538c.628.52 1.343.93 2.117 1.225l.315 1.628a.943.943 0 0 0 .924.769h2.846a.943.943 0 0 0 .924-.769l.315-1.628a7.492 7.492 0 0 0 2.117-1.226l1.55.537a.938.938 0 0 0 1.123-.422l1.421-2.486a.953.953 0 0 0-.197-1.19l-1.242-1.09c.064-.4.106-.807.106-1.226 0-.418-.042-.826-.106-1.226l1.242-1.09a.959.959 0 0 0 .198-1.192l-1.422-2.484a.94.94 0 0 0-1.123-.424l-1.55.538a7.49 7.49 0 0 0-2.117-1.225l-.315-1.628a.942.942 0 0 0-.924-.769h-2.846ZM12 8.2c2.082 0 3.77 1.701 3.77 3.8 0 2.098-1.688 3.8-3.77 3.8S8.23 14.098 8.23 12c0-2.099 1.688-3.8 3.77-3.8Z", fill: color })));
500
- const ForwardRef$1g = React.forwardRef(SvgGear);
679
+ const SvgCalendarInfo = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
680
+ React__namespace.createElement("path", { d: "M16.445 10.286h-8.89v1.777h8.89v-1.777Zm1.777-5.08h-.889V4h-1.777v1.206H8.444V4H6.667v1.206h-.89c-.986 0-1.768.8-1.768 1.778L4 18.286C4 19.263 4.791 20 5.778 20h12.444C19.2 20 20 19.264 20 18.286V6.984c0-.978-.8-1.778-1.778-1.778Zm0 13.08H5.778V8.508h12.444v9.778Zm-4.444-4.445H7.556v1.778h6.222v-1.778Z", fill: color })));
681
+ const ForwardRef$26 = React.forwardRef(SvgCalendarInfo);
501
682
 
502
- const SvgGrid = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
503
- React__namespace.createElement("path", { d: "M2.909 5C2.408 5 2 5.392 2 5.875v1.75c0 .483.408.875.909.875h3.637c.5 0 .909-.392.909-.875v-1.75c0-.483-.407-.875-.91-.875H2.909Zm7.272 0c-.501 0-.908.392-.908.875v1.75c0 .483.407.875.908.875h3.638c.501 0 .908-.392.908-.875v-1.75c0-.483-.407-.875-.908-.875H10.18Zm7.274 0c-.502 0-.91.392-.91.875v1.75c0 .483.407.875.91.875h3.636c.502 0 .909-.392.909-.875v-1.75c0-.483-.407-.875-.909-.875h-3.637.001ZM2.909 10.25c-.501 0-.909.392-.909.875v1.75c0 .483.408.876.909.876h3.637c.5 0 .909-.393.909-.876v-1.75c0-.483-.407-.874-.91-.874H2.909Zm7.272 0c-.501 0-.908.392-.908.875v1.75c0 .483.407.876.908.876h3.638c.501 0 .908-.393.908-.876v-1.75c0-.483-.407-.874-.908-.874H10.18Zm7.274 0c-.502 0-.91.392-.91.875v1.75c0 .483.407.876.91.876h3.636c.502 0 .909-.393.909-.876v-1.75c0-.483-.407-.874-.909-.874h-3.637.001ZM2.909 15.5c-.501 0-.909.392-.909.876v1.75c0 .483.408.874.909.874h3.637c.5 0 .909-.391.909-.875v-1.75c0-.483-.407-.875-.91-.875H2.909Zm7.272 0c-.501 0-.908.392-.908.876v1.75c0 .483.407.874.908.874h3.638c.501 0 .908-.391.908-.875v-1.75c0-.483-.407-.875-.908-.875H10.18Zm7.274 0c-.502 0-.91.392-.91.876v1.75c0 .483.407.874.91.874h3.636c.502 0 .909-.391.909-.875v-1.75c0-.483-.407-.875-.909-.875h-3.637.001Z", fill: color })));
504
- const ForwardRef$1f = React.forwardRef(SvgGrid);
683
+ const SvgCalendarOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
684
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.783 3.708c0-.387.315-.708.695-.708h.696c.38 0 .696.321.696.708v.709h6.26v-.709c0-.387.316-.708.696-.708h.696c.38 0 .695.321.695.708v.709h2.087a.7.7 0 0 1 .499.202c.13.132.197.32.197.506v14.167a.732.732 0 0 1-.197.507.705.705 0 0 1-.499.201H4.696a.7.7 0 0 1-.498-.2.727.727 0 0 1-.198-.508V5.125c0-.185.067-.374.198-.506a.695.695 0 0 1 .498-.202h2.087v-.709Zm1.39 0h-.695v2.125h.696V3.708Zm7.653 0h.696v2.125h-.696V3.708ZM6.783 5.125H4.696v2.48h14.608v-2.48h-2.087v.708a.707.707 0 0 1-.695.709h-.696a.707.707 0 0 1-.696-.709v-.708H8.87v.708a.707.707 0 0 1-.696.709h-.696a.707.707 0 0 1-.695-.709v-.708ZM4.696 8.313h14.608v10.979H4.696V8.312Zm2.087 9.562V9.729h10.434v8.146H6.783Zm.695-7.438h1.74v1.771h-1.74v-1.77Zm4.174 0H9.913v1.771h1.74v-1.77Zm.696 0h1.739v1.771h-1.74v-1.77Zm4.174 0h-1.74v1.771h1.74v-1.77Zm-9.044 2.48h1.74v1.77h-1.74v-1.77Zm4.174 0H9.913v1.77h1.74v-1.77Zm.696 0h1.739v1.77h-1.74v-1.77Zm4.174 0h-1.74v1.77h1.74v-1.77Zm-9.044 2.479h1.74v1.77h-1.74v-1.77Zm4.174 0H9.913v1.77h1.74v-1.77Zm.696 0h1.739v1.77h-1.74v-1.77Zm4.174 0h-1.74v1.77h1.74v-1.77Z", fill: color })));
685
+ const ForwardRef$25 = React.forwardRef(SvgCalendarOutlined);
505
686
 
506
- const SvgHorizontalLines = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
507
- React__namespace.createElement("path", { d: "M2 7a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM2 12a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM3 16a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H3Z", fill: color })));
508
- const ForwardRef$1e = React.forwardRef(SvgHorizontalLines);
687
+ const SvgCalendarPen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
688
+ React__namespace.createElement("path", { d: "M6.619 2.001a.91.91 0 0 0-.905.914v.912h-.905C3.81 3.827 3 4.645 3 5.654v12.78c0 1.009.81 1.826 1.81 1.826h10.107l-1.81-1.827H4.81V8.391h12.666v5.635l1.81 1.826v-10.2c0-1.008-.81-1.826-1.81-1.826h-.906v-.914A.909.909 0 0 0 15.667 2a.91.91 0 0 0-.905.914v.912H7.525v-.914A.91.91 0 0 0 6.62 2l-.001.001Zm.905 9.13a.91.91 0 0 0-.905.913.91.91 0 0 0 .905.914h7.238c.5 0 .905-.41.905-.914a.91.91 0 0 0-.905-.913H7.524Zm0 3.652a.91.91 0 0 0-.905.913.91.91 0 0 0 .905.914h3.62c.499 0 .904-.41.904-.914a.91.91 0 0 0-.905-.913H7.524Zm6.785 0a.456.456 0 0 0-.452.456v1.181c0 .12.048.237.133.323l4.523 4.565 1.81-1.827-4.524-4.564a.456.456 0 0 0-.32-.134h-1.17Zm6.654 5.344-1.811 1.826.664.669c.5.504 1.31.504 1.81 0a1.3 1.3 0 0 0 0-1.827l-.663-.668Z", fill: color })));
689
+ const ForwardRef$24 = React.forwardRef(SvgCalendarPen);
509
690
 
510
- const SvgHouse = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
511
- React__namespace.createElement("path", { d: "M12 4a.807.807 0 0 0-.582.25l-8.252 7.411A.425.425 0 0 0 3 12c0 .232.183.421.41.421h2.045v6.737a.83.83 0 0 0 .818.842h3.272a.83.83 0 0 0 .819-.842v-5.053h3.272v5.053a.83.83 0 0 0 .819.842h3.272a.83.83 0 0 0 .819-.842V12.42h2.045c.226 0 .409-.188.409-.421a.425.425 0 0 0-.166-.339l-8.248-7.406A.807.807 0 0 0 12 4Z", fill: color })));
512
- const ForwardRef$1d = React.forwardRef(SvgHouse);
691
+ const SvgCameraFlip = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
692
+ React__namespace.createElement("path", { d: "M8.766 3.975a.84.84 0 0 0-.665.328l-.957 1.285H2.5a1 1 0 0 0-1 1V19.1a1 1 0 0 0 1 1h18.962a1 1 0 0 0 1-1V6.588a1 1 0 0 0-1-1H16.82l-.958-1.285a.84.84 0 0 0-.665-.328h-6.43ZM8.86 5.99a1 1 0 0 1 .802-.402h4.64a1 1 0 0 1 .802.402l.658.882.252.328h3.837a1 1 0 0 1 1 1v9.288a1 1 0 0 1-1 1H4.112a1 1 0 0 1-1-1V8.2a1 1 0 0 1 1-1H7.95l.252-.328.657-.882Zm3.122 2.016c-2.074 0-3.796 1.304-4.499 3.1-.184.47.201.931.707.931.376 0 .694-.265.857-.605.51-1.062 1.64-1.813 2.935-1.813 1.052 0 2.05.535 2.646 1.386l-1.033 1.032h3.225V8.813l-1.033 1.033a4.824 4.824 0 0 0-3.805-1.84ZM7.144 13.65v3.225l1.033-1.033a4.824 4.824 0 0 0 3.804 1.84c2.075 0 3.797-1.305 4.5-3.1.184-.471-.202-.932-.707-.932-.377 0-.694.266-.857.605-.511 1.062-1.64 1.814-2.936 1.814a3.261 3.261 0 0 1-2.645-1.386l1.033-1.033H7.144Z", fill: color })));
693
+ const ForwardRef$23 = React.forwardRef(SvgCameraFlip);
513
694
 
514
- const SvgInfoCircleFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
515
- React__namespace.createElement("path", { d: "M12.002 2.188c-5.42 0-9.815 4.394-9.815 9.814s4.395 9.815 9.816 9.815c5.42 0 9.814-4.394 9.814-9.815 0-5.42-4.394-9.815-9.815-9.815ZM14.047 17.4c-.506.198-.909.35-1.21.455a3.21 3.21 0 0 1-1.049.155c-.61 0-1.087-.149-1.428-.448a1.443 1.443 0 0 1-.506-1.136c0-.178.013-.36.039-.545.023-.188.065-.396.12-.633l.633-2.233c.055-.214.104-.415.143-.607.039-.191.055-.367.055-.526 0-.282-.059-.483-.175-.594-.12-.113-.345-.168-.676-.168-.162 0-.33.026-.503.074-.172.052-.318.1-.441.146l.169-.688c.412-.168.808-.311 1.188-.431.376-.12.736-.182 1.07-.182.608 0 1.078.15 1.406.441.328.292.493.675.493 1.143 0 .097-.01.27-.032.513a3.507 3.507 0 0 1-.127.675l-.63 2.226a6.415 6.415 0 0 0-.139.61 3.361 3.361 0 0 0-.058.52c0 .295.065.5.198.607.13.107.36.159.688.159.152 0 .324-.026.52-.078.19-.055.33-.1.418-.143l-.166.688Zm-.113-9.04a1.497 1.497 0 0 1-1.058.41c-.413 0-.77-.137-1.065-.41a1.298 1.298 0 0 1-.441-.99c0-.385.149-.72.441-.996a1.507 1.507 0 0 1 1.065-.412c.412 0 .766.137 1.058.412.295.276.441.61.441.997 0 .386-.146.717-.441.99Z", fill: color })));
516
- const ForwardRef$1c = React.forwardRef(SvgInfoCircleFilled);
695
+ const SvgCameraOff = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
696
+ React__namespace.createElement("path", { d: "M3.133 3.023c.22-.22.575-.22.795 0l17.766 17.766a.563.563 0 0 1-.795.795L3.133 3.818a.563.563 0 0 1 0-.795ZM3.83 6.016c-.89.12-1.58.9-1.58 1.84v9.286c0 1.025.816 1.858 1.818 1.858h11.819c.27 0 .527-.06.758-.17L3.83 6.017Z", fill: color }),
697
+ React__namespace.createElement("path", { d: "M17.466 18.061c.152-.271.238-.585.238-.919v-2.709l3.068 2.506a.906.906 0 0 0 .57.204.903.903 0 0 0 .394-.093.932.932 0 0 0 .514-.836V8.786c0-.357-.2-.683-.514-.839a.898.898 0 0 0-.964.114l-3.066 2.506v-2.71c0-1.024-.818-1.857-1.82-1.857H5.406l12.06 12.061Z", fill: color })));
698
+ const ForwardRef$22 = React.forwardRef(SvgCameraOff);
517
699
 
518
- const SvgInfoCircleOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
519
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 12c0-4.96 4.04-9 9-9s9 4.04 9 9-4.04 9-9 9-9-4.04-9-9Zm16.2 0c0-3.987-3.213-7.2-7.2-7.2A7.186 7.186 0 0 0 4.8 12c0 3.987 3.213 7.2 7.2 7.2s7.2-3.213 7.2-7.2Zm-8.1-4.5v1.8h1.8V7.5h-1.8Zm0 9v-5.4h1.8v5.4h-1.8Z", fill: color })));
520
- const ForwardRef$1b = React.forwardRef(SvgInfoCircleOutlined);
700
+ const SvgCamera = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
701
+ React__namespace.createElement("path", { d: "M9.927 4.5a1.5 1.5 0 0 0-1.342.83l-.295.59c-.255.509-.774.83-1.342.83H3.75a1.5 1.5 0 0 0-1.5 1.5V18a1.5 1.5 0 0 0 1.5 1.5h16.5a1.5 1.5 0 0 0 1.5-1.5V8.25a1.5 1.5 0 0 0-1.5-1.5h-3.198a1.5 1.5 0 0 1-1.342-.83l-.295-.59a1.502 1.502 0 0 0-1.342-.83H9.927Zm-4.677.75A.75.75 0 0 0 4.5 6h2.25A.75.75 0 0 0 6 5.25h-.75ZM12 7.5a5.256 5.256 0 0 1 5.25 5.25A5.256 5.256 0 0 1 12 18a5.256 5.256 0 0 1-5.25-5.25A5.256 5.256 0 0 1 12 7.5Zm6.75.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM12 9a3.75 3.75 0 1 0 0 7.5A3.75 3.75 0 0 0 12 9Z", fill: color })));
702
+ const ForwardRef$21 = React.forwardRef(SvgCamera);
521
703
 
522
- const SvgInput = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
523
- React__namespace.createElement("path", { d: "M6.487 10.405h-1.5v3.825h1.5v-3.825Z", fill: color }),
524
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.25 9.75a1.5 1.5 0 0 1 1.5-1.5h16.758a1.5 1.5 0 0 1 1.5 1.5v5.467a1.5 1.5 0 0 1-1.5 1.5H3.75a1.5 1.5 0 0 1-1.5-1.5V9.75Zm1.5-.375h16.758c.207 0 .375.168.375.375v5.467a.375.375 0 0 1-.375.375H3.75a.375.375 0 0 1-.375-.375V9.75c0-.207.168-.375.375-.375Z", fill: color })));
525
- const ForwardRef$1a = React.forwardRef(SvgInput);
704
+ const SvgCancel = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
705
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm5.602 5.306a6.3 6.3 0 0 0 8.704-8.704l-8.704 8.704Zm-1.908-1.909a6.3 6.3 0 0 1 8.704-8.704l-8.704 8.704Z", fill: color })));
706
+ const ForwardRef$20 = React.forwardRef(SvgCancel);
526
707
 
527
- const SvgInvoiceOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
528
- React__namespace.createElement("path", { d: "M11.1 3.75v1.072c-.9.268-1.8 1.074-1.8 2.504 0 1.698 1.44 2.234 2.34 2.592 1.08.447 1.26.536 1.26.982 0 .448-.18.895-.9.895s-.9-.447-.9-.895H9.3c0 .895.54 2.147 1.8 2.504v1.072h1.8v-1.07c1.26-.359 1.8-1.612 1.8-2.506 0-1.698-1.44-2.234-2.34-2.591-1.08-.448-1.26-.537-1.26-.983 0-.716.45-.894.9-.894.72 0 .9.446.9.894h1.8c0-.894-.54-2.147-1.8-2.504V3.75h-1.8Zm-5.4.894v8.939h-.9c-.984 0-1.8.81-1.8 1.787v5.364h1.8V15.37h.9c0 .988.805 1.788 1.8 1.788h9c.994 0 1.8-.8 1.8-1.788h.9v5.364H21V15.37c0-.977-.816-1.787-1.8-1.787h-.9v-8.94h-1.8V15.37h-9V4.644H5.7Zm1.8 14.302v1.787h1.8v-1.787H7.5Zm3.6 0v1.787h1.8v-1.787h-1.8Zm3.6 0v1.787h1.8v-1.787h-1.8Z", fill: color })));
529
- const ForwardRef$19 = React.forwardRef(SvgInvoiceOutlined);
708
+ const SvgCellphoneAlert = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
709
+ React__namespace.createElement("path", { d: "M11 8a1 1 0 1 1 2 0v4a1 1 0 1 1-2 0V8ZM13 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: color }),
710
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.627 2.5h8.637c.954 0 1.727.773 1.727 1.727v15.546c0 .954-.773 1.727-1.727 1.727H7.627A1.727 1.727 0 0 1 5.9 19.773V4.227c0-.954.773-1.727 1.727-1.727Zm2.591 17.273h3.455v-.864h-3.455v.864Zm-2.59-2.591h8.636V5.09H7.627v12.09Z", fill: color })));
711
+ const ForwardRef$1$ = React.forwardRef(SvgCellphoneAlert);
530
712
 
531
- const SvgInvoice = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
532
- React__namespace.createElement("path", { d: "M12 3c-.497 0-.9.4-.9.895v.179c-.9.268-1.8 1.073-1.8 2.505 0 1.7 1.44 2.237 2.34 2.595 1.08.447 1.26.537 1.26.984 0 .447-.18.895-.9.895-.45 0-.69-.176-.806-.416-.133-.277-.38-.48-.688-.48h-.182c-.588 0-1.012.6-.77 1.13.272.604.773 1.158 1.545 1.376v.18c0 .493.403.894.9.894s.9-.4.9-.895v-.179c1.26-.358 1.8-1.61 1.8-2.505 0-1.7-1.44-2.237-2.34-2.595-1.08-.447-1.26-.537-1.26-.984 0-.716.45-.895.9-.895s.69.176.805.416c.134.277.38.479.689.479h.181c.587 0 1.011-.6.77-1.13-.272-.604-.772-1.158-1.544-1.375v-.18A.897.897 0 0 0 12 3Zm-5.4.895c-.497 0-.9.4-.9.894v8.053h-.9c-.994 0-1.8.8-1.8 1.79v4.473c0 .495.403.895.9.895h3.15a.45.45 0 0 0 .45-.447v-.895a.45.45 0 0 1 .45-.448h.9a.45.45 0 0 1 .45.448v.895a.45.45 0 0 0 .45.447h.9a.45.45 0 0 0 .45-.447v-.895a.45.45 0 0 1 .45-.448h.9a.45.45 0 0 1 .45.448v.895a.45.45 0 0 0 .45.447h.9a.45.45 0 0 0 .45-.447v-.895a.45.45 0 0 1 .45-.448h.9a.45.45 0 0 1 .45.448v.895a.45.45 0 0 0 .45.447h3.15c.497 0 .9-.4.9-.895v-4.473c0-.99-.805-1.79-1.8-1.79h-.9V4.79a.897.897 0 0 0-.9-.894c-.497 0-.9.4-.9.894v9.843h-9V4.789a.897.897 0 0 0-.9-.894Z", fill: color })));
533
- const ForwardRef$18 = React.forwardRef(SvgInvoice);
713
+ const SvgCellphone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
714
+ React__namespace.createElement("path", { d: "M16.264 2.5H7.627c-.954 0-1.727.773-1.727 1.727v15.546c0 .954.773 1.727 1.727 1.727h8.637c.954 0 1.727-.773 1.727-1.727V4.227c0-.954-.773-1.727-1.727-1.727Zm-2.591 17.273h-3.455v-.864h3.455v.864Zm2.59-2.591H7.628V5.09h8.637v12.09Z", fill: color })));
715
+ const ForwardRef$1_ = React.forwardRef(SvgCellphone);
534
716
 
535
- const SvgKanbanBoard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
536
- React__namespace.createElement("path", { d: "M10.471 4.866a1.242 1.242 0 0 0-.371.884V9.5c0 .332.133.65.371.884.238.234.56.366.896.366h1.266c.336 0 .659-.132.896-.366.238-.235.371-.552.371-.884V5.75c0-.332-.133-.65-.371-.884a1.275 1.275 0 0 0-.896-.366h-1.266c-.336 0-.659.132-.896.366ZM5.404 4.866a1.242 1.242 0 0 0-.37.884v8.75c0 .332.133.65.37.884.238.234.56.366.896.366h1.267c.336 0 .658-.132.895-.366.238-.235.371-.553.371-.884V5.75c0-.332-.133-.65-.37-.884a1.275 1.275 0 0 0-.896-.366H6.3c-.336 0-.658.132-.896.366ZM15.538 4.866a1.241 1.241 0 0 0-.371.884v12.5c0 .331.133.65.37.884.238.234.56.366.896.366H17.7c.336 0 .658-.132.896-.366.237-.235.37-.553.37-.884V5.75c0-.332-.133-.65-.37-.884A1.276 1.276 0 0 0 17.7 4.5h-1.267c-.336 0-.658.132-.895.366Z", fill: color }),
537
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.242 2.732A2.55 2.55 0 0 1 5.033 2h13.934a2.55 2.55 0 0 1 1.791.732c.475.47.742 1.105.742 1.768v15c0 .663-.267 1.299-.742 1.768a2.55 2.55 0 0 1-1.791.732H5.033a2.55 2.55 0 0 1-1.791-.732A2.484 2.484 0 0 1 2.5 19.5v-15c0-.663.267-1.299.742-1.768Zm1.791.518h13.934c.336 0 .658.132.895.366.238.235.371.552.371.884v15c0 .331-.133.65-.37.884-.238.234-.56.366-.896.366H5.033c-.336 0-.658-.132-.895-.366a1.242 1.242 0 0 1-.371-.884v-15c0-.332.133-.65.37-.884.238-.234.56-.366.896-.366Z", fill: color })));
538
- const ForwardRef$17 = React.forwardRef(SvgKanbanBoard);
717
+ const SvgChainLink = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
718
+ React__namespace.createElement("path", { d: "M16.521 4.082c-.869 0-1.738.331-2.4.993L12.238 6.96a3.393 3.393 0 0 0-.813 3.478l1.354-1.354c.056-.387.227-.76.525-1.058l1.885-1.885c.367-.367.85-.552 1.333-.552s.966.184 1.333.552c.735.735.735 1.93 0 2.665l-1.885 1.885c-.297.298-.67.468-1.058.525l-1.355 1.355a3.383 3.383 0 0 0 3.479-.814l1.885-1.885a3.396 3.396 0 0 0 0-4.797 3.383 3.383 0 0 0-2.399-.993Zm-2.276 4.892a.754.754 0 0 0-.519.228l-4.524 4.524a.754.754 0 1 0 1.067 1.066l4.524-4.524a.753.753 0 0 0-.548-1.294Zm-4.717 2.278a3.376 3.376 0 0 0-2.568.985l-1.885 1.885a3.397 3.397 0 0 0 0 4.798c.661.661 1.53.992 2.399.992.868 0 1.737-.33 2.398-.992l1.885-1.886a3.393 3.393 0 0 0 .814-3.478l-1.355 1.355c-.056.387-.227.76-.525 1.058l-1.885 1.885a1.886 1.886 0 0 1-2.665 0 1.887 1.887 0 0 1 0-2.665l1.885-1.885a1.87 1.87 0 0 1 1.058-.526l1.354-1.354a3.416 3.416 0 0 0-.91-.172Z", fill: color })));
719
+ const ForwardRef$1Z = React.forwardRef(SvgChainLink);
539
720
 
540
- const SvgLargeTextInput = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
541
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.441 6a1.64 1.64 0 0 0-1.627 1.628v3.255a.814.814 0 0 0-.814.813v1.628c0 .449.365.813.814.813v3.255c0 .89.738 1.628 1.627 1.628h13.02a1.64 1.64 0 0 0 1.628-1.628v-3.255c.449 0 .814-.364.814-.813v-1.628a.814.814 0 0 0-.814-.813V7.628A1.64 1.64 0 0 0 18.46 6H5.441Zm0 1.628h13.02v3.255a.814.814 0 0 0-.813.813v1.628c0 .449.364.813.814.813v3.255H5.442v-3.255c.449 0 .813-.364.813-.813v-1.628a.814.814 0 0 0-.813-.813V7.628Zm4.069 2.44c0-.448.364-.813.813-.813h3.255a.814.814 0 0 1 0 1.627h-.813v4.07a.814.814 0 0 1-1.628 0v-4.07h-.814a.814.814 0 0 1-.813-.813Z", fill: color })));
542
- const ForwardRef$16 = React.forwardRef(SvgLargeTextInput);
721
+ const SvgChatBubbleFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
722
+ React__namespace.createElement("path", { d: "M12 4c-4.695 0-8.5 3.152-8.5 7.04 0 2.155 1.173 4.082 3.015 5.374.047.983-.108 2.34-1.494 2.966l-.003.001a.32.32 0 0 0-.21.299.324.324 0 0 0 .355.319c1.591-.01 2.942-.852 3.874-1.741a1.283 1.283 0 0 1 1.114-.347A10.1 10.1 0 0 0 12 18.08c4.695 0 8.5-3.152 8.5-7.04S16.695 4 12 4Z", fill: color })));
723
+ const ForwardRef$1Y = React.forwardRef(SvgChatBubbleFilled);
543
724
 
544
- const SvgList = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
545
- React__namespace.createElement("path", { d: "M5 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM8.5 4.5a1.5 1.5 0 1 0 0 3h12a1.5 1.5 0 0 0 0-3h-12ZM8.5 10.5a1.5 1.5 0 0 0 0 3h12a1.5 1.5 0 0 0 0-3h-12ZM3.5 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 18a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM8.5 16.5a1.5 1.5 0 0 0 0 3h12a1.5 1.5 0 0 0 0-3h-12Z", fill: color })));
546
- const ForwardRef$15 = React.forwardRef(SvgList);
725
+ const SvgChatBubbleOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
726
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.6 11.04C2.6 6.504 6.974 3.1 12 3.1c5.026 0 9.4 3.404 9.4 7.94 0 4.536-4.374 7.94-9.4 7.94-.69 0-1.364-.063-2.014-.184l.165-.885-.163.885a.384.384 0 0 0-.33.112c-1.016.97-2.567 1.97-4.463 1.99-.02.002-.039.002-.058.002h-.002c-.66 0-1.227-.528-1.227-1.22v-.001c0-.502.308-.94.755-1.125.7-.322.929-.947.957-1.684-1.824-1.424-3.02-3.486-3.02-5.83ZM12 4.9c-4.364 0-7.6 2.9-7.6 6.14 0 1.809.982 3.48 2.632 4.637l.36.253.022.44c.028.587-.004 1.443-.375 2.235a6.072 6.072 0 0 0 1.377-.999 2.183 2.183 0 0 1 1.898-.58h.002A9.2 9.2 0 0 0 12 17.18c4.364 0 7.6-2.9 7.6-6.14 0-3.24-3.236-6.14-7.6-6.14Z", fill: color })));
727
+ const ForwardRef$1X = React.forwardRef(SvgChatBubbleOutlined);
547
728
 
548
- const SvgLocationMarkerGround = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
549
- React__namespace.createElement("path", { d: "M12 2C8.94 2 6.45 4.536 6.45 7.652c0 4.14 4.998 10.851 5.21 11.135l.34.45.34-.45c.212-.284 5.21-6.994 5.21-11.135C17.55 4.536 15.06 2 12 2Zm0 3.913c.944 0 1.708.778 1.708 1.74 0 .96-.764 1.738-1.708 1.738s-1.708-.778-1.708-1.739c0-.961.764-1.739 1.708-1.739Zm-7.558 9.13L2 22h20l-2.442-6.957h-3.267c-.167.3-.333.59-.5.87h3.167l1.828 5.217H3.214l1.828-5.217h3.167c-.167-.28-.333-.57-.5-.87H4.442Z", fill: color })));
550
- const ForwardRef$14 = React.forwardRef(SvgLocationMarkerGround);
729
+ const SvgCheckmarkBox = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
730
+ React__namespace.createElement("path", { d: "M18.223 4H5.777C4.795 4 4 4.795 4 5.777v12.446C4 19.205 4.795 20 5.777 20h12.446c.982 0 1.777-.795 1.777-1.777V5.777C20 4.795 19.205 4 18.223 4Zm-8 12.812-4.185-4.184 1.257-1.256 2.928 2.927 6.482-6.484 1.256 1.258-7.738 7.74Z", fill: color })));
731
+ const ForwardRef$1W = React.forwardRef(SvgCheckmarkBox);
551
732
 
552
- const SvgLocationMarker = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
553
- React__namespace.createElement("path", { d: "M12.1 3a6.3 6.3 0 0 0-6.3 6.3c0 4.5 6.3 11.7 6.3 11.7s6.3-7.2 6.3-11.7A6.3 6.3 0 0 0 12.1 3Zm0 8.55a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5Z", fill: color })));
554
- const ForwardRef$13 = React.forwardRef(SvgLocationMarker);
733
+ const SvgCheckmarkCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
734
+ React__namespace.createElement("path", { d: "M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Zm5.136 6.936-6.3 6.3a.898.898 0 0 1-1.272 0l-2.7-2.7a.899.899 0 1 1 1.272-1.272l2.064 2.063 5.664-5.663a.899.899 0 1 1 1.272 1.272Z", fill: color })));
735
+ const ForwardRef$1V = React.forwardRef(SvgCheckmarkCircle);
555
736
 
556
- const SvgLockRectangle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
557
- React__namespace.createElement("path", { d: "M18.222 9.6h.89c.235 0 .461.1.628.278.166.178.26.42.26.672v9.5a.984.984 0 0 1-.26.672.861.861 0 0 1-.629.278H4.89a.861.861 0 0 1-.629-.278.984.984 0 0 1-.26-.672v-9.5c0-.252.094-.494.26-.672A.86.86 0 0 1 4.89 9.6h.889v-.95c0-.873.16-1.738.473-2.545a6.698 6.698 0 0 1 1.35-2.157 6.212 6.212 0 0 1 2.018-1.442A5.877 5.877 0 0 1 12 2c.817 0 1.626.172 2.381.506.755.334 1.441.824 2.019 1.442a6.698 6.698 0 0 1 1.349 2.157c.312.807.473 1.672.473 2.545v.95Zm-1.778 0v-.95a4.92 4.92 0 0 0-1.301-3.359C14.309 4.401 13.179 3.9 12 3.9c-1.179 0-2.31.5-3.143 1.391A4.92 4.92 0 0 0 7.556 8.65v.95h8.888Zm-5.333 3.8v3.8h1.778v-3.8H11.11Z", fill: color })));
558
- const ForwardRef$12 = React.forwardRef(SvgLockRectangle);
737
+ const SvgCheckmarkList = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
738
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m9.159 8.25-3.277 4.075L4.8 11.244 3.753 12.29 6 14.54l4.316-5.365-1.157-.926ZM1.5 8.99v7.405h7.405v-3.309l-1.481 1.828H2.98v-4.443h2.493l1.192-1.48H1.5Zm9.626 4.443v-1.48h11.106v1.48H11.126Z", fill: color })));
739
+ const ForwardRef$1U = React.forwardRef(SvgCheckmarkList);
559
740
 
560
- const SvgLockRound = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
561
- React__namespace.createElement("path", { d: "M12 1C8.677 1 6 3.803 6 7.286v1.048c-1.1 0-2 .941-2 2.096v10.476C4 22.057 4.9 23 6 23h12c1.1 0 2-.941 2-2.095V10.429c0-1.152-.9-2.095-2-2.095V7.286C18 3.804 15.324 1 12 1Zm0 2.095c2.277 0 4 1.805 4 4.19v1.05H8v-1.05c0-2.385 1.723-4.19 4-4.19Zm0 10.477c1.1 0 2 .942 2 2.095 0 1.153-.9 2.095-2 2.095s-2-.942-2-2.095c0-1.153.9-2.095 2-2.095Z", fill: color })));
562
- const ForwardRef$11 = React.forwardRef(SvgLockRound);
741
+ const SvgCheckmark = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
742
+ React__namespace.createElement("path", { d: "M10.5 17 19 8.5 17.5 7l-7 7-4-4.003L5 11.5l5.5 5.5Z", fill: color })));
743
+ const ForwardRef$1T = React.forwardRef(SvgCheckmark);
563
744
 
564
- const SvgLoudspeaker = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
565
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.812 4.128a2 2 0 0 0-2.988-1.264L2.091 10.593a2 2 0 0 0-.917 2.133l.585 2.698A2 2 0 0 0 3.713 17H5v3a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-3h7.246a2 2 0 0 0 1.95-2.446l-.455-1.986 2.135-.867a1 1 0 0 0 .595-1.165l-1-4.072a1 1 0 0 0-1.055-.757l-2.2.186-.404-1.765ZM7.02 17H7v3h2v-3H7.02Zm12.269-6.407-.625-2.73 1.068-.091.59 2.401-1.033.42Zm-12.707-.387 9.279-5.632L18.246 15H7.78l-1.198-4.794Zm-1.79 1.087-1.664 1.01L3.713 15H5.72l-.926-3.707Z", fill: color })));
566
- const ForwardRef$10 = React.forwardRef(SvgLoudspeaker);
745
+ const SvgChevronDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
746
+ React__namespace.createElement("path", { d: "M12 13.69 6.607 8.277a.937.937 0 0 0-1.331 0 .951.951 0 0 0 0 1.34l6.096 6.12c.347.35.91.35 1.256 0l6.096-6.119a.951.951 0 0 0 0-1.34.937.937 0 0 0-1.331 0L12 13.69Z", fill: color })));
747
+ const ForwardRef$1S = React.forwardRef(SvgChevronDown);
567
748
 
568
- const SvgMagnifyingGlass = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
569
- React__namespace.createElement("path", { d: "M10.3 4C6.83 4 4 6.831 4 10.3s2.831 6.3 6.3 6.3c1.574 0 3.01-.587 4.117-1.547l.383.383V16.6l5.027 5.027a1.272 1.272 0 1 0 1.8-1.8L16.6 14.8h-1.164l-.383-.383A6.259 6.259 0 0 0 16.6 10.3c0-3.469-2.831-6.3-6.3-6.3Zm0 1.8c2.495 0 4.5 2.004 4.5 4.5 0 2.495-2.005 4.5-4.5 4.5a4.487 4.487 0 0 1-4.5-4.5c0-2.496 2.004-4.5 4.5-4.5Z", fill: color })));
570
- const ForwardRef$$ = React.forwardRef(SvgMagnifyingGlass);
749
+ const SvgChevronLeft = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
750
+ React__namespace.createElement("path", { d: "m10.31 12 5.412-5.393a.937.937 0 0 0 0-1.331.951.951 0 0 0-1.34 0l-6.12 6.096a.883.883 0 0 0 0 1.256l6.12 6.096c.37.368.97.368 1.34 0a.937.937 0 0 0 0-1.331L10.31 12Z", fill: color })));
751
+ const ForwardRef$1R = React.forwardRef(SvgChevronLeft);
571
752
 
572
- const SvgMailbox = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
573
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.555 1.01a.5.5 0 0 0-.5.5v5.27H6a4 4 0 0 0-4 4v7.739a2 2 0 0 0 2 2h8v1.64a.9.9 0 1 0 1.8 0v-1.64H20a2 2 0 0 0 2-2v-7.74a4 4 0 0 0-4-4h-3.146V5.8h2.881a.5.5 0 0 0 .46-.305l1.606-3.789a.5.5 0 0 0-.46-.695h-5.786Zm1.3 1.8V4h2.02l.503-1.189h-2.523Zm-1.8 5.77v1.029a.9.9 0 1 0 1.8 0v-1.03H18a2.2 2.2 0 0 1 2.2 2.2v7.74a.2.2 0 0 1-.2.2h-9.48c.006-.066.01-.133.01-.2v-7.74c0-.812-.243-1.568-.66-2.2h3.185Zm-6.525 0H6a2.2 2.2 0 0 0-2.2 2.2v7.739c0 .11.09.2.2.2h4.53a.2.2 0 0 0 .2-.2v-7.74a2.2 2.2 0 0 0-2.2-2.2Z", fill: color })));
574
- const ForwardRef$_ = React.forwardRef(SvgMailbox);
753
+ const SvgChevronRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
754
+ React__namespace.createElement("path", { d: "m13.69 12-5.413 5.393a.937.937 0 0 0 0 1.331c.37.368.97.368 1.34 0l6.12-6.096a.882.882 0 0 0 0-1.256L9.619 5.276a.951.951 0 0 0-1.34 0 .937.937 0 0 0 0 1.331L13.69 12Z", fill: color })));
755
+ const ForwardRef$1Q = React.forwardRef(SvgChevronRight);
575
756
 
576
- const SvgManHeadset = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
577
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.474 8.652C3.662 4.922 5.984 1 12 1h.193l.947.957c3.932.095 6.25 2.486 6.439 6.695v1.913c.779 0 1.421.649 1.421 1.435v1.913c0 .787-.642 1.435-1.421 1.435v.478c0 2.119-1.691 3.826-3.79 3.826h-1.983c-.198.553-.72.957-1.332.957h-.948a1.436 1.436 0 0 1 0-2.87h.948c.612 0 1.134.404 1.332.957h1.984c1.596 0 2.841-1.258 2.841-2.87v-.344c-.094.041-.186.08-.28.105-.076.183-.151.371-.228.563-.164.41-.334.837-.528 1.26-.379.43-.912.667-1.48.762.474-.907.948-1.969 1.421-3.213l.104-.284.281-.045c.08 0 .161-.013.237-.03v-1.584l-.74.374a.466.466 0 0 1-.46-.026.478.478 0 0 1-.221-.408V9.444c-.446-.15-2.09-.805-3.36-2.496-1.201 1.166-2.937 1.818-4.441 2.182-1.323.322-2.16.375-2.537.399l-.083.005v3.422a.478.478 0 0 1-.22.408.466.466 0 0 1-.461.026l-1.554-.747a1.757 1.757 0 0 0-.134.702c0 .717.524 1.285 1.14 1.285l.281.045.09.284c1.8 4.783 3.75 7.085 6.024 7.085 1.184 0 2.274-.623 3.316-1.914h1.228c-1.136 1.626-2.605 2.87-4.5 2.87-3.504 0-5.547-4.16-6.78-7.413C3.706 15.347 3 14.445 3 13.345c0-.622.142-1.112.474-1.495V8.652Zm9.281-5.739-.948-.956c-3.458.048-7.145 1.864-7.43 6.695v3.064l.991.478V9.13c0-.252.195-.463.444-.478 0 0 1.335-.065 2.917-.448 1.582-.383 3.378-1.099 4.322-2.242a.472.472 0 0 1 .326-.18.475.475 0 0 1 .444.225c1.162 1.911 3.523 2.66 3.523 2.66.203.06.342.249.34.463v3.05l.474-.24v-.896a.475.475 0 0 1 .43-.479h.043V8.652c-.094-2.152-.947-5.739-5.684-5.739h-.192Zm6.35 8.609h.474c.263 0 .474.213.474.478v1.913c0 .265-.211.478-.474.478h-.385a.488.488 0 0 0-.089-.015V12.3a.512.512 0 0 0 0-.15v-.627Zm-6.158 7.652a.475.475 0 0 0-.473-.478h-.948a.475.475 0 0 0-.473.478c0 .265.21.478.473.478h.948a.475.475 0 0 0 .473-.478Z", fill: color })));
578
- const ForwardRef$Z = React.forwardRef(SvgManHeadset);
757
+ const SvgChevronUpDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
758
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.393 9.726 12 5.314l-4.393 4.41a.937.937 0 0 1-1.331 0 .951.951 0 0 1 0-1.339l5.096-5.12a.883.883 0 0 1 1.256 0l5.096 5.121c.368.37.368.97 0 1.34a.937.937 0 0 1-1.331 0Zm-8.786 4.552L12 18.69l4.393-4.411a.937.937 0 0 1 1.331 0c.368.37.368.97 0 1.34l-5.096 5.119a.882.882 0 0 1-1.256 0l-5.096-5.12a.951.951 0 0 1 0-1.34.937.937 0 0 1 1.331 0Z", fill: color })));
759
+ const ForwardRef$1P = React.forwardRef(SvgChevronUpDown);
579
760
 
580
- const SvgMergeTags = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
581
- React__namespace.createElement("path", { d: "M9.911 2a3 3 0 0 0-3 3v4.42L5 12l1.911 2.58V19a3 3 0 0 0 3 3h1.334v-2H9.91a1 1 0 0 1-1-1v-5.08L7.49 12l1.422-1.92V5a1 1 0 0 1 1-1h1.334V2H9.91ZM16.911 2a3 3 0 0 0-3 3v4.42L12 12l1.911 2.58V19a3 3 0 0 0 3 3h1.333v-2h-1.333a1 1 0 0 1-1-1v-5.08L14.49 12l1.422-1.92V5a1 1 0 0 1 1-1h1.333V2h-1.333Z", fill: color })));
582
- const ForwardRef$Y = React.forwardRef(SvgMergeTags);
761
+ const SvgChevronUp = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
762
+ React__namespace.createElement("path", { d: "m12 10.31 5.393 5.412c.367.37.964.37 1.331 0a.951.951 0 0 0 0-1.34l-6.096-6.12a.883.883 0 0 0-1.256 0l-6.096 6.12a.951.951 0 0 0 0 1.34c.367.37.964.37 1.331 0L12 10.31Z", fill: color })));
763
+ const ForwardRef$1O = React.forwardRef(SvgChevronUp);
583
764
 
584
- const SvgMessageClipboard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
585
- React__namespace.createElement("path", { d: "M10.069 2c.693 0 1.181.513 1.426 1.15h4.643v6.578h2.593c.66 0 1.205.493 1.264 1.116l.005.112v7.363c0 .674-.571 1.227-1.27 1.227h-6.345L9.848 22v-2.454H8.58c-.7 0-1.269-.55-1.269-1.229v-.803H4V3.15h4.643C8.888 2.513 9.376 2 10.07 2Zm-3.31 2.298H5.103v12.067h2.208l.004-5.41c0-.637.504-1.165 1.148-1.222l.115-.005h6.456v-5.43H13.38v2.299H6.76V4.298Zm3.31-1.149c-.312 0-.552.25-.552.575v.574H7.862v1.15h4.414v-1.15H10.62v-.574c0-.325-.24-.575-.552-.575Z", fill: color })));
586
- const ForwardRef$X = React.forwardRef(SvgMessageClipboard);
765
+ const SvgCircleDotted = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
766
+ React__namespace.createElement("path", { d: "M12.011 3c-4.661 0-8.507 3.561-8.96 8.105h1.817c.446-3.548 3.476-6.304 7.143-6.304 3.668 0 6.698 2.756 7.144 6.304h1.817C20.518 6.561 16.672 3 12.012 3Zm-8.96 9.907a8.95 8.95 0 0 0 1.996 4.79l1.28-1.28a7.185 7.185 0 0 1-1.46-3.51H3.052Zm14.608 3.539a7.275 7.275 0 0 1-1.275 1.27l.911 1.562a9.102 9.102 0 0 0 1.923-1.898l-1.559-.934ZM7.601 17.689l-1.28 1.281a9.004 9.004 0 0 0 4.155 1.909l.128-1.812a7.175 7.175 0 0 1-3.003-1.378Zm7.23.938a7.18 7.18 0 0 1-2.431.567L12.27 21a8.943 8.943 0 0 0 3.47-.814l-.91-1.559Z", fill: color })));
767
+ const ForwardRef$1N = React.forwardRef(SvgCircleDotted);
587
768
 
588
- const SvgMessageEllipses = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
589
- React__namespace.createElement("path", { d: "M18.4 5H5.6c-.88 0-1.593.727-1.593 1.614L4 19.191c0 .718.862 1.08 1.366.571l1.833-1.85h11.2c.881 0 1.601-.726 1.601-1.614V6.614C20 5.726 19.28 5 18.4 5Zm-8.8 6.456a.805.805 0 0 1-.8.808.804.804 0 0 1-.8-.808c0-.446.358-.807.8-.807.441 0 .8.361.8.807Zm3.2 0a.805.805 0 0 1-.8.808.804.804 0 0 1-.8-.808c0-.446.358-.807.8-.807.441 0 .8.361.8.807Zm3.2 0a.805.805 0 0 1-.8.808.804.804 0 0 1-.8-.808c0-.446.358-.807.8-.807.441 0 .8.361.8.807Z", fill: color })));
590
- const ForwardRef$W = React.forwardRef(SvgMessageEllipses);
769
+ const SvgClockGear = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
770
+ React__namespace.createElement("path", { d: "M12.076 2C6.52 2 2 6.485 2 12c0 5.514 4.52 10 10.076 10 .227 0 .448-.019.671-.033a6.872 6.872 0 0 1-.592-1.971c-.027 0-.052.004-.078.004-4.446 0-8.062-3.589-8.062-8 0-4.41 3.617-8 8.06-8 4.446 0 8.062 3.59 8.062 8 0 .027-.004.051-.004.077.7.1 1.37.302 1.986.59.015-.22.034-.442.034-.667 0-5.513-4.52-10-10.077-10Zm-1.007 3.999v5.587l-3.736 3.707 1.426 1.415 4.325-4.294V6h-2.015V6ZM18.186 14a.252.252 0 0 0-.253.224l-.117 1.012c-.489.168-.93.425-1.312.752l-.944-.406a.253.253 0 0 0-.32.107l-.946 1.622a.252.252 0 0 0 .07.33l.811.599c-.048.247-.077.5-.077.76s.03.513.079.76l-.814.6a.252.252 0 0 0-.069.33l.945 1.621c.066.111.201.155.321.105l.944-.404a4 4 0 0 0 1.31.75l.118 1.013c.016.13.125.225.254.225h1.886c.13 0 .239-.097.254-.225l.118-1.01a4.02 4.02 0 0 0 1.311-.753l.944.407c.12.05.257.002.321-.108l.946-1.621a.254.254 0 0 0-.07-.33l-.813-.6c.05-.247.078-.5.078-.76s-.029-.513-.078-.76l.814-.6a.252.252 0 0 0 .069-.33l-.946-1.62a.256.256 0 0 0-.32-.108l-.945.406a4.002 4.002 0 0 0-1.31-.75l-.119-1.014a.255.255 0 0 0-.254-.224h-1.886Zm.943 3c1.112 0 2.016.896 2.016 2 0 1.103-.904 2-2.016 2a2.009 2.009 0 0 1-2.015-2c0-1.104.903-2 2.015-2Z", fill: color })));
771
+ const ForwardRef$1M = React.forwardRef(SvgClockGear);
591
772
 
592
- const SvgMessageGearOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
593
- React__namespace.createElement("path", { d: "M4.239 3c-.957 0-1.732.771-1.732 1.714L2.5 14.998c0 .947.779 1.716 1.74 1.716h1.74v3.429l3.481-3.429h1.74c0-.595.093-1.17.257-1.714H4.24L4.24 4.714h13.925v6.069c.616.087 1.2.264 1.741.517V4.714c0-.943-.783-1.714-1.74-1.714H4.238Zm12.24 9.429a.22.22 0 0 0-.218.192l-.102.867a3.465 3.465 0 0 0-1.133.645l-.816-.348a.22.22 0 0 0-.277.092l-.816 1.39a.215.215 0 0 0 .06.282l.702.512c-.04.213-.066.43-.066.653 0 .223.024.44.066.652l-.7.514a.215.215 0 0 0-.06.282l.814 1.39a.222.222 0 0 0 .28.09l.813-.346c.33.28.711.5 1.133.644l.102.867c.012.111.107.193.219.193h1.628a.22.22 0 0 0 .22-.192l.102-.868a3.466 3.466 0 0 0 1.132-.644l.816.348a.221.221 0 0 0 .277-.092l.816-1.39a.215.215 0 0 0-.06-.282l-.702-.514c.042-.212.066-.429.066-.652 0-.223-.024-.44-.066-.65l.7-.515a.215.215 0 0 0 .06-.283l-.814-1.39a.222.222 0 0 0-.28-.09l-.813.347c-.33-.281-.711-.5-1.132-.645l-.102-.867a.218.218 0 0 0-.22-.192H16.48Zm.815 2.785c.84 0 1.523.671 1.523 1.5 0 .828-.682 1.5-1.523 1.5-.84 0-1.523-.672-1.523-1.5 0-.829.682-1.5 1.523-1.5Z", fill: color })));
594
- const ForwardRef$V = React.forwardRef(SvgMessageGearOutlined);
773
+ const SvgClock = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
774
+ React__namespace.createElement("path", { d: "M12.9 6.5a.9.9 0 1 0-1.8 0V12a.9.9 0 0 0 .546.827l3.5 1.5a.9.9 0 1 0 .709-1.654L12.9 11.406V6.5Z", fill: color }),
775
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM3.8 12a8.2 8.2 0 1 1 16.4 0 8.2 8.2 0 1 1-16.4 0Z", fill: color })));
776
+ const ForwardRef$1L = React.forwardRef(SvgClock);
595
777
 
596
- const SvgMessageGear = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
597
- React__namespace.createElement("path", { d: "M4.647 4c-.907 0-1.64.729-1.64 1.619L3 15.332c0 .894.738 1.62 1.65 1.62h1.647v3.238l3.298-3.238h1.649a5.5 5.5 0 0 1 .06-.81h.006c.01-.073.028-.144.042-.217.028-.15.061-.298.101-.443.66-2.415 2.894-4.196 5.562-4.196.28 0 .556.021.825.06v.005a5.791 5.791 0 0 1 1.649.488V5.62c0-.89-.742-1.619-1.65-1.619H4.648Zm11.597 8.905a.208.208 0 0 0-.208.182l-.096.819c-.4.136-.76.342-1.073.608l-.773-.329a.21.21 0 0 0-.262.087l-.773 1.313a.203.203 0 0 0 .056.267l.665.484c-.039.2-.063.406-.063.616 0 .21.024.415.063.615l-.663.486a.203.203 0 0 0-.057.267l.772 1.312a.21.21 0 0 0 .264.086l.771-.328c.313.266.674.473 1.073.61l.096.818a.206.206 0 0 0 .208.182h1.543a.208.208 0 0 0 .207-.182l.097-.819c.4-.136.76-.342 1.073-.609l.773.33a.21.21 0 0 0 .262-.088l.773-1.312a.203.203 0 0 0-.056-.267l-.665-.486c.04-.2.063-.404.063-.615 0-.21-.024-.415-.063-.615l.663-.485a.203.203 0 0 0 .057-.267l-.772-1.313a.21.21 0 0 0-.264-.085l-.771.327a3.293 3.293 0 0 0-1.073-.608l-.097-.82a.207.207 0 0 0-.207-.181h-1.543Zm.771 2.63c.797 0 1.443.635 1.443 1.417s-.646 1.417-1.443 1.417c-.796 0-1.443-.635-1.443-1.417s.647-1.416 1.443-1.416Z", fill: color })));
598
- const ForwardRef$U = React.forwardRef(SvgMessageGear);
778
+ const SvgCloseCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
779
+ React__namespace.createElement("path", { d: "M12 3c-4.977 0-9 4.023-9 9s4.023 9 9 9 9-4.023 9-9-4.023-9-9-9Zm4.5 12.231L15.231 16.5 12 13.269 8.769 16.5 7.5 15.231 10.731 12 7.5 8.769 8.769 7.5 12 10.731 15.231 7.5 16.5 8.769 13.269 12l3.231 3.231Z", fill: color })));
780
+ const ForwardRef$1K = React.forwardRef(SvgCloseCircle);
599
781
 
600
- const SvgMessageLink = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
601
- React__namespace.createElement("path", { d: "M3.748 4c-.963 0-1.741.787-1.741 1.75L2 16.248C2 17.215 2.783 18 3.75 18h1.748v3.5l3.5-3.5h1.591c-.337-.321-.414-.504-.543-.811l-.012-.029c-.141-.343-.175-.566-.223-.91H3.75l-.002-10.5h14v5.947h1.75V5.75c0-.963-.788-1.75-1.75-1.75h-14Z", fill: color }),
602
- React__namespace.createElement("path", { d: "M13.532 12.55a2.985 2.985 0 0 0 0 5.968h2.427v-1.513h-2.427a1.47 1.47 0 1 1 0-2.941h2.427V12.55h-2.427ZM20.214 12.55h-2.426v1.514h2.427a1.47 1.47 0 1 1 0 2.94h-2.428v1.514h2.427a2.985 2.985 0 0 0 0-5.968Z", fill: color }),
603
- React__namespace.createElement("path", { d: "M19.856 14.777h-5.968v1.514h5.968v-1.514Z", fill: color })));
604
- const ForwardRef$T = React.forwardRef(SvgMessageLink);
782
+ const SvgClose = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
783
+ React__namespace.createElement("path", { d: "M18.695 5.305a1.042 1.042 0 0 0-1.475 0L12 10.525l-5.22-5.22A1.043 1.043 0 1 0 5.305 6.78l5.22 5.22-5.22 5.22a1.042 1.042 0 1 0 1.475 1.475l5.22-5.22 5.22 5.22a1.042 1.042 0 1 0 1.475-1.475L13.475 12l5.22-5.22a1.042 1.042 0 0 0 0-1.475Z", fill: color })));
784
+ const ForwardRef$1J = React.forwardRef(SvgClose);
605
785
 
606
- const SvgMessage = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
607
- React__namespace.createElement("path", { d: "M18.4 5H5.6c-.423.001-.83.171-1.13.469-.298.3-.468.708-.47 1.131V21l3.2-3.2h11.2c.423-.001.83-.171 1.13-.469.3-.3.467-.708.47-1.131V6.6A1.607 1.607 0 0 0 18.4 5Z", fill: color })));
608
- const ForwardRef$S = React.forwardRef(SvgMessage);
786
+ const SvgClosedSign = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
787
+ React__namespace.createElement("path", { d: "M12.054 4.114a.784.784 0 0 0-.779.788c0 .433.35.787.779.787a.784.784 0 0 0 .778-.787.784.784 0 0 0-.778-.788Zm-1.386 1.5L5.745 8.839H7.18l4.012-2.633a1.561 1.561 0 0 1-.523-.59Zm2.771 0c-.121.24-.302.442-.523.591l4.012 2.633h1.422L13.44 5.615ZM3.496 9.627a.392.392 0 0 0-.389.393v9.447c0 .219.175.394.389.394h17.116a.39.39 0 0 0 .388-.394V10.02a.39.39 0 0 0-.389-.393H3.497ZM5.83 12.38c.643 0 1.167.53 1.167 1.18v.394H6.22v-.393a.392.392 0 0 0-.389-.394.392.392 0 0 0-.39.393v2.363c0 .217.176.393.39.393a.392.392 0 0 0 .389-.393v-.394h.778v.394c0 .65-.524 1.18-1.167 1.18s-1.167-.53-1.167-1.18v-2.362c0-.65.524-1.181 1.167-1.181Zm1.556 0h.777v3.936H9.33v.788H7.386V12.38Zm3.112 0c.643 0 1.167.53 1.167 1.18v2.363c0 .65-.524 1.18-1.167 1.18s-1.167-.53-1.167-1.18v-2.362c0-.65.524-1.181 1.167-1.181Zm2.723 0c.642 0 1.166.53 1.166 1.18v.394h-.778v-.393a.391.391 0 0 0-.388-.394.392.392 0 0 0-.39.393v.542l1.556.787v1.034c0 .65-.524 1.18-1.166 1.18-.643 0-1.167-.53-1.167-1.18v-.394h.778v.394c0 .217.175.393.388.393a.392.392 0 0 0 .39-.393v-.542l-1.556-.787V13.56c0-.65.524-1.18 1.167-1.18Zm1.555 0h1.945v.787h-1.167v1.18h1.167v.788h-1.167v1.18h1.167v.788h-1.945v-4.723Zm2.334 0h1.167c.643 0 1.167.53 1.167 1.18v2.363c0 .65-.524 1.18-1.167 1.18H17.11v-4.723Zm-6.612.787a.392.392 0 0 0-.39.393v2.362c0 .217.175.394.39.394.214 0 .389-.177.389-.393V13.56a.392.392 0 0 0-.39-.394Zm7.39 0v3.149h.389c.214 0 .39-.177.39-.393V13.56a.392.392 0 0 0-.39-.394h-.389Z", fill: color })));
788
+ React.forwardRef(SvgClosedSign);
609
789
 
610
- const SvgMessages = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
611
- React__namespace.createElement("path", { d: "M8 4c-.443 0-.8.366-.8.817 0 .45.357.817.8.817h10.4v7.351c0 .452.358.817.8.817.441 0 .8-.365.8-.817V5.634C20 4.73 19.284 4 18.4 4H8ZM5.6 7.267c-.883 0-1.595.736-1.595 1.634L4 19.181c0 .727.861 1.093 1.366.578l1.833-1.872h8c.881 0 1.6-.736 1.6-1.634V8.9c0-.898-.719-1.634-1.6-1.634H5.6Z", fill: color })));
612
- const ForwardRef$R = React.forwardRef(SvgMessages);
790
+ const SvgCode = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
791
+ React__namespace.createElement("path", { d: "M5.778 4C4.796 4 4 4.796 4 5.778v12.444C4 19.194 4.806 20 5.778 20h12.444c.972 0 1.778-.806 1.778-1.778V5.777C20 4.797 19.204 4 18.222 4H5.778Zm0 3.556h12.444v10.666H5.778V7.556Zm4.444 2.743a.627.627 0 0 0-.444.184L8 12.26a.888.888 0 0 0 0 1.257l1.778 1.778a.629.629 0 0 0 .889-.889L9.149 12.89l1.518-1.518a.629.629 0 0 0-.445-1.072Zm3.556 0a.627.627 0 0 0-.445 1.072l1.518 1.518-1.518 1.517a.629.629 0 0 0 .89.89L16 13.516a.888.888 0 0 0 0-1.257l-1.778-1.777a.627.627 0 0 0-.444-.184Z", fill: color })));
792
+ const ForwardRef$1I = React.forwardRef(SvgCode);
613
793
 
614
- const SvgMicrophoneMute = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
615
- React__namespace.createElement("path", { d: "M11.625 1.5a3.511 3.511 0 0 0-3.5 3.5v6.125c0 1.924 1.576 3.5 3.5 3.5s3.5-1.576 3.5-3.5V5c0-1.924-1.576-3.5-3.5-3.5Z", fill: color }),
616
- React__namespace.createElement("path", { d: "M3.75 11.125c0 4.03 3.083 7.376 7 7.82V22.5h1.75v-3.555a7.864 7.864 0 0 0 3.964-1.629l-1.089-1.191c-1.05.842-2.305 1.125-3.75 1.125-3.374 0-6.125-2.752-6.125-6.125H3.75ZM18.525 16.875 16.5 14.85l1.35-1.35 2.025 2.025L21.9 13.5l1.35 1.35-2.025 2.025L23.25 18.9l-1.35 1.35-2.025-2.025-2.025 2.025-1.35-1.35 2.025-2.025Z", fill: color })));
617
- const ForwardRef$Q = React.forwardRef(SvgMicrophoneMute);
794
+ const SvgConversation = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
795
+ React__namespace.createElement("path", { d: "M8.277 1c-1.16 0-2.11.99-2.11 2.2v4.4c0 1.21.95 2.2 2.11 2.2h2.112l1.625 2.539a.572.572 0 0 0 .972 0l1.625-2.54h2.112c1.16 0 2.11-.99 2.11-2.2V3.2c0-1.21-.95-2.2-2.11-2.2H8.277ZM7.223 13.1c-1.167 0-2.112.985-2.112 2.2 0 1.215.945 2.2 2.112 2.2 1.165 0 2.11-.985 2.11-2.2 0-1.216-.945-2.2-2.11-2.2Zm10.554 0c-1.165 0-2.11.985-2.11 2.2 0 1.215.945 2.2 2.11 2.2 1.167 0 2.112-.985 2.112-2.2 0-1.216-.945-2.2-2.112-2.2ZM7.223 18.6C4.915 18.6 3 19.6 3 21.039v.86C3 22.508 3.473 23 4.056 23h6.333c.583 0 1.056-.493 1.056-1.1v-.862c0-1.439-1.917-2.438-4.222-2.438Zm10.554 0c-2.305 0-4.221 1-4.221 2.439v.86c0 .608.472 1.101 1.055 1.101h6.333c.583 0 1.056-.493 1.056-1.1v-.862c0-1.439-1.915-2.438-4.223-2.438Z", fill: color })));
796
+ const ForwardRef$1H = React.forwardRef(SvgConversation);
618
797
 
619
- const SvgMicrophone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
620
- React__namespace.createElement("path", { d: "M11.925 1.5a3.511 3.511 0 0 0-3.5 3.5v6.125c0 1.924 1.576 3.5 3.5 3.5s3.5-1.576 3.5-3.5V5c0-1.924-1.576-3.5-3.5-3.5ZM4.05 11.125c0 4.03 3.083 7.376 7 7.82V22.5h1.75v-3.555c3.917-.444 7-3.79 7-7.82h-1.75c0 3.373-2.751 6.125-6.125 6.125-3.373 0-6.125-2.752-6.125-6.125H4.05Z", fill: color })));
621
- const ForwardRef$P = React.forwardRef(SvgMicrophone);
798
+ const SvgCreditCardHand = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
799
+ React__namespace.createElement("path", { d: "M10.286 6c-.895 0-1.62.684-1.62 1.53v.764H20V7.53C20 6.684 19.276 6 18.381 6h-8.095Zm-1.62 3.823v3.06c0 .33.115.636.306.886l3.67-2.159c.702-.414 1.622-.261 2.132.356l.59.713c.416.503.606 1.12.582 1.733h2.435c.895 0 1.619-.684 1.619-1.529v-3.06H8.667Zm-2.632.07a1 1 0 0 0-.51.165l-1.83 1.2A1.505 1.505 0 0 0 3 12.515v4.957C3 18.316 3.724 19 4.619 19h4.519c.907 0 1.754-.428 2.256-1.14l2.721-2.894c.31-.404.299-.952-.027-1.344-.36-.518-.818-.604-1.374-.252l-3.559 2.094c-.918.541-2.108-.083-2.108-1.104v-3.55c0-.554-.494-.937-1.013-.916Z", fill: color })));
800
+ const ForwardRef$1G = React.forwardRef(SvgCreditCardHand);
622
801
 
623
- const SvgMinus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
624
- React__namespace.createElement("path", { d: "M3 12a1 1 0 0 1 1-1h16a1 1 0 0 1 0 2H4a1 1 0 0 1-1-1Z", fill: color })));
625
- const ForwardRef$O = React.forwardRef(SvgMinus);
802
+ const SvgCreditCardLogoAmex = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
803
+ React__namespace.createElement("path", { fill: "#1976D2", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
804
+ React__namespace.createElement("path", { fill: "#FFF", d: "m22.255 20-2.113 4.683L18.039 20h-2.695v6.726L12.341 20h-2.274L7 26.981h1.815l.671-1.558h3.432l.682 1.558h3.465v-5.185l2.299 5.185h1.563l2.351-5.095v5.095H25V20h-2.745zm-12.12 3.915 1.026-2.44 1.066 2.44h-2.092zm27.748-.502L41 20.018h-2.217l-1.994 2.164L34.86 20H28v6.982h6.635l2.092-2.311L38.767 27h2.21l-3.094-3.587zm-4.155 2.103h-4.011v-1.381h3.838v-1.323h-3.838v-1.308l4.234.012 1.693 1.897-1.916 2.103z" })));
805
+ React.forwardRef(SvgCreditCardLogoAmex);
626
806
 
627
- const SvgMoveLeft = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
628
- React__namespace.createElement("path", { d: "M12.97 4.97a.75.75 0 1 1 1.06 1.06L9.06 11h12.19a.75.75 0 1 1 0 1.5H9.06l4.97 4.97a.75.75 0 1 1-1.06 1.06l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25ZM3.5 4.75a.75.75 0 0 0-1.5 0v14.5a.75.75 0 1 0 1.5 0V4.75Z", fill: color })));
629
- const ForwardRef$N = React.forwardRef(SvgMoveLeft);
807
+ const SvgCreditCardLogoDiners = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
808
+ React__namespace.createElement("path", { fill: "#CFD8DC", d: "M45 35c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V13c0-2.2 1.8-4 4-4h34c2.2 0 4 1.8 4 4v22z" }),
809
+ React__namespace.createElement("path", { fill: "#1565C0", d: "M29 16H19c-4.4 0-8 3.6-8 8s3.6 8 8 8h10c4.4 0 8-3.6 8-8s-3.6-8-8-8z" }),
810
+ React__namespace.createElement("path", { fill: "#FFF", d: "M19 18c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm-4 6c0-1.9 1.3-3.4 3-3.9v7.7c-1.7-.4-3-1.9-3-3.8zm5 3.9v-7.7c1.7.4 3 2 3 3.9 0 1.8-1.3 3.3-3 3.8z" })));
811
+ React.forwardRef(SvgCreditCardLogoDiners);
630
812
 
631
- const SvgMoveRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
632
- React__namespace.createElement("path", { d: "M11.03 19.03a.75.75 0 1 1-1.06-1.06L14.94 13H2.75a.75.75 0 1 1 0-1.5h12.19L9.97 6.53a.75.75 0 1 1 1.06-1.06l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25Zm9.47.22a.75.75 0 1 0 1.5 0V4.75a.75.75 0 1 0-1.5 0v14.5Z", fill: color })));
633
- const ForwardRef$M = React.forwardRef(SvgMoveRight);
813
+ const SvgCreditCardLogoDiscover = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
814
+ React__namespace.createElement("path", { fill: "#E1E7EA", d: "M45 35c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V13c0-2.2 1.8-4 4-4h34c2.2 0 4 1.8 4 4v22z" }),
815
+ React__namespace.createElement("path", { fill: "#FF6D00", d: "M45 35c0 2.2-1.8 4-4 4H16s23.6-3.8 29-15v11zM22 24c0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3-3 1.3-3 3z" }),
816
+ React__namespace.createElement("path", { d: "M11.2 21h1.1v6h-1.1v-6zm6 3c0 1.7 1.3 3 3 3 .5 0 .9-.1 1.4-.3v-1.3c-.4.4-.8.6-1.4.6-1.1 0-1.9-.8-1.9-2 0-1.1.8-2 1.9-2 .5 0 .9.2 1.4.6v-1.3c-.5-.2-.9-.4-1.4-.4-1.7.1-3 1.5-3 3.1zm13.4.9L29 21h-1.2l2.5 6h.6l2.5-6h-1.2l-1.6 3.9zm3.3 2.1h3.2v-1H35v-1.6h2v-1h-2V22h2.1v-1h-3.2v6zm7.6-4.2c0-1.1-.7-1.8-2-1.8h-1.7v6h1.1v-2.4h.1l1.6 2.4H42l-1.8-2.5c.8-.2 1.3-.8 1.3-1.7zm-2.3 1h-.3V22h.3c.7 0 1.1.3 1.1.9 0 .5-.3.9-1.1.9zM7.7 21H6v6h1.6c2.5 0 3.1-2.1 3.1-3 .1-1.8-1.2-3-3-3zm-.3 5h-.3v-4h.4c1.5 0 2.1 1 2.1 2 0 .4-.1 2-2.2 2zm7.9-2.7c-.7-.3-.9-.4-.9-.7 0-.4.4-.6.8-.6.3 0 .6.1.9.5l.6-.8c-.5-.5-1-.7-1.7-.7-1 0-1.8.7-1.8 1.7 0 .8.4 1.2 1.4 1.6.6.2 1.1.4 1.1.9s-.4.8-.9.8-1-.3-1.2-.8l-.7.7c.5.8 1.1 1.1 2 1.1 1.2 0 2-.8 2-1.9 0-.9-.4-1.3-1.6-1.8z" })));
817
+ React.forwardRef(SvgCreditCardLogoDiscover);
634
818
 
635
- const SvgMultipleChoice = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
636
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 7.324a2.075 2.075 0 1 1 4.149 0 2.075 2.075 0 0 1-4.149 0Zm5.532.692V6.633h6.915v1.383h-6.915Zm-3.457 2.075A2.085 2.085 0 0 0 6 12.165c0 1.138.937 2.075 2.075 2.075a2.085 2.085 0 0 0 2.074-2.075 2.085 2.085 0 0 0-2.074-2.074Zm.989 2.149a.943.943 0 0 0-.958-.958.943.943 0 0 0-.957.957c0 .54.417.958.957.958s.958-.417.958-.957Zm2.468-.767v1.383h6.915v-1.383h-6.915ZM6 17.006c0-1.138.937-2.075 2.075-2.075 1.137 0 2.074.937 2.074 2.075a2.085 2.085 0 0 1-2.074 2.074A2.085 2.085 0 0 1 6 17.006Zm2.106-.937c.54 0 .958.418.958.958s-.418.957-.958.957a.943.943 0 0 1-.957-.957c0-.54.417-.958.957-.958Zm3.426 1.628v-1.383h6.915v1.383h-6.915Z", fill: color })));
637
- const ForwardRef$L = React.forwardRef(SvgMultipleChoice);
819
+ const SvgCreditCardLogoGeneric = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
820
+ React__namespace.createElement("path", { fill: "#3F51B5", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
821
+ React__namespace.createElement("path", { fill: "#FFC107", d: "M16 21a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v4zm-1 5H9v2h6v-2zm8 5H9v2h14v-2zm0-5h-6v2h6v-2zm8 0h-6v2h6v-2zm8 0h-6v2h6v-2z" }),
822
+ React__namespace.createElement("path", { fill: "#9FA8DA", d: "M20 16h19v4H20z" })));
823
+ React.forwardRef(SvgCreditCardLogoGeneric);
638
824
 
639
- const SvgNotification = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
640
- React__namespace.createElement("path", { d: "M17.217 4a2.783 2.783 0 1 0 .001 5.567 2.783 2.783 0 0 0 0-5.567Zm-11.826.696A1.39 1.39 0 0 0 4 6.086V18.61C4 19.377 4.623 20 5.39 20h12.523c.77 0 1.391-.623 1.391-1.39v-8.216a4.163 4.163 0 0 1-2.087.563 4.174 4.174 0 0 1-4.174-4.174c0-.761.207-1.473.563-2.087H5.39Z", fill: color })));
641
- const ForwardRef$K = React.forwardRef(SvgNotification);
825
+ const SvgCreditCardLogoJcb = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
826
+ React__namespace.createElement("path", { fill: "#CFD8DC", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
827
+ React__namespace.createElement("path", { fill: "#3F51B5", d: "M10.669 13C8.58 13 7 14.324 7 16.617V35h6.483C15.114 35 17 33.469 17 31.483V13h-6.331z" }),
828
+ React__namespace.createElement("path", { fill: "#E53935", d: "M22.669 13C20.58 13 19 14.324 19 16.617V35h6.483C27.114 35 29 33.469 29 31.483V13h-6.331z" }),
829
+ React__namespace.createElement("path", { fill: "#388E3C", d: "M34.669 13C32.58 13 31 14.324 31 16.617V35h6.483C39.114 35 41 33.469 41 31.483V13h-6.331z" }),
830
+ React__namespace.createElement("path", { fill: "#FAFAFA", d: "M15.806 24.453c0 1.835-2.369 2.803-4.101 2.803-1.884 0-3.567-1.12-3.926-2.545h1.274c.152.866 1.021 1.475 1.987 1.475 1.07 0 1.834-.764 1.834-1.732v-3.311h2.931v3.31zm22.8-.415c.762 0 1.295-.759 1.295-1.519 0-.762-.663-1.422-1.425-1.422h-6.262v5.852h6.392c.863 0 1.522-.757 1.523-1.519 0-.759-.659-1.392-1.523-1.392zm-3.955-2.331h1.979c.504 0 .961.453.961.959 0 .509-.457.967-.961.967h-1.979v-1.926zm2.028 4.636h-2.027v-1.928h2.027c.508 0 .965.456.965.965 0 .505-.457.963-.965.963zm-8.868-4.167c-1.168-.27-2.286-.427-2.845-.427-1.218 0-2.181 1.017-2.181 2.303 0 1.292.963 2.311 2.181 2.311.559 0 1.677-.107 2.845-.38v1.021h-4.875c-1.522 0-2.79-1.342-2.79-2.952 0-1.607 1.268-2.948 2.79-2.948h4.875v1.072z" })));
831
+ React.forwardRef(SvgCreditCardLogoJcb);
642
832
 
643
- const SvgPaperAirplane2 = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
644
- React__namespace.createElement("path", { d: "M20.861 3.075a.355.355 0 0 0-.388-.032L3.186 12.406a.354.354 0 0 0-.184.346.355.355 0 0 0 .243.307l4.914 1.604-.475 4.864a.354.354 0 0 0 .212.362.355.355 0 0 0 .41-.09l3.099-3.502 4.666 4.6a.359.359 0 0 0 .348.089.355.355 0 0 0 .249-.256L20.99 3.444a.356.356 0 0 0-.128-.369ZM8.883 14.597l7.027-5.682-4.788 6.63L8.5 18.503l.382-3.906Z", fill: color })));
645
- const ForwardRef$J = React.forwardRef(SvgPaperAirplane2);
833
+ const SvgCreditCardLogoMastercard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
834
+ React__namespace.createElement("path", { fill: "#3F51B5", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
835
+ React__namespace.createElement("path", { fill: "#FFC107", d: "M30 14a10 10 0 1 0 0 20 10 10 0 1 0 0-20Z" }),
836
+ React__namespace.createElement("path", { fill: "#FF3D00", d: "M22.014 30a9.983 9.983 0 0 1-1.176-2h5.325a9.9 9.9 0 0 0 .637-2h-6.598A9.976 9.976 0 0 1 20 24h7c0-.686-.07-1.354-.201-2h-6.598a9.964 9.964 0 0 1 .637-2h5.325a9.936 9.936 0 0 0-1.176-2h-2.973c.437-.58.93-1.122 1.481-1.595A9.955 9.955 0 0 0 17 14c-5.523 0-10 4.477-10 10s4.477 10 10 10c3.269 0 6.162-1.575 7.986-4h-2.972z" })));
837
+ React.forwardRef(SvgCreditCardLogoMastercard);
646
838
 
647
- const SvgPaperAirplaneRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
648
- React__namespace.createElement("path", { d: "M3.9 4c-.497 0-.9.398-.9.889v4.975c0 .456.35.838.81.883L16.5 12 3.81 13.254a.892.892 0 0 0-.81.882v4.974c0 .492.403.89.9.89a.91.91 0 0 0 .485-.14h.002l16.019-7.022-.002-.003A.89.89 0 0 0 21 12a.889.889 0 0 0-.596-.835l.002-.003L4.375 4.135A.918.918 0 0 0 3.9 4Z", fill: color })));
649
- const ForwardRef$I = React.forwardRef(SvgPaperAirplaneRight);
839
+ const SvgCreditCardLogoUnionpay = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
840
+ React__namespace.createElement("path", { fill: "#e21836", d: "M10.09 9h11.585c1.617 0 2.623 1.362 2.246 3.039l-5.394 23.927c-.381 1.671-2 3.034-3.618 3.034H3.325c-1.369-.001-2.302-.98-2.325-2.296a3.092 3.092 0 0 1 .079-.739l5.396-23.927C6.852 10.362 8.471 9 10.09 9" }),
841
+ React__namespace.createElement("path", { fill: "#00447c", d: "M20.5 9h13.47c1.657 0 .91 1.362.52 3.039l-5.527 23.928c-.388 1.67-.267 3.033-1.928 3.033H13.38c-1.39 0-2.336-.955-2.379-2.246a3.065 3.065 0 0 1 .081-.788l5.711-23.928C17.187 10.362 18.657 9 20.316 9" }),
842
+ React__namespace.createElement("path", { fill: "#007b84", d: "M33.273 9h11.401c1.183 0 2.039.727 2.266 1.773.044.204.064.42.059.645-.005.2-.031.408-.079.62l-5.393 23.928C41.146 37.637 39.525 39 37.906 39h-11.58c-1.355 0-2.279-.953-2.324-2.241a3.088 3.088 0 0 1 .078-.792l5.578-23.928C30.036 10.362 31.653 9 33.273 9z" }),
843
+ React__namespace.createElement("path", { fill: "#fefefe", d: "M19.364 18.117c-.325-.195-.905-.134-1.302.135-.396.263-.45.636-.126.833.319.189.902.134 1.296-.137.394-.268.453-.638.132-.831zm22.944 1.259-1.171 2.048L40.874 19l-1.24.294.454 3.963-1.415 2.293c-.038.054-.072.091-.119.107a.491.491 0 0 1-.21.03h-.04l-.304.937.75.001c.53-.002.904-.288 1.092-.625L44 19l-1.692.376zM22.157 25l-.404.701c-.087.153-.235.299-.563.299h-.201l-.282.875h.668c.787 0 1.158-.431 1.158-.431h2.086l.301-.933h-1.752l.28-.51L22.157 25zm-11.741-5.115c-.194.75-.341 1.24-.679 1.585-.233.238-.593.351-.923.35-.493 0-.91-.311-.883-.823.002-.038.007-.078.014-.119C8.187 19.531 9.242 16 9.242 16H7.275l-1.02 4.03s-.25.968-.255 1.379c-.004.313.047.569.164.785.376.685 1.488.806 2.124.806 1.088 0 1.731-.104 2.257-.424.839-.51 1.082-1.2 1.341-2.175C12.178 19.305 13 16 13 16h-1.595l-.989 3.885zM13.701 23l.705-2.869c.153-.066.303-.131.445-.131.338 0 .414.281.397.393-.014.136-.59 2.607-.59 2.607h1.404l.491-2.068c.204-.764.307-1.152.177-1.468-.136-.353-.484-.464-.806-.464-.21 0-.596.073-.946.234-.127.061-.247.132-.374.202l.103-.438-1.493.234L12.25 23h1.451zm11.875 0 .705-2.869c.153-.066.303-.131.445-.131.338 0 .414.281.397.393-.014.136-.59 2.607-.59 2.607h1.404l.491-2.068c.204-.764.307-1.152.177-1.468-.136-.353-.484-.464-.806-.464-.21 0-.596.073-.946.234-.127.061-.247.132-.374.202l.103-.438-1.493.234L24.125 23h1.451zM17 23h1.451l.75-3-1.486.22zm18.424-6.38c-.414-.603-1.269-.615-2.257-.62h-2.341L29 23h1.579l.665-2.5h.294c1.007 0 1.972-.014 2.809-.618.585-.426 1.033-.992 1.228-1.757a2.8 2.8 0 0 0 .096-.633c.007-.293-.083-.645-.247-.872zm-1.682 1.57c-.115.467-.428.86-.822 1.049-.324.16-.721.137-1.125.136h-.252L32.175 17h.62c.75 0 .988.477.986.875 0 .103-.013.209-.039.315zM28.47 29l-.099.293c-.02.063-.1.207-.327.207h-.419V29H26.5v2.5c-.007.183.179.5.998.5h.932l.286-.876-.84.001c-.25 0-.245-.116-.248-.3-.003-.2-.003-.575-.003-.575h.794c.73 0 .89-.606.946-.787l.109-.463H28.47z" }),
844
+ React__namespace.createElement("path", { fill: "#fefefe", d: "M28.824 25c-1.502 0-1.795.67-1.795.67l.206-.67h-1.21l-1.979 6.083c-.021.07-.048.18-.046.299.006.282.174.618.964.618l.718-.001.32-.999h-.485c-.157 0-.125-.13-.125-.13l.709-2.152h1.778c1.47 0 1.743-.9 1.875-1.31L30.538 25h-1.714zm-.526 3h-2.001l.206-.604h2.005l-.21.604zm.524-1.482s-1.012-.01-1.175.02c-.717.124-1.018.508-1.018.508L26.967 26h2.023l-.168.518zm8.685-7.284-.028.111a1.065 1.065 0 0 0-.811-.345c-.5 0-.937.179-1.45.617-.451.39-.677.926-.811 1.439-.052.19-.083.491-.083.694 0 1.25 1.082 1.25 1.345 1.25.395 0 .71-.151.965-.347l-.091.347h1.451L39 19l-1.493.234zm-1.409 2.882c-.063 0-.438 0-.429-.411a2.85 2.85 0 0 1 .125-.691c.17-.608.399-1.139 1-1.139.47 0 .461.377.26 1.133a3.459 3.459 0 0 1-.348.8c-.185.278-.396.308-.608.308zm-12.33-2.623c-.297-.373-.838-.492-1.402-.493-.339 0-1.149.031-1.796.579-.465.396-.69.934-.831 1.449-.142.525-.316 1.471.596 1.824.281.116.69.148.955.148.675.001 1.372-.174 1.908-.695.413-.422.614-1.051.685-1.31.231-.857.081-1.258-.115-1.502zm-2.339 2.622c-.063 0-.438 0-.429-.411.004-.203.06-.471.125-.691.169-.572.4-1.139 1-1.139.47 0 .461.377.26 1.133a3.459 3.459 0 0 1-.348.8c-.185.279-.396.309-.608.308zm-.582 5-.291.885h.846l-.248.769h-.848l-.306.937h.845l-.536 1.639c-.072.217-.075.654.738.654h1.627L23 31h-1.181c-.25 0-.183-.177-.183-.177l.368-1.132h1.746l.302-.921h-1.747l.255-.77h1.713l.297-.885h-3.723zm18.853.801L40 27h-4.037l-.294.916h1.211l-.247.743h-1.232l-.263.812h1.082l-.963 1.265a.608.608 0 0 1-.508.264h-.486l.095-.289h-.418L35.479 26h.547l.172-.518v.517c0 .434.125.626.821.626h.478l.303-.935h-.223c-.147.003-.217-.044-.205-.138V25h-1.25c-1.175 0-1.903.055-2.193.132-.351.09-.807.357-.807.357l.157-.489H31.98l-1.862 5.722h-.28l-.318.968h2.874l-.101.31h1.229l.1-.31h.402l-.105.31h1.02c.259 0 .468-.058.642-.155.182-.101.325-.244.447-.407l.756-1.006.115 1.055c.029.192.103.513.892.513h.568l.329-1h-.371c-.265 0-.322-.195-.337-.297l-.132-1.024h-.615l.25-.208h1.703l.268-.812h-1.585l.251-.743h1.58zM32.964 26h1.303l-.278.853s-.462.028-.693.08c-.393.09-.72.248-.72.248L32.964 26zm-.235 4.722h-1.306l.347-1.064h1.303l-.344 1.064zm.679-2.1s-.346.043-.574.095c-.399.115-.855.283-.855.283l.4-1.218h1.308l-.279.84z" })));
845
+ React.forwardRef(SvgCreditCardLogoUnionpay);
650
846
 
651
- const SvgPaperAirplane = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
652
- React__namespace.createElement("path", { d: "M19.91 4.064a.275.275 0 0 0-.29-.04l-3.33 1.483-14.134 6.306a.265.265 0 0 0-.113.094.251.251 0 0 0-.003.277.265.265 0 0 0 .111.096l4.942 2.33a.278.278 0 0 0 .277-.026l4.805-3.449-3.77 3.729a.256.256 0 0 0-.075.2l.375 4.697c.004.051.024.1.057.14a.27.27 0 0 0 .127.086.28.28 0 0 0 .288-.077l2.623-2.919 3.243 1.488a.276.276 0 0 0 .316-.06.256.256 0 0 0 .056-.096l3.185-9.74 1.389-4.252a.248.248 0 0 0-.08-.267Z", fill: color })));
653
- const ForwardRef$H = React.forwardRef(SvgPaperAirplane);
847
+ const SvgCreditCardLogoVisa = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: width, height: height, ref: ref },
848
+ React__namespace.createElement("path", { fill: "#1565C0", d: "M45 35a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V13a4 4 0 0 1 4-4h34a4 4 0 0 1 4 4v22z" }),
849
+ React__namespace.createElement("path", { fill: "#FFF", d: "m15.186 19-2.626 7.832s-.667-3.313-.733-3.729c-1.495-3.411-3.701-3.221-3.701-3.221L10.726 30v-.002h3.161L18.258 19h-3.072zm2.503 11h2.871l1.736-11h-2.907zm20.319-11h-3.021l-4.71 11h2.852l.588-1.571h3.596L37.619 30h2.613l-2.224-11zm-3.495 7.328 1.563-4.157.818 4.157h-2.381zm-8.144-4.122c0-.606.498-1.057 1.926-1.057.928 0 1.991.674 1.991.674l.466-2.309s-1.358-.515-2.691-.515c-3.019 0-4.576 1.444-4.576 3.272 0 3.306 3.979 2.853 3.979 4.551 0 .291-.231.964-1.888.964-1.662 0-2.759-.609-2.759-.609l-.495 2.216s1.063.606 3.117.606c2.059 0 4.915-1.54 4.915-3.752 0-2.661-3.985-2.853-3.985-4.041z" }),
850
+ React__namespace.createElement("path", { fill: "#FFC107", d: "m12.212 24.945-.966-4.748s-.437-1.029-1.573-1.029h-4.44s5.661 1.672 6.979 5.777z" })));
851
+ React.forwardRef(SvgCreditCardLogoVisa);
654
852
 
655
- const SvgPaperPen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
656
- React__namespace.createElement("path", { d: "M6.6 3C5.72 3 5 3.777 5 4.727v13.819c0 .95.72 1.727 1.6 1.727h8.937L12.2 16.67v-4.167h3.863l1.737 1.875V8.184L13 3H6.6Zm7.2 11.228v1.727l4.118 4.444 1.6-1.726-4.118-4.445h-1.6Zm6.283 5.055-1.6 1.728.8.863a.38.38 0 0 0 .566 0l1.034-1.116a.459.459 0 0 0 0-.612l-.8-.863Z", fill: color })));
657
- const ForwardRef$G = React.forwardRef(SvgPaperPen);
853
+ const SvgCrossClipboard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
854
+ React__namespace.createElement("path", { d: "M20 3.8h-5.497C14.136 2.753 13.16 2 12 2c-1.16 0-2.136.753-2.503 1.8H4V20h16V3.8Zm-8 0c.49 0 .889.403.889.9s-.398.9-.889.9a.895.895 0 0 1-.889-.9c0-.497.398-.9.889-.9Zm3.556 9.9h-2.667v2.7H11.11v-2.7H8.444v-1.8h2.667V9.2h1.778v2.7h2.667v1.8Z", fill: color })));
855
+ const ForwardRef$1F = React.forwardRef(SvgCrossClipboard);
658
856
 
659
- const SvgPaperclip = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
660
- React__namespace.createElement("path", { d: "M15.182 7.455v9.453c0 1.519-1.026 2.9-2.514 3.204A3.187 3.187 0 0 1 8.818 17V5.739c0-.906.616-1.747 1.51-1.896a1.82 1.82 0 0 1 2.126 1.794v9.544a.456.456 0 0 1-.91 0V7.455a.908.908 0 1 0-1.816 0v7.594c0 1.189.853 2.274 2.035 2.394a2.275 2.275 0 0 0 2.51-2.26V5.798c0-1.898-1.384-3.596-3.273-3.78a3.64 3.64 0 0 0-4 3.619v11.14c0 2.61 1.902 4.945 4.5 5.198A5.006 5.006 0 0 0 17 17V7.455a.91.91 0 1 0-1.818 0Z", fill: color })));
661
- const ForwardRef$F = React.forwardRef(SvgPaperclip);
857
+ const SvgCrossHatPerson = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
858
+ React__namespace.createElement("path", { d: "M12 2c-3.014 0-3.562.869-3.656 1.137a.472.472 0 0 0-.025.1l-.452 4.076c.6-.268 1.42-.233 2.482-.176.494.027 1.054.063 1.651.063s1.157-.036 1.651-.062c1.06-.059 1.883-.092 2.483.175l-.453-4.075a.477.477 0 0 0-.024-.1C15.561 2.87 15.011 2 12 2Zm-.391 1.6h.782v1.2h1.174v.8h-1.174v1.2h-.782V5.6h-1.174v-.8h1.174V3.6ZM9.518 7.9c-.734-.022-1.296.026-1.566.287-.175.173-.256.479-.256.938 0 2.426 1.93 4.4 4.304 4.4 2.373 0 4.304-1.974 4.304-4.4 0-.46-.08-.765-.256-.937-.358-.348-1.246-.31-2.36-.25C13.185 7.963 12.618 8 12 8c-.618 0-1.185-.036-1.688-.063-.278-.015-.55-.029-.794-.037ZM12 13.925c-.877 0-1.75.081-2.58.237l2.58 6.4 2.617-6.387a13.877 13.877 0 0 0-2.617-.25Zm-3.35.412c-3.185.791-5.65 2.601-5.65 4.5V22h9a.4.4 0 0 1-.367-.25L8.65 14.337ZM12 22h9v-3.162c0-1.89-2.438-3.704-5.6-4.5l-3.034 7.412A.403.403 0 0 1 12 22Z", fill: color })));
859
+ const ForwardRef$1E = React.forwardRef(SvgCrossHatPerson);
662
860
 
663
- const SvgPawMagnifyingGlass = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
664
- React__namespace.createElement("path", { d: "M14.885 14.064c2.052 0 3.728 1.691 3.728 3.763 0 .94-.348 1.799-.915 2.46l.226.228h.689l1.705 1.722.462.465a.767.767 0 0 1 0 1.076.75.75 0 0 1-1.066 0l-.516-.52-1.65-1.667v-.695l-.227-.229a3.688 3.688 0 0 1-2.436.924c-2.053 0-3.729-1.692-3.729-3.764s1.676-3.763 3.729-3.763Zm0 1.075a2.668 2.668 0 0 0-2.664 2.688 2.668 2.668 0 0 0 2.664 2.688 2.667 2.667 0 0 0 2.662-2.688 2.668 2.668 0 0 0-2.662-2.688Zm-3.729-4.735c1.056 0 2.03.986 2.663 2.587.09.23-.215.313-.636.485a5.05 5.05 0 0 0-1.114.622c-.935.698-1.69 2.01-1.785 3.191-.147 1.824.529 2.782.78 3.177-3.143 0-6.251-1.078-6.251-3.058 0-.493.14-1.118 1.147-1.672 1.122-.618 2.06-1.546 2.534-2.745.633-1.6 1.607-2.587 2.662-2.587Zm-6.662-1.83c.816-.036 1.645.65 1.985 1.714.217.68.193 1.387-.068 1.94-.2.428-.533.732-.933.859a1.39 1.39 0 0 1-.412.062c-.796 0-1.588-.68-1.919-1.716-.217-.68-.193-1.387.067-1.94.201-.427.534-.732.934-.858.114-.036.23-.055.346-.06Zm13.323 0c.117.006.233.026.348.06.4.127.733.43.934.859.26.553.284 1.26.067 1.939-.332 1.036-1.124 1.717-1.92 1.717-.137 0-.276-.02-.412-.062-.4-.127-.732-.43-.933-.859-.261-.553-.285-1.261-.067-1.94.34-1.064 1.165-1.75 1.983-1.714ZM8.253 4l.094.002c.286.016.566.133.824.338.527.421.913 1.213 1.037 2.116.21 1.551-.39 2.848-1.395 3.015-.07.012-.14.018-.21.018-.31 0-.617-.115-.897-.338-.527-.421-.915-1.212-1.038-2.115-.211-1.552.389-2.85 1.395-3.017.095-.016.19-.023.284-.017L8.253 4Zm5.711.004c.095-.006.19-.001.286.014 1.006.168 1.605 1.465 1.396 3.018-.123.904-.51 1.695-1.038 2.116-.28.222-.587.337-.897.337-.071 0-.142-.007-.213-.018-1.005-.167-1.604-1.465-1.393-3.017.123-.904.51-1.695 1.037-2.116.257-.205.537-.317.822-.334Z", fill: color })));
665
- const ForwardRef$E = React.forwardRef(SvgPawMagnifyingGlass);
861
+ const SvgCrossPaw = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
862
+ React__namespace.createElement("path", { d: "M9.674 2.88a1.872 1.872 0 0 0-1.872 1.872v3.05h-3.05A1.872 1.872 0 0 0 2.88 9.675v3.692c0 1.034.838 1.872 1.871 1.872h3.051v3.05c0 1.034.838 1.872 1.872 1.872h3.692a.641.641 0 1 0 0-1.282H9.674a.59.59 0 0 1-.59-.59v-3.691a.641.641 0 0 0-.64-.641H4.75a.59.59 0 0 1-.59-.59V9.674a.59.59 0 0 1 .59-.59h3.692c.354 0 .641-.287.641-.64V4.751a.59.59 0 0 1 .59-.59h3.692a.59.59 0 0 1 .59.59v3.691c0 .354.287.641.64.641h3.692a.59.59 0 0 1 .59.59v3.077a.64.64 0 1 0 1.282 0V9.674a1.872 1.872 0 0 0-1.872-1.871h-3.05V4.752a1.872 1.872 0 0 0-1.872-1.872H9.674Z", fill: color }),
863
+ React__namespace.createElement("path", { d: "M16.438 13.92h.143a.74.74 0 0 1 .417.17c.295.276.475.652.505 1.054.123.768-.178 1.414-.683 1.496h-.109a.684.684 0 0 1-.437-.177 1.602 1.602 0 0 1-.518-1.047c-.123-.768.177-1.408.682-1.496ZM18.99 14.09a.773.773 0 0 1 .41-.17h.15c.491.095.805.734.696 1.503-.035.401-.22.775-.519 1.047a.684.684 0 0 1-.45.17h-.11c-.49-.088-.804-.734-.695-1.503.034-.401.22-.775.518-1.047ZM14.446 16.184a.81.81 0 0 1 .177 0h.027a1.114 1.114 0 0 1 .997.85c.107.316.095.66-.034.966a.776.776 0 0 1-.471.456.682.682 0 0 1-.205 0 1.114 1.114 0 0 1-.928-.85 1.356 1.356 0 0 1 0-.966.782.782 0 0 1 .437-.456ZM20.69 16.455c.173-.152.39-.247.62-.27h.028c.06.004.12.016.177.033a.787.787 0 0 1 .464.422c.122.297.134.627.035.932a1.108 1.108 0 0 1-.963.85.683.683 0 0 1-.204 0 .78.78 0 0 1-.471-.422 1.356 1.356 0 0 1-.034-.966c.052-.224.174-.427.348-.579ZM16.63 18.374c.347-.789.832-1.278 1.364-1.278.532 0 1.017.49 1.365 1.278a2.723 2.723 0 0 0 1.242 1.36.9.9 0 0 1 .58.83c0 .979-1.61 1.516-3.187 1.516-1.576 0-3.187-.537-3.214-1.516a.896.896 0 0 1 .58-.83c.57-.29 1.02-.772 1.27-1.36Z", fill: color })));
864
+ const ForwardRef$1D = React.forwardRef(SvgCrossPaw);
666
865
 
667
- const SvgPawOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
668
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.555 4.63c.413-.634 1.096-1.13 1.98-1.13.6 0 1.124.376 1.495.893s.607 1.198.607 1.921c0 .925-.091 1.884-.393 2.657-.15.387-.356.737-.653.994a1.697 1.697 0 0 1-1.124.407c-.835 0-1.457-.667-1.867-1.401-.41-.735-.641-1.577-.641-2.227 0-.705.183-1.48.596-2.114Zm5.488 0c.458-.628 1.178-1.13 2.103-1.13 1.03 0 2.25 1.11 2.25 3.097 0 .975-.223 1.972-.675 2.758-.453.786-1.184 1.379-2.115 1.379-.468 0-.874-.219-1.17-.531-.294-.312-.495-.708-.652-1.13a7.439 7.439 0 0 1-.427-2.408c0-.654.228-1.406.686-2.035Zm-3.509-.407c.288 0 .633.21.911.6.278.388.473.928.473 1.491 0 .875-.095 1.774-.338 2.397-.122.312-.282.547-.46.7a.925.925 0 0 1-.653.238c-.426 0-.889-.417-1.237-1.04-.349-.623-.551-1.41-.551-1.865 0-.572.167-1.232.483-1.718.316-.486.742-.803 1.372-.803Zm7.142 2.374c0-1.684-1.087-2.374-1.53-2.374-.675 0-1.16.345-1.518.837-.359.492-.551 1.13-.551 1.605 0 .516.112 1.421.382 2.147.135.364.31.687.506.893.196.207.386.306.641.306.637 0 1.126-.376 1.496-1.018.37-.641.574-1.534.574-2.396ZM5.418 9.287c-.657 0-1.223.47-1.664 1.108A4.273 4.273 0 0 0 3 12.78c0 .623.226 1.327.619 1.921.392.595.99 1.097 1.743 1.097.745 0 1.337-.528 1.72-1.22.384-.693.597-1.589.597-2.51 0-.714-.268-1.386-.675-1.9-.408-.512-.97-.88-1.586-.88Zm12.506.543c.39-.32.83-.522 1.271-.543.148-.007.292.012.439.045.649.154 1.048.762 1.237 1.447a3.702 3.702 0 0 1-.09 2.227c-.32.853-.772 1.588-1.327 2.102-.556.515-1.259.813-1.969.645a1.966 1.966 0 0 1-1.45-1.436c-.193-.728-.056-1.625.46-2.6.437-.82.91-1.46 1.43-1.887Zm-12.506.18c.308 0 .701.221 1.012.611.31.39.529.924.529 1.447 0 .808-.198 1.602-.506 2.159-.308.556-.684.848-1.091.848-.433 0-.837-.299-1.147-.77-.311-.47-.495-1.087-.495-1.525 0-.726.258-1.447.618-1.967s.813-.802 1.08-.802Zm14.047.023a.865.865 0 0 0-.247-.022c-.255.012-.526.132-.833.384-.408.335-.842.897-1.248 1.662-.456.857-.537 1.58-.405 2.08.132.498.451.793.922.904.436.103.863-.056 1.305-.464.441-.408.857-1.061 1.147-1.831.208-.558.214-1.24.067-1.775-.146-.535-.44-.874-.708-.938Zm-7.749 2.51c-.782 0-1.387.415-1.9.938-.26.264-.506.557-.758.86-.248.295-.502.599-.783.892-.338.352-.674.618-.99.868-.206.164-.403.32-.585.488-.461.425-.82.986-.82 1.797 0 .465.16.984.539 1.402.38.418.984.712 1.766.712.815 0 1.427-.182 1.979-.35.553-.168 1.04-.317 1.676-.317.65 0 1.244.115 1.841.23.603.116 1.21.234 1.881.234.789 0 1.422-.143 1.879-.498.456-.354.674-.928.674-1.582 0-.44-.187-.803-.45-1.063-.262-.26-.58-.433-.91-.588l-.296-.135c-.56-.254-1.105-.501-1.425-.893a12.897 12.897 0 0 1-.727-1.015c-.207-.31-.41-.614-.634-.895-.471-.592-1.088-1.085-1.957-1.085Zm1.395 1.537c-.41-.516-.776-.814-1.395-.814-.537 0-.94.261-1.394.723-.219.222-.439.488-.677.775-.257.31-.535.646-.853.977-.396.413-.783.719-1.112.98a8.96 8.96 0 0 0-.496.41c-.388.358-.585.632-.585 1.255 0 .287.114.645.36.916s.616.475 1.226.475c.711 0 1.228-.15 1.777-.317l.05-.015c.534-.163 1.1-.335 1.828-.335.777 0 1.449.13 2.081.252.563.108 1.095.211 1.641.211.7 0 1.173-.143 1.44-.35.267-.208.393-.5.393-1.006 0-.26-.08-.4-.236-.554-.156-.154-.403-.298-.708-.44-.108-.051-.222-.101-.34-.152-.551-.24-1.187-.517-1.64-1.07-.312-.38-.57-.772-.809-1.133-.19-.29-.369-.559-.551-.788Z", fill: color })));
669
- const ForwardRef$D = React.forwardRef(SvgPawOutlined);
866
+ const SvgDogHouseOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
867
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 4a.379.379 0 0 0-.212.065l-8.625 5.84a.368.368 0 0 0-.163.304v1.663c0 .137.077.263.2.327a.38.38 0 0 0 .388-.023l.912-.621v9.075c0 .204.168.37.375.37H9a.372.372 0 0 0 .375-.37v-4.804c0-1.433 1.17-2.587 2.625-2.587 1.454 0 2.625 1.154 2.625 2.587v4.804c0 .204.168.37.375.37h4.125a.372.372 0 0 0 .375-.37v-9.075l.912.62a.38.38 0 0 0 .387.024c.123-.064.2-.19.201-.327v-1.663a.368.368 0 0 0-.163-.305l-8.625-5.839A.379.379 0 0 0 12.001 4Zm0 .818 8.25 5.585v.764l-8.037-5.475a.38.38 0 0 0-.426 0L3.75 11.167v-.764L12 4.818Zm6.75 6.225L12 6.445l-6.75 4.598v9.218h3.375v-4.435c0-1.832 1.515-3.326 3.375-3.326s3.375 1.494 3.375 3.326v4.435h3.375v-9.218Z", fill: color })));
868
+ const ForwardRef$1C = React.forwardRef(SvgDogHouseOutlined);
670
869
 
671
- const SvgPaw = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
672
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.536 4C7.861 4 6.96 5.573 6.96 7.053c0 1.173.977 3.415 2.509 3.415.991 0 2.17-.663 2.17-3.82C11.64 5.263 10.637 4 9.537 4Zm5.614 0c-1.822 0-2.79 1.729-2.79 2.979 0 .993.413 3.83 2.25 3.83 1.811 0 2.79-2.008 2.79-3.894C17.4 5.01 16.092 4 15.15 4ZM3 12.734c0-1.626 1.218-3.287 2.419-3.287 1.139 0 2.261 1.294 2.261 2.617 0 1.723-.865 3.51-2.318 3.51-1.44 0-2.362-1.68-2.362-2.84Zm16.234-3.287c-.938.018-1.899.808-2.734 2.287-.582 1.03-.699 2.012-.337 2.766.253.528.724.899 1.327 1.032.136.03.277.043.416.043 1.127 0 2.233-1.006 2.88-2.628.333-.84.272-1.907-.146-2.65-.248-.44-.592-.716-1.001-.808a1.74 1.74 0 0 0-.405-.042ZM9.075 14.18c.765-.86 1.492-1.67 2.644-1.67 1.27 0 1.89.88 2.548 1.816l.017.024c.23.329.478.661.753.979.334.383.872.61 1.396.83l.005.002c.79.33 1.682.703 1.682 1.69 0 1.292-.86 1.956-2.554 1.956-.6 0-1.168-.102-1.716-.202l-.117-.02c-.598-.109-1.211-.214-1.89-.214-.623 0-1.113.139-1.632.288-.585.167-1.19.34-2.025.34-1.513 0-2.306-1-2.306-1.99 0-1.094.634-1.575 1.373-2.127l.078-.059c.293-.218.624-.466.945-.781.273-.267.515-.54.751-.808l.048-.054Z", fill: color })));
673
- const ForwardRef$C = React.forwardRef(SvgPaw);
870
+ const SvgDogHouse = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
871
+ React__namespace.createElement("path", { d: "M12 4 2 12.904h2.727V21h14.546v-8.096H22L12 4Zm3.636 15.201H8.364v-4.22L12 12.905l3.636 2.078v4.22Z", fill: color })));
872
+ const ForwardRef$1B = React.forwardRef(SvgDogHouse);
674
873
 
675
- const SvgPaw2 = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
676
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.536 4C7.861 4 6.96 5.573 6.96 7.053c0 1.173.977 3.415 2.509 3.415.991 0 2.17-.663 2.17-3.82C11.64 5.263 10.637 4 9.537 4Zm5.614 0c-1.822 0-2.79 1.729-2.79 2.979 0 .993.413 3.83 2.25 3.83 1.811 0 2.79-2.008 2.79-3.894C17.4 5.01 16.092 4 15.15 4ZM3 12.734c0-1.626 1.218-3.287 2.419-3.287 1.139 0 2.261 1.294 2.261 2.617 0 1.723-.865 3.51-2.318 3.51-1.44 0-2.362-1.68-2.362-2.84Zm16.234-3.287c-.938.018-1.899.808-2.734 2.287-.582 1.03-.699 2.012-.337 2.766.253.528.724.899 1.327 1.032.136.03.277.043.416.043 1.127 0 2.233-1.006 2.88-2.628.333-.84.272-1.907-.146-2.65-.248-.44-.592-.716-1.001-.808a1.74 1.74 0 0 0-.405-.042ZM9.075 14.18c.765-.86 1.492-1.67 2.644-1.67 1.27 0 1.89.88 2.548 1.816l.017.024c.23.329.478.661.753.979.334.383.872.61 1.396.83l.005.002c.79.33 1.682.703 1.682 1.69 0 1.292-.86 1.956-2.554 1.956-.6 0-1.168-.102-1.716-.202l-.117-.02c-.598-.109-1.211-.214-1.89-.214-.623 0-1.113.139-1.632.288-.585.167-1.19.34-2.025.34-1.513 0-2.306-1-2.306-1.99 0-1.094.634-1.575 1.373-2.127l.078-.059c.293-.218.624-.466.945-.781.273-.267.515-.54.751-.808l.048-.054Z", fill: color })));
677
- const ForwardRef$B = React.forwardRef(SvgPaw2);
874
+ const SvgDollarCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
875
+ React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm.666 11.905v1.429h-1.332v-1.425c-1.42-.19-2.315-1.015-2.365-2.24h1.52c.073.61.688 1 1.574 1 .818 0 1.395-.396 1.395-.963 0-.48-.373-.755-1.296-.953l-.98-.208c-1.37-.287-2.04-1-2.04-2.146 0-1.22.849-2.078 2.192-2.293v-1.44h1.332v1.438c1.304.211 2.184 1.056 2.225 2.211h-1.478c-.074-.594-.627-.99-1.387-.99-.786 0-1.307.366-1.307.938 0 .464.36.73 1.24.916l.906.195c1.51.316 2.16.968 2.16 2.133.001 1.323-.882 2.195-2.359 2.398Z", fill: color })));
876
+ const ForwardRef$1A = React.forwardRef(SvgDollarCircle);
678
877
 
679
- const SvgPdfLogo = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
680
- React__namespace.createElement("path", { d: "M6 2c-1.094 0-2 .906-2 2v16c0 1.094.906 2 2 2h12c1.094 0 2-.906 2-2V8l-6-6H6Zm0 2h7v5h5v11H6V4Zm5.832 5c-.55 0-.962.373-1.043 1.023-.08.65.242 1.784.803 2.838-.241.73-.482 1.379-.803 2.028-1.043.324-2.005.81-2.406 1.297-.641.729-.32 1.215-.16 1.459.16.242.401.355.722.355.161 0 .322-.032.483-.113.642-.243 1.282-1.217 1.924-2.352.56-.162 1.122-.323 1.683-.404.561.648 1.125 1.055 1.606 1.217.56.162 1.042-.083 1.283-.65.16-.488.079-.892-.322-1.136-.482-.323-1.284-.325-2.247-.244-.32-.486-.64-.972-.88-1.459.4-1.216.56-2.269.4-2.918-.161-.568-.493-.941-1.043-.941Z", fill: color })));
681
- const ForwardRef$A = React.forwardRef(SvgPdfLogo);
878
+ const SvgDollar = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
879
+ React__namespace.createElement("path", { d: "M10.751 2a.427.427 0 0 0-.418.435v1.237a.459.459 0 0 1-.299.427C8.473 4.683 7 6.16 7 8.667c0 3.166 2.666 4.167 4.333 4.834 2 .833 2.334.999 2.334 1.832 0 .834-.334 1.667-1.667 1.667-1.1 0-1.52-.567-1.633-1.234-.04-.236-.22-.433-.452-.433H7.418c-.23 0-.42.195-.397.434.15 1.535 1.078 3.429 3.008 4.135a.462.462 0 0 1 .304.43v1.233c0 .24.188.435.418.435h2.498c.23 0 .418-.195.418-.435v-1.232c0-.196.127-.366.304-.43 2.116-.775 3.029-2.977 3.029-4.57 0-3.166-2.666-4.167-4.333-4.834-2-.833-2.334-.999-2.334-1.832C10.333 7.333 11.167 7 12 7c1.1 0 1.52.567 1.633 1.234.04.236.22.433.452.433h2.497c.23 0 .42-.195.396-.434-.148-1.536-1.077-3.429-3.007-4.135a.462.462 0 0 1-.304-.43V2.434A.427.427 0 0 0 13.249 2H10.75Z", fill: color })));
880
+ const ForwardRef$1z = React.forwardRef(SvgDollar);
682
881
 
683
- const SvgPenSquare = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
684
- React__namespace.createElement("path", { d: "M12 3c.621 0 1.125.504 1.125 1.125s-.504.947-1.125.947H5V19h14v-7c0-.621.254-1.125.875-1.125S21 11.379 21 12v6.75A2.249 2.249 0 0 1 18.75 21H5.25A2.249 2.249 0 0 1 3 18.75V5.25A2.249 2.249 0 0 1 5.25 3H12ZM18.141 3.49a1.678 1.678 0 0 1 2.369-.001 1.676 1.676 0 0 1 0 2.37l-.695.694-2.368-2.369.694-.693Z", fill: color }),
685
- React__namespace.createElement("path", { d: "m9.75 11.881 6.81-6.809 2.368 2.369-6.81 6.809H9.75v-2.369Z", fill: color })));
686
- const ForwardRef$z = React.forwardRef(SvgPenSquare);
882
+ const SvgDotsCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
883
+ React__namespace.createElement("path", { d: "M12 3c-4.962 0-9 4.038-9 9s4.038 9 9 9 9-4.038 9-9-4.038-9-9-9ZM7.5 13.125a1.125 1.125 0 1 1 0-2.25 1.125 1.125 0 0 1 0 2.25Zm4.5 0a1.125 1.125 0 1 1 0-2.25 1.125 1.125 0 0 1 0 2.25Zm4.5 0a1.125 1.125 0 1 1 0-2.25 1.125 1.125 0 0 1 0 2.25Z", fill: color })));
884
+ const ForwardRef$1y = React.forwardRef(SvgDotsCircle);
687
885
 
688
- const SvgPen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
689
- React__namespace.createElement("path", { d: "M16.916 5c-.534 0-1.066.204-1.473.61l-.865.864 2.948 2.947.864-.864A2.086 2.086 0 0 0 16.916 5Zm-3.442 2.579L5 16.052V19h2.948l8.473-8.474-2.947-2.947Z", fill: color })));
690
- const ForwardRef$y = React.forwardRef(SvgPen);
886
+ const SvgDotsHorizontal = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
887
+ React__namespace.createElement("path", { d: "M3 12a2 2 0 1 0 4.001-.001A2 2 0 0 0 3 12Zm7 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm7 0A2 2 0 1 0 21 11.998 2 2 0 0 0 17 12Z", fill: color })));
888
+ const ForwardRef$1x = React.forwardRef(SvgDotsHorizontal);
691
889
 
692
- const SvgPersonAdd = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
693
- React__namespace.createElement("path", { d: "M13.855 13.064v.79c-1.016.79-2.371 2.372-1.355 6.775L2 20.968c0-3.412 2.404-4.119 4.433-4.715 1.26-.37 2.377-.7 2.68-1.608v-1.58c-.356-.177-1.373-1.388-1.48-2.334-.28-.021-.719-.278-.848-1.292-.07-.544.207-.85.374-.947 0 0-.417-.877-.417-1.75C6.742 4.151 8.132 2 11.484 2c1.809 0 2.37 1.186 2.37 1.186 1.619 0 2.372 1.637 2.372 3.556 0 .957-.418 1.75-.418 1.75.168.096.445.402.375.947-.13 1.014-.569 1.27-.849 1.292-.107.946-1.124 2.157-1.48 2.333ZM20.26 17.415h-2.108v-2.108a.301.301 0 0 0-.602 0v2.108h-2.107a.301.301 0 0 0 0 .602h2.107v2.108a.3.3 0 1 0 .602 0v-2.108h2.108a.301.301 0 0 0 0-.602Z", fill: color }),
694
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.555 17.777a5.227 5.227 0 0 1 5.223-5.222A5.227 5.227 0 0 1 23 17.777 5.227 5.227 0 0 1 17.778 23a5.227 5.227 0 0 1-5.223-5.223Zm5.223-4.545a4.55 4.55 0 0 0-4.545 4.545 4.55 4.55 0 0 0 4.545 4.546 4.55 4.55 0 0 0 4.545-4.546 4.55 4.55 0 0 0-4.545-4.545Z", fill: color })));
695
- const ForwardRef$x = React.forwardRef(SvgPersonAdd);
890
+ const SvgDotsVertical = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
891
+ React__namespace.createElement("path", { d: "M12 3a2 2 0 1 0 .001 4.001A2 2 0 0 0 12 3Zm0 7a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7A2 2 0 1 0 12.002 21 2 2 0 0 0 12 17Z", fill: color })));
892
+ const ForwardRef$1w = React.forwardRef(SvgDotsVertical);
696
893
 
697
- const SvgPerson = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
698
- React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 8-8 8 8 0 0 0-8-8Zm0 2.2a2.6 2.6 0 1 1 0 5.2 2.6 2.6 0 0 1 0-5.2Zm0 12.2a6.38 6.38 0 0 1-4.87-2.25.812.812 0 0 1 .138-1.176C8.482 14.061 10.694 13.6 12 13.6c1.307 0 3.518.46 4.732 1.373.376.283.444.82.14 1.177A6.386 6.386 0 0 1 12 18.4Z", fill: color })));
699
- const ForwardRef$w = React.forwardRef(SvgPerson);
894
+ const SvgDoubleArrowCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
895
+ React__namespace.createElement("path", { d: "M12 3c-4.962 0-9 4.038-9 9h1.8c0-3.722 2.838-6.793 6.465-7.163a7.255 7.255 0 0 1 .91-.035 7.163 7.163 0 0 1 4.91 2.113L14.7 9.3H21V3l-2.64 2.64A8.972 8.972 0 0 0 12 3ZM12.735 19.163a7.162 7.162 0 0 1-5.82-2.078L9.3 14.7H3V21l2.64-2.64A8.972 8.972 0 0 0 12 21", fill: color }),
896
+ React__namespace.createElement("path", { d: "M12.735 19.163c.325-.033.643-.088.954-.163 3.158-.762 5.511-3.611 5.511-7H21a8.96 8.96 0 0 1-.514 3 9.044 9.044 0 0 1-5.813 5.595A8.967 8.967 0 0 1 12 21", fill: color })));
897
+ const ForwardRef$1v = React.forwardRef(SvgDoubleArrowCircle);
700
898
 
701
- const SvgPhoneButtons = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
702
- React__namespace.createElement("path", { d: "M12 3c-4.192 0-7.118.59-8.694 1.753-.542.399-.89.745-1.053 1.044-.308.515-.334 1.412-.081 2.82.153.85.84 1.284 1.39 1.195.208-.033.95-.233 2.06-.534.596-.16 1.158-.312 1.317-.348.43-.095.797-.505.98-1.096.1-.32.337-1.186.445-1.59.405-.157 1.557-.517 3.633-.517h.005c2.078 0 3.23.361 3.634.518.109.404.343 1.269.443 1.588.185.592.552 1.002.983 1.097.16.036.725.19 1.324.351 1.105.3 1.845.499 2.053.532.047.007.094.01.142.01.52 0 1.107-.427 1.247-1.207.252-1.409.227-2.305-.073-2.806-.17-.307-.527-.663-1.061-1.058C19.114 3.59 16.19 3 12 3Zm-5.91 8.636a1.799 1.799 0 0 0-1.817 1.819c0 1.02.798 1.818 1.818 1.818s1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819H6.09Zm5.91 0c-1.02 0-1.818.799-1.818 1.819s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818A1.8 1.8 0 0 0 12 11.636Zm5.909 0c-1.02 0-1.818.799-1.818 1.819s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819Zm-11.82 5.91c-1.02 0-1.817.798-1.817 1.818s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819v.001Zm5.91 0c-1.02 0-1.818.798-1.818 1.818s.799 1.818 1.819 1.818 1.818-.799 1.818-1.818A1.8 1.8 0 0 0 12 17.545l-.001.001Zm5.909 0c-1.02 0-1.818.798-1.818 1.818s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819v.001Z", fill: color })));
703
- const ForwardRef$v = React.forwardRef(SvgPhoneButtons);
899
+ const SvgDownload = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
900
+ React__namespace.createElement("path", { d: "M10.687 3c-1.157 0-2.096.94-2.096 2.097v5.59H6.32c-.986 0-1.193.159-.35 1.005l4.608 4.608c1.537 1.537 1.518 1.542 3.058 0l4.586-4.608c.843-.846.562-1.005-.328-1.005H15.58v-5.59A2.097 2.097 0 0 0 13.483 3h-2.796ZM3 16.278v2.796c0 1.157.94 2.096 2.097 2.096h13.976c1.158 0 2.097-.94 2.097-2.097v-2.795h-1.398v2.796a.7.7 0 0 1-.698.698H5.096a.7.7 0 0 1-.7-.698v-2.796H3Z", fill: color })));
901
+ const ForwardRef$1u = React.forwardRef(SvgDownload);
704
902
 
705
- const SvgPhoneDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
706
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.542 8.574A14.26 14.26 0 0 1 12 5c3.38 0 6.76 1.191 9.459 3.574.714.631.715 1.75.042 2.422l-1.03 1.03a1.686 1.686 0 0 1-2.239.131l-1.976-1.322a1.674 1.674 0 0 1-.637-1.316l.007-2.074c-1.274-.415-2.292-.628-3.617-.627-1.324 0-2.372.143-3.645.56l-.01 2.072c0 .511-.232.994-.637 1.315l-1.95 1.392a1.686 1.686 0 0 1-2.238-.131l-1.03-1.03c-.673-.673-.672-1.79.043-2.422Zm8.549 3.699a.91.91 0 1 1 1.818 0v3.636h2.074c.413 0 .62.498.329.79l-2.55 2.55a1.014 1.014 0 0 1-1.435 0l-2.55-2.55a.463.463 0 0 1 .329-.79h1.985v-3.636Z", fill: color })));
707
- const ForwardRef$u = React.forwardRef(SvgPhoneDown);
903
+ const SvgDragDrop = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
904
+ React__namespace.createElement("path", { d: "M3 3v2h3V3H3Zm6 0v2h3V3H9Zm6 0v2h3V3h-3ZM3 7v3h2V7H3Zm13 0v2H9c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2h-1V7h-2ZM3 12v3h2v-3H3Zm10 0 4 4-1.7.2.61 1.32-.85.48-.73-1.44-1.33 1.2V12Z", fill: color })));
905
+ const ForwardRef$1t = React.forwardRef(SvgDragDrop);
708
906
 
709
- const SvgPhoneRing = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
710
- React__namespace.createElement("path", { d: "M6.088 2s-.99 0-2.095.55v-.003c-.844.421-1.556 1.036-1.899 1.538a.5.5 0 0 0-.056.483c.067.16.21.268.378.285a.448.448 0 0 0 .417-.213c.163-.24.862-.888 1.55-1.23.918-.457 1.705-.457 1.705-.457a.453.453 0 0 0 .399-.236.502.502 0 0 0 0-.48.453.453 0 0 0-.4-.237Zm9.035.456a26.878 26.878 0 0 0-3.714.233c-1.866.251-3.55.64-5.151 1.19-2.719.929-3.62 2.02-3.96 2.43l-.031.039c-.671.806.182 3.681.19 3.709.202.652.715.98 1.17.98a.886.886 0 0 0 .265-.04c.17-.054.841-.333 1.844-.75.494-.207.93-.39 1.072-.443.387-.15.68-.577.781-1.144.05-.264.325-1.472.502-2.241.464-.196 1.749-.676 3.672-.937 1.923-.26 3.286-.158 3.78-.104.508.895 1.241 2.19 1.275 2.243.245.393.568.624.91.652.155.013.657.08 1.213.153 1.022.134 1.705.221 1.899.227.498.01 1.109-.479 1.153-1.292.002-.03.121-2.976-.727-3.579 0 0-.084-.06-.132-.091-.527-.361-1.872-1.14-5.033-1.22-.302-.01-.626-.015-.978-.015ZM9.28 7.7a.467.467 0 0 0-.455.476V9.4a60.017 60.017 0 0 0-3.752 4.185c-1.505 1.838-1.703 3.123-1.7 4.138.004.892.442 3.754.462 3.875A.458.458 0 0 0 4.28 22h2.272c.25 0 .454-.214.454-.477v-.476h10.904v.476c0 .263.204.477.455.477h2.271c.224 0 .414-.17.448-.402.02-.121.46-2.989.461-3.888.002-1.01-.197-2.29-1.7-4.125A60.029 60.029 0 0 0 16.094 9.4V8.176a.467.467 0 0 0-.454-.476h-1.363a.467.467 0 0 0-.455.476v.954h-2.726v-.954a.467.467 0 0 0-.454-.476H9.279Zm8.63 1.45a.456.456 0 0 0-.43.317.494.494 0 0 0 .141.532c.398.345.962.518 1.626.56.799.051 1.171-.046 1.576-.208a.486.486 0 0 0 .26-.618.448.448 0 0 0-.588-.274c-.377.153-.456.196-1.191.147-.53-.033-.95-.208-1.102-.342a.439.439 0 0 0-.291-.114Zm-9.085 2.84h1.818v.953H8.824v-.953Zm2.726 0h1.818v.953H11.55v-.953Zm2.727 0h1.817v.953h-1.817v-.953Zm-5.453 1.906h1.818v.954H8.824v-.954Zm2.726 0h1.818v.954H11.55v-.954Zm2.727 0h1.817v.954h-1.817v-.954Zm-5.453 1.907h1.818v.954H8.824v-.954Zm2.726 0h1.818v.954H11.55v-.954Zm2.727 0h1.817v.954h-1.817v-.954Z", fill: color })));
711
- const ForwardRef$t = React.forwardRef(SvgPhoneRing);
907
+ const SvgEmailSend = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
908
+ React__namespace.createElement("path", { d: "M4.565 4C3.71 4 3 4.691 3 5.524v9.905h1.565V5.524h12.522V4H4.565Zm3.13 3.048c-.478 0-.902.214-1.189.544l6.668 4.027 6.614-4.09a1.576 1.576 0 0 0-1.136-.481H7.696Zm12.522 1.74-7.043 4.355L6.13 8.888v7.303c0 .84.702 1.523 1.566 1.523h5.478V15.43c0-.421.35-.762.783-.762h2.347v-1.524c0-.42.351-.762.783-.762h1.43l1.7 1.655V8.787Zm-2.347 5.117v2.286h-3.13v1.523h3.13V20L21 16.952l-3.13-3.047Z", fill: color })));
909
+ const ForwardRef$1s = React.forwardRef(SvgEmailSend);
712
910
 
713
- const SvgPhone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
714
- React__namespace.createElement("path", { d: "M7.217 10.925a13.482 13.482 0 0 0 5.858 5.858l1.957-1.956a.86.86 0 0 1 .423-.236.899.899 0 0 1 .482.021 10.03 10.03 0 0 0 3.174.507.888.888 0 0 1 .89.89v3.102a.883.883 0 0 1-.262.628.882.882 0 0 1-.627.261A15.108 15.108 0 0 1 4 4.89c0-.237.093-.463.261-.629A.882.882 0 0 1 4.888 4H8a.888.888 0 0 1 .89.888c-.003 1.079.169 2.15.506 3.173a.887.887 0 0 1-.223.907l-1.956 1.957Z", fill: color })));
715
- const ForwardRef$s = React.forwardRef(SvgPhone);
911
+ const SvgEnvelopeFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
912
+ React__namespace.createElement("path", { d: "M21.279 5.309a2.172 2.172 0 0 0-1.696-.809H4.417c-.6 0-1.143.241-1.536.63l9.135 5.286 9.263-5.107Z", fill: color }),
913
+ React__namespace.createElement("path", { d: "M2.25 7.263v9.344c0 1.184.97 2.143 2.167 2.143h15.166c1.197 0 2.167-.96 2.167-2.143V7.524l-9.766 5.547L2.25 7.263Z", fill: color })));
914
+ const ForwardRef$1r = React.forwardRef(SvgEnvelopeFilled);
716
915
 
717
- const SvgPillHand = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
718
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.792 2.25a.468.468 0 0 0-.067.007h-3.233c-2.083 0-3.781 1.708-3.781 3.803 0 2.095 1.698 3.804 3.78 3.804h3.23a.468.468 0 0 0 .153 0h3.234c2.082 0 3.78-1.709 3.78-3.804 0-2.095-1.698-3.803-3.78-3.803h-3.229a.468.468 0 0 0-.087-.007Zm-3.3.957c0 .263.211.476.472.476a.474.474 0 0 0 .473-.476h1.89v5.706h-1.89a.474.474 0 0 0-.473-.476.474.474 0 0 0-.473.476A2.836 2.836 0 0 1 7.659 6.1c.02.246.225.436.47.436a.474.474 0 0 0 .473-.476.474.474 0 0 0-.943-.045 2.836 2.836 0 0 1 2.834-2.808Zm6.616 0h-2.836v5.706h2.836a2.837 2.837 0 0 0 2.835-2.853 2.837 2.837 0 0 0-2.835-2.853Zm-7.562.951a.474.474 0 0 0-.472.476c0 .262.211.475.472.475a.474.474 0 0 0 .473-.475.474.474 0 0 0-.473-.476Zm2.363.476c0-.263.212-.476.473-.476.26 0 .473.213.473.476a.474.474 0 0 1-.473.475.474.474 0 0 1-.473-.475Zm-.945.95a.474.474 0 0 0-.473.476c0 .263.212.476.473.476a.474.474 0 0 0 .473-.476.474.474 0 0 0-.473-.475Zm-1.89 1.903c0-.263.211-.476.472-.476s.473.213.473.476a.474.474 0 0 1-.473.475.474.474 0 0 1-.472-.475Zm3.308-.476a.474.474 0 0 0-.473.476c0 .262.212.475.473.475a.474.474 0 0 0 .473-.475.474.474 0 0 0-.473-.476Zm8.797 5.246a1.786 1.786 0 0 1 1.798.812c.508.809.287 1.888-.495 2.431l-7.437 5.67a2.827 2.827 0 0 1-2.665.416l-5.527-1.972a2.983 2.983 0 0 0-2.943.348l-1.646 1.215a.47.47 0 0 1-.762-.327.477.477 0 0 1 .202-.439l1.647-1.215a3.928 3.928 0 0 1 3.84-.47l5.505 1.964c.602.215 1.269.11 1.777-.278l7.455-5.682a.838.838 0 0 0 .25-1.154.827.827 0 0 0-1.154-.263l-.004.002-5.054 3.134c.124.233.197.497.197.779 0 .913-.746 1.664-1.654 1.664-.13 0-.257-.015-.38-.045-.12-.028-.344-.095-.685-.196l-.2-.06c-.456-.134-1.033-.306-1.6-.476l-2.232-.669a.474.474 0 0 1-.189-.801.47.47 0 0 1 .46-.11 1379.504 1379.504 0 0 0 3.826 1.145c.453.134.827.24.839.242a.704.704 0 0 0 .87-.695.698.698 0 0 0-.35-.61c-.02-.01-.25-.128-.47-.234a32.31 32.31 0 0 0-.572-.271c-.295-.135-.932-.406-1.704-.734a259.15 259.15 0 0 1-3.004-1.294 4.933 4.933 0 0 0-3.903-.038l-3.047 1.277a.47.47 0 0 1-.476-.055.477.477 0 0 1 .112-.822l3.047-1.277a5.875 5.875 0 0 1 4.647.043c.922.407 2 .866 2.914 1.255.798.34 1.47.627 1.804.778.133.06.368.172.593.28.195.095.344.169.465.236l5.245-3.252c.207-.132.432-.215.66-.252Z", fill: color })));
719
- const ForwardRef$r = React.forwardRef(SvgPillHand);
916
+ const SvgEnvelopeOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
917
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 6a1.991 1.991 0 0 1 .45-1.263C1.815 4.287 2.373 4 3 4h18a1.996 1.996 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6Zm20 2.094-9 5.091-9-5.09V18h18V8.094ZM3.434 6 12 10.815 20.566 6H3.434Z", fill: color })));
918
+ const ForwardRef$1q = React.forwardRef(SvgEnvelopeOutlined);
720
919
 
721
- const SvgPill = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
722
- React__namespace.createElement("path", { d: "M18.594 5.402a4.808 4.808 0 0 0-6.788 0l-6.4 6.4A4.772 4.772 0 0 0 4 15.197c0 1.282.5 2.486 1.406 3.393A4.768 4.768 0 0 0 8.8 19.997c1.282 0 2.487-.5 3.394-1.407l6.4-6.4a4.804 4.804 0 0 0 0-6.787Zm-1.256 5.782-2.322 2.323a.8.8 0 0 1-1.131 0L10.49 10.11a.8.8 0 0 1 0-1.13l2.447-2.446a3.19 3.19 0 0 1 2.263-.937c.771 0 1.542.277 2.15.829 1.367 1.24 1.293 3.452-.012 4.757Z", fill: color })));
723
- const ForwardRef$q = React.forwardRef(SvgPill);
920
+ const SvgExternalLink = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
921
+ React__namespace.createElement("path", { d: "M20 11a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h6a1 1 0 1 0 0-2H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-6a1 1 0 0 0-1-1Z", fill: color }),
922
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.293 11.293A1 1 0 0 1 21 12v6a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h6a1 1 0 1 1 0 2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-6a1 1 0 0 1 .293-.707Z", fill: color }),
923
+ React__namespace.createElement("path", { d: "M16 5h1.58l-6.29 6.28a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219L19 6.42V8a1 1 0 0 0 2 0V4a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2Z", fill: color }),
924
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.266 3.036A1 1 0 0 0 20 3h-4a1 1 0 1 0 0 2h1.58l-6.29 6.28a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219L19 6.42V8a1 1 0 0 0 2 0V4a1 1 0 0 0-.734-.964Zm-7.917 9.306Zm0 0Z", fill: color })));
925
+ const ForwardRef$1p = React.forwardRef(SvgExternalLink);
724
926
 
725
- const SvgPlayingCards = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
726
- React__namespace.createElement("path", { d: "M4.161 2C2.98 2 2 2.98 2 4.161V17.34c0 1.181.98 2.161 2.161 2.161h9.844c1.182 0 2.162-.98 2.162-2.162V4.162c0-1.181-.98-2.161-2.162-2.161H4.161Zm0 1.667h9.844c.32 0 .495.175.495.494V17.34c0 .319-.176.494-.495.494H4.161c-.319 0-.494-.175-.494-.494V4.16c0-.319.175-.494.494-.494ZM17 4.16v1.745l2.917.755c.25.085.423.346.338.678L17 20.073c-.085.25-.345.423-.677.338l-1.146-.338c-.417.166-.853.338-1.354.338H9.656L15.906 22h.677c1 0 1.833-.667 2.084-1.667l3.255-12.76c.332-1.084-.423-2.328-1.589-2.578L17 4.16Zm-4.662.339-.91 2.5h.312l.26-.677h.912l.26.677h.338l-.937-2.5h-.235Zm.079.495.338 1.094H12l.417-1.094ZM18.094 7l-1.51 2.161.338.079.416-.573.912.26v.73l.338.103-.26-2.682L18.094 7Zm-9.089.417S5.75 9.657 5.75 11.323c0 1 .667 1.667 1.667 1.667.501 0 1.077-.4 1.328-.652 0 0-.254 1.163-.755 2.162 0 .166 2.168.085 2.083 0-.501-.918-.73-2.162-.73-2.162.333.251.828.574 1.329.574 1 0 1.666-.668 1.666-1.667 0-1.752-3.248-3.913-3.333-3.828Zm9.089.078.078 1.172-.677-.26.599-.912ZM4.656 14.5l.938 2.5h.234l.912-2.5h-.313l-.26.677h-.912l-.26-.677h-.339Zm.755.912h.756l-.417 1.093-.339-1.093Z", fill: color })));
727
- const ForwardRef$p = React.forwardRef(SvgPlayingCards);
927
+ const SvgEyeOpen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
928
+ React__namespace.createElement("path", { d: "M12.001 5c-5.61 0-8.273 5.144-8.921 6.612a.976.976 0 0 0 0 .774C3.728 13.855 6.391 19 12.001 19c5.591 0 8.256-5.108 8.914-6.597a1 1 0 0 0 0-.806C20.257 10.107 17.593 5 12.001 5Zm0 2.626c2.26 0 4.09 1.958 4.09 4.373 0 2.417-1.83 4.376-4.09 4.376-2.258 0-4.09-1.96-4.09-4.376 0-2.418 1.832-4.374 4.09-4.374v.001Zm0 1.75c-1.354 0-2.455 1.175-2.455 2.624 0 1.45 1.102 2.625 2.455 2.625 1.355 0 2.456-1.176 2.456-2.626 0-1.448-1.1-2.624-2.456-2.624Z", fill: color })));
929
+ const ForwardRef$1o = React.forwardRef(SvgEyeOpen);
728
930
 
729
- const SvgPlus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
730
- React__namespace.createElement("path", { d: "M20 11h-6.999V4a1 1 0 0 0-2 0V11H3.999a1 1 0 0 0 0 2h7.002V20a1 1 0 0 0 2 0V13h7a1 1 0 0 0 0-2Z", fill: color })));
731
- const ForwardRef$o = React.forwardRef(SvgPlus);
931
+ const SvgEyeSlash = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
932
+ React__namespace.createElement("path", { d: "M5.163 4 3.998 5.165l2.287 2.287c-.445.363-.84.748-1.194 1.135a12.458 12.458 0 0 0-2.018 3.08.798.798 0 0 0 0 .665c.608 1.341 3.23 6.261 8.926 6.261.99 0 1.888-.149 2.697-.405a8.14 8.14 0 0 0 1.63-.697L18.836 20 20 18.834 5.163 4ZM12 5.407c-.989 0-1.887.149-2.696.404l1.371 1.368a6.782 6.782 0 0 1 1.327-.125c4.352 0 6.546 3.52 7.263 4.945a10.541 10.541 0 0 1-1.524 2.243l1.17 1.17a12.48 12.48 0 0 0 2.017-3.079.8.8 0 0 0 0-.666c-.608-1.342-3.23-6.261-8.926-6.261l-.002.001ZM7.456 8.622l1.707 1.707a3.225 3.225 0 0 0-.454 1.876 3.288 3.288 0 0 0 3.084 3.082c.066.01.14.009.206.009.61 0 1.178-.165 1.671-.46l1.427 1.427a6.718 6.718 0 0 1-1.771.558c-.42.082-.856.123-1.327.123-4.352 0-6.546-3.518-7.263-4.943.272-.544.767-1.402 1.524-2.244a9.469 9.469 0 0 1 1.196-1.135Zm4.749.09 3.083 3.082a3.288 3.288 0 0 0-3.083-3.082Zm-1.797 2.863 2.017 2.015c-.132.04-.278.058-.426.058-.906 0-1.649-.742-1.649-1.649 0-.147.018-.293.058-.424Z", fill: color })));
933
+ const ForwardRef$1n = React.forwardRef(SvgEyeSlash);
732
934
 
733
- const SvgQuestionMarkCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
734
- React__namespace.createElement("path", { d: "M12 3c-4.968 0-9 4.032-9 9s4.032 9 9 9 9-4.032 9-9-4.032-9-9-9Zm.45 15.3h-.9a.451.451 0 0 1-.45-.45v-.9c0-.247.203-.45.45-.45h.9c.248 0 .45.203.45.45v.9c0 .247-.203.45-.45.45Zm2.313-6.975-.81.828c-.648.657-1.053 1.197-1.053 2.547h-1.8v-.45c0-.99.405-1.89 1.053-2.547l1.116-1.134c.412-.4.617-.99.497-1.622a1.79 1.79 0 0 0-1.248-1.373 1.807 1.807 0 0 0-2.221 1.143c-.115.335-.396.583-.75.583h-.26a.783.783 0 0 1-.743-1.01 3.597 3.597 0 0 1 2.902-2.547c1.373-.212 2.671.495 3.486 1.62 1.062 1.467.749 3.044-.169 3.962Z", fill: color })));
735
- const ForwardRef$n = React.forwardRef(SvgQuestionMarkCircle);
935
+ const SvgEyedropper = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
936
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.388 3.99c.63-.63 1.527-.99 2.335-.99.366 0 .731.074 1.08.213.46.154.89.413 1.254.777a3.264 3.264 0 0 1 0 4.59l-2.417 2.423.841.843-1.27 1.274-.76-.761c-1.097 1.057-4.288 4.135-5.102 4.951-1.526 1.53-2.424 1.71-3.411 1.89l-.115.016c-.572.078-1.029.14-2.04 1.154l-.628.63L3 18.84l.628-.63c1.167-1.17 1.257-1.71 1.257-2.25.09-.99.27-1.8 1.796-3.33A399.2 399.2 0 0 1 11.73 7.7l-.02-.02.037-.037-.822-.824 1.27-1.274.822.824 2.37-2.379Zm-2.404 4.967a397.492 397.492 0 0 0-4.956 4.844C6.86 14.969 6.77 15.42 6.77 16.05c0 .54-.09 1.08-.45 1.71.45-.27.9-.36 1.438-.36.628-.09 1.167-.18 2.335-1.35.69-.693 3.014-2.933 4.404-4.274l.662-.639-2.175-2.18Z", fill: color })));
937
+ const ForwardRef$1m = React.forwardRef(SvgEyedropper);
736
938
 
737
- const SvgQuestionMark = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
738
- React__namespace.createElement("path", { d: "M12 19a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 12 19Zm0-17a6 6 0 0 1 6 6c0 2.165-.753 3.29-2.674 4.923C13.399 14.56 13 15.297 13 17h-2c0-2.474.787-3.695 3.031-5.601C15.548 10.11 16 9.434 16 8c0-2.21-1.79-4-4-4S8 5.79 8 8v1H6V8a6 6 0 0 1 6-6Z", fill: color })));
739
- const ForwardRef$m = React.forwardRef(SvgQuestionMark);
939
+ const SvgFaceScreen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
940
+ React__namespace.createElement("path", { d: "M3.667 5C2.746 5 2 5.716 2 6.6v9.6c0 .884.746 1.6 1.667 1.6h16.666c.921 0 1.667-.716 1.667-1.6V6.6c0-.884-.746-1.6-1.667-1.6H3.667Zm0 2.4h2.5V9h-2.5V7.4ZM12 7.4c.795 0 1.042.542 1.042.542.71 0 1.041.747 1.041 1.624 0 .437-.184.8-.184.8.074.044.196.184.166.432-.056.464-.25.581-.372.591-.047.432-.701.986-.858 1.066v.723c.312.974 2.042.496 2.5 2.222H8.667c.458-1.726 2.188-1.248 2.5-2.222v-.723c-.157-.08-.811-.634-.858-1.066-.123-.01-.316-.127-.373-.59-.03-.25.09-.39.165-.433 0 0-.183-.401-.183-.8 0-1.184.61-2.166 2.082-2.166Zm-8.333 3.2h2.5v1.6h-2.5v-1.6Zm0 3.2h2.5v1.6h-2.5v-1.6Zm4.166 5.6a.865.865 0 0 0-.597.23.799.799 0 0 0-.248.57.773.773 0 0 0 .248.57.836.836 0 0 0 .597.23h8.334a.865.865 0 0 0 .597-.23.799.799 0 0 0 .248-.57.773.773 0 0 0-.248-.57.84.84 0 0 0-.597-.23H7.833Z", fill: color })));
941
+ const ForwardRef$1l = React.forwardRef(SvgFaceScreen);
740
942
 
741
- const SvgQuilInk = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
742
- React__namespace.createElement("path", { d: "M21.6 2c-5.556 0-9.442 1.302-11.55 3.875-1.92 2.344-1.694 4.945-1.6 5.588 2.627-4.016 6.427-6.929 10.825-8.25a.405.405 0 0 1 .5.274.4.4 0 0 1-.262.5c-4.22 1.27-7.876 4.065-10.4 7.925 1.06-.128 5.964-.862 9.462-3.825a7.632 7.632 0 0 1-1.813.213 8.212 8.212 0 0 1-2.287-.313.413.413 0 0 1-.262-.512.394.394 0 0 1 .5-.25c.028.01 2.867.87 5.225-.563.012-.007.035-.006.05-.012a9.653 9.653 0 0 0 2-4.163.406.406 0 0 0-.075-.337A.407.407 0 0 0 21.6 2ZM5.125 12.4a.403.403 0 0 0 .075.8h6.4a.402.402 0 0 0 .352-.198.404.404 0 0 0 0-.404.402.402 0 0 0-.352-.198H5.125ZM4.4 13.6A2.403 2.403 0 0 0 2 16v3.6C2 20.923 3.077 22 4.4 22h8c1.323 0 2.4-1.077 2.4-2.4V16c0-1.323-1.077-2.4-2.4-2.4h-8Z", fill: color })));
743
- const ForwardRef$l = React.forwardRef(SvgQuilInk);
943
+ const SvgFormsFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
944
+ React__namespace.createElement("path", { d: "M5.685 3C4.759 3 4 3.736 4 4.637v10.636c0 .45.377.817.842.817a.83.83 0 0 0 .843-.817V4.636h9.263a.83.83 0 0 0 .843-.818.83.83 0 0 0-.843-.818H5.685Zm3.367 3.272c-.926 0-1.685.737-1.685 1.637v11.454c0 .9.759 1.637 1.685 1.637h9.263c.926 0 1.685-.737 1.685-1.637v-8.322c0-.433-.177-.85-.494-1.157l-3.223-3.131a1.711 1.711 0 0 0-1.19-.48H9.051Zm2.526 6.546h4.211a.83.83 0 0 1 .843.818.83.83 0 0 1-.843.818H11.58a.83.83 0 0 1-.842-.818.83.83 0 0 1 .842-.818h-.002Zm0 3.272h4.211a.83.83 0 0 1 .843.818.83.83 0 0 1-.843.819H11.58a.83.83 0 0 1-.842-.819c0-.45.377-.818.842-.818h-.002Z", fill: color })));
945
+ const ForwardRef$1k = React.forwardRef(SvgFormsFilled);
744
946
 
745
- const SvgReactLogo = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
746
- React__namespace.createElement("path", { d: "M12 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm-.528 2.994c.175.21.351.414.528.609.177-.195.353-.398.528-.609-.352.008-.704.008-1.056 0Zm-1.995-.125c-.768-.08-1.53-.203-2.285-.368-.075.35-.132.69-.17 1.016-.19 1.583.075 2.545.478 2.777.403.233 1.368-.019 2.645-.974.263-.197.528-.416.794-.655-.52-.57-1.009-1.17-1.462-1.796Zm7.331-.368a20.17 20.17 0 0 1-2.285.368 20.681 20.681 0 0 1-1.462 1.796c.266.24.531.458.794.655 1.277.955 2.242 1.207 2.645.974.403-.232.667-1.194.479-2.777-.041-.341-.098-.68-.17-1.016h-.001Zm1.45-.387c.577 2.639.274 4.74-1.008 5.48-1.282.74-3.253-.048-5.25-1.867-1.997 1.819-3.968 2.606-5.25 1.866-1.282-.74-1.585-2.84-1.009-5.48C3.167 14.794 1.5 13.48 1.5 12s1.667-2.793 4.241-3.614c-.576-2.639-.273-4.74 1.009-5.48 1.282-.74 3.253.048 5.25 1.867 1.997-1.819 3.968-2.606 5.25-1.866 1.282.74 1.585 2.84 1.009 5.48C20.833 9.206 22.5 10.52 22.5 12s-1.667 2.793-4.241 3.614h-.001Zm-7.32-9.779c-.254-.23-.519-.449-.793-.655-1.277-.955-2.242-1.207-2.645-.974-.403.232-.667 1.194-.479 2.777.04.327.096.666.17 1.016a20.676 20.676 0 0 1 2.286-.368c.475-.653.965-1.254 1.462-1.796h-.001Zm3.585 1.796c.802.084 1.568.209 2.285.368.075-.35.132-.69.17-1.016.19-1.583-.075-2.545-.478-2.777-.403-.233-1.368.019-2.645.974-.274.206-.54.425-.794.655.497.542.987 1.143 1.462 1.796Zm-1.995-.125c-.175-.21-.351-.414-.528-.609-.177.195-.353.398-.528.609.352-.007.704-.007 1.056 0Zm-4.156 7.198c-.182-.3-.358-.606-.528-.914-.095.257-.183.51-.263.761.257.056.521.107.79.153h.001Zm1.932.234c1.13.084 2.263.084 3.392 0A22.895 22.895 0 0 0 15.392 12a22.898 22.898 0 0 0-1.696-2.938 22.896 22.896 0 0 0-3.392 0A22.9 22.9 0 0 0 8.608 12a22.896 22.896 0 0 0 1.696 2.938Zm5.852-4.728c.095-.257.183-.51.263-.761a17.984 17.984 0 0 0-.79-.153c.182.3.358.606.527.914ZM6.13 9.837c-.34.11-.662.23-.964.36C3.701 10.825 3 11.535 3 12c0 .465.7 1.175 2.166 1.803.302.13.624.25.964.36.222-.7.497-1.426.825-2.163a20.678 20.678 0 0 1-.825-2.163Zm1.45-.388c.081.25.169.504.264.76.17-.308.346-.612.528-.913-.27.046-.534.097-.791.153H7.58Zm10.29 4.714c.34-.11.662-.23.964-.36C20.299 13.175 21 12.465 21 12c0-.465-.7-1.175-2.166-1.803a11.354 11.354 0 0 0-.964-.36c-.222.7-.497 1.426-.825 2.163.328.737.603 1.462.825 2.163Zm-1.45.388a19.17 19.17 0 0 0-.264-.76c-.17.308-.346.612-.528.913.27-.046.534-.097.791-.153h.001Z", fill: color })));
747
- const ForwardRef$k = React.forwardRef(SvgReactLogo);
947
+ const SvgFormsOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
948
+ React__namespace.createElement("path", { d: "M3.75 3.954c0-.938.781-1.704 1.737-1.704h9.569a.852.852 0 0 1 0 1.705h-9.57v11.063a.868.868 0 0 1-1.736 0V3.954ZM10.697 13.33c0-.472.382-.853.853-.853h4.374a.852.852 0 0 1 0 1.704H11.55a.852.852 0 0 1-.853-.852ZM11.56 15.293a.857.857 0 0 0-.863.853c0 .47.386.852.862.852h4.354a.857.857 0 0 0 .862-.852.857.857 0 0 0-.862-.852H11.56Z", fill: color }),
949
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.224 7.363c0-.937.781-1.704 1.736-1.704h6.948l4.342 4.262v9.375c0 .938-.781 1.704-1.737 1.705H8.961c-.956 0-1.737-.767-1.737-1.705V7.363Zm7.816 0H8.96v11.932h9.553v-8.522H15.04v-3.41Z", fill: color })));
950
+ const ForwardRef$1j = React.forwardRef(SvgFormsOutlined);
748
951
 
749
- const SvgRecord = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
750
- React__namespace.createElement("path", { d: "M12 2.25c-5.375 0-9.75 4.375-9.75 9.75s4.375 9.75 9.75 9.75 9.75-4.375 9.75-9.75S17.375 2.25 12 2.25Zm0 1.625A8.113 8.113 0 0 1 20.125 12 8.113 8.113 0 0 1 12 20.125 8.113 8.113 0 0 1 3.875 12 8.113 8.113 0 0 1 12 3.875Zm0 4.063a4.063 4.063 0 1 0 0 8.125 4.063 4.063 0 0 0 0-8.125Z", fill: color })));
751
- const ForwardRef$j = React.forwardRef(SvgRecord);
952
+ const SvgFunnelFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
953
+ React__namespace.createElement("path", { d: "M4.889 4a.89.89 0 0 0 0 1.777l4.535 7.112h5.188l4.5-7.112a.889.889 0 0 0 0-1.777H4.888Zm5.334 10.667v4.443c0 .492.397.89.888.89h1.778a.889.889 0 0 0 .888-.889v-4.444h-3.554Z", fill: color })));
954
+ const ForwardRef$1i = React.forwardRef(SvgFunnelFilled);
752
955
 
753
- const SvgReport = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
754
- React__namespace.createElement("path", { d: "M22 5H2v1.777h.909v11.557h8.182V21h1.818v-2.666h8.182V6.777H22V5Zm-10 7.111c0 2.696-3.07 4.692-5.978 2.828a1.893 1.893 0 0 1-.55-.538c-1.907-2.846.134-5.845 2.891-5.845v3.556H12Zm7.273.889v1.778h-5.456V13h5.455l.001-.001Zm-5.456-1.776v-1.78h5.455v1.777h-5.455v.003Z", fill: color })));
755
- const ForwardRef$i = React.forwardRef(SvgReport);
956
+ const SvgFunnelOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
957
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.1 4.889A1.79 1.79 0 0 1 4.889 3.1H19.11a1.79 1.79 0 0 1 .532 3.497l-4.966 7.318v5.196c0 .986-.8 1.789-1.788 1.789H11.11a1.788 1.788 0 0 1-1.788-1.79v-5.194l-4.966-7.32A1.79 1.79 0 0 1 3.1 4.89Zm1.8 0v.002a.02.02 0 0 1-.001.003.008.008 0 0 1-.002.003l-.003.002a.02.02 0 0 1-.003 0l-.002.001h.492l5.742 8.463V19.1h-.012.002a.015.015 0 0 1 .005.002l.002.002.002.003a.022.022 0 0 1 0 .003v-.01h1.755v.011-.001l.002-.004v-.001l.001-.002.004-.002h.003l.002-.001h-.012v-5.738L18.62 4.9h.492-.002l-.003-.001-.003-.002-.002-.003v-.003l-.001-.002v-.002l.001-.003a.01.01 0 0 1 .002-.004l.003-.001a.017.017 0 0 1 .005-.002h-.477l-.015.023H5.381l-.015-.023h-.477", fill: color })));
958
+ const ForwardRef$1h = React.forwardRef(SvgFunnelOutlined);
756
959
 
757
- const SvgRobot = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
758
- React__namespace.createElement("path", { d: "M12 2a1.796 1.796 0 0 0-1.797 1.8 1.802 1.802 0 0 0 .898 1.557V7.4H8.405A3.598 3.598 0 0 0 4.81 11v3.6h-.898a.897.897 0 0 0-.912.9.901.901 0 0 0 .912.9h.898v1.8c0 .995.805 1.8 1.798 1.8h10.784c.993 0 1.798-.805 1.798-1.8v-1.8h.898a.897.897 0 0 0 .912-.9.902.902 0 0 0-.912-.9h-.898V11c0-1.988-1.61-3.6-3.595-3.6h-2.696V5.356A1.798 1.798 0 0 0 12 2Zm-3.146 9a1.35 1.35 0 0 1 0 2.7 1.35 1.35 0 0 1 0-2.7Zm6.292 0a1.35 1.35 0 0 1 0 2.7 1.35 1.35 0 0 1 0-2.7Zm-4.943 5.4h3.594a.9.9 0 0 1 0 1.8h-3.594a.9.9 0 0 1 0-1.8Z", fill: color })));
759
- const ForwardRef$h = React.forwardRef(SvgRobot);
960
+ const SvgGear = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
961
+ React__namespace.createElement("path", { d: "M10.577 2.5a.943.943 0 0 0-.924.769l-.315 1.628a7.494 7.494 0 0 0-2.117 1.226l-1.55-.537a.939.939 0 0 0-1.123.422L3.127 8.492a.955.955 0 0 0 .197 1.192l1.242 1.09A7.703 7.703 0 0 0 4.46 12c0 .418.042.826.106 1.226l-1.242 1.09a.959.959 0 0 0-.198 1.192l1.422 2.484a.94.94 0 0 0 1.123.424l1.55-.538c.628.52 1.343.93 2.117 1.225l.315 1.628a.943.943 0 0 0 .924.769h2.846a.943.943 0 0 0 .924-.769l.315-1.628a7.492 7.492 0 0 0 2.117-1.226l1.55.537a.938.938 0 0 0 1.123-.422l1.421-2.486a.953.953 0 0 0-.197-1.19l-1.242-1.09c.064-.4.106-.807.106-1.226 0-.418-.042-.826-.106-1.226l1.242-1.09a.959.959 0 0 0 .198-1.192l-1.422-2.484a.94.94 0 0 0-1.123-.424l-1.55.538a7.49 7.49 0 0 0-2.117-1.225l-.315-1.628a.942.942 0 0 0-.924-.769h-2.846ZM12 8.2c2.082 0 3.77 1.701 3.77 3.8 0 2.098-1.688 3.8-3.77 3.8S8.23 14.098 8.23 12c0-2.099 1.688-3.8 3.77-3.8Z", fill: color })));
962
+ const ForwardRef$1g = React.forwardRef(SvgGear);
760
963
 
761
- const SvgSmileyFacePlus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
762
- React__namespace.createElement("path", { d: "M22.85 3.05h-1.899v-1.9a.95.95 0 0 0-1.9 0v1.9h-1.902a.95.95 0 0 0 0 1.9h1.901v1.9a.95.95 0 0 0 1.901 0v-1.9h1.9a.949.949 0 1 0 0-1.9ZM9.2 8.8c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2ZM14.8 8.8c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2ZM8.202 14.202A4.388 4.388 0 0 0 12 16.4a4.38 4.38 0 0 0 3.796-2.198.403.403 0 0 0-.35-.602H8.554a.404.404 0 0 0-.352.602Z", fill: color }),
763
- React__namespace.createElement("path", { d: "M12 3.1a8.9 8.9 0 1 0 8.65 6.798.9.9 0 0 0-1.75.424 7.1 7.1 0 1 1-5.125-5.198.9.9 0 0 0 .45-1.743A8.912 8.912 0 0 0 12 3.1Z", fill: color })));
764
- const ForwardRef$g = React.forwardRef(SvgSmileyFacePlus);
964
+ const SvgGrid = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
965
+ React__namespace.createElement("path", { d: "M2.909 5C2.408 5 2 5.392 2 5.875v1.75c0 .483.408.875.909.875h3.637c.5 0 .909-.392.909-.875v-1.75c0-.483-.407-.875-.91-.875H2.909Zm7.272 0c-.501 0-.908.392-.908.875v1.75c0 .483.407.875.908.875h3.638c.501 0 .908-.392.908-.875v-1.75c0-.483-.407-.875-.908-.875H10.18Zm7.274 0c-.502 0-.91.392-.91.875v1.75c0 .483.407.875.91.875h3.636c.502 0 .909-.392.909-.875v-1.75c0-.483-.407-.875-.909-.875h-3.637.001ZM2.909 10.25c-.501 0-.909.392-.909.875v1.75c0 .483.408.876.909.876h3.637c.5 0 .909-.393.909-.876v-1.75c0-.483-.407-.874-.91-.874H2.909Zm7.272 0c-.501 0-.908.392-.908.875v1.75c0 .483.407.876.908.876h3.638c.501 0 .908-.393.908-.876v-1.75c0-.483-.407-.874-.908-.874H10.18Zm7.274 0c-.502 0-.91.392-.91.875v1.75c0 .483.407.876.91.876h3.636c.502 0 .909-.393.909-.876v-1.75c0-.483-.407-.874-.909-.874h-3.637.001ZM2.909 15.5c-.501 0-.909.392-.909.876v1.75c0 .483.408.874.909.874h3.637c.5 0 .909-.391.909-.875v-1.75c0-.483-.407-.875-.91-.875H2.909Zm7.272 0c-.501 0-.908.392-.908.876v1.75c0 .483.407.874.908.874h3.638c.501 0 .908-.391.908-.875v-1.75c0-.483-.407-.875-.908-.875H10.18Zm7.274 0c-.502 0-.91.392-.91.876v1.75c0 .483.407.874.91.874h3.636c.502 0 .909-.391.909-.875v-1.75c0-.483-.407-.875-.909-.875h-3.637.001Z", fill: color })));
966
+ const ForwardRef$1f = React.forwardRef(SvgGrid);
765
967
 
766
- const SvgSmileyFace = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
767
- React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm2.8 4.8c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2Zm-5.6 0c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2Zm2.8 7.6a4.388 4.388 0 0 1-3.798-2.198.404.404 0 0 1 .352-.602h6.892c.308 0 .505.336.35.602A4.38 4.38 0 0 1 12 16.4Z", fill: color })));
768
- const ForwardRef$f = React.forwardRef(SvgSmileyFace);
968
+ const SvgHorizontalLines = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
969
+ React__namespace.createElement("path", { d: "M2 7a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM2 12a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM3 16a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H3Z", fill: color })));
970
+ const ForwardRef$1e = React.forwardRef(SvgHorizontalLines);
769
971
 
770
- const SvgStarCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
771
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3a9.001 9.001 0 0 0 0 18 9.001 9.001 0 0 0 0-18Zm1.77 6.849L12 6.265l-1.77 3.584-3.954.577 2.862 2.79-.679 3.939L12 15.294l3.537 1.86-.675-3.939 2.862-2.79-3.954-.576Z", fill: color })));
772
- const ForwardRef$e = React.forwardRef(SvgStarCircle);
972
+ const SvgHouse = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
973
+ React__namespace.createElement("path", { d: "M12 4a.807.807 0 0 0-.582.25l-8.252 7.411A.425.425 0 0 0 3 12c0 .232.183.421.41.421h2.045v6.737a.83.83 0 0 0 .818.842h3.272a.83.83 0 0 0 .819-.842v-5.053h3.272v5.053a.83.83 0 0 0 .819.842h3.272a.83.83 0 0 0 .819-.842V12.42h2.045c.226 0 .409-.188.409-.421a.425.425 0 0 0-.166-.339l-8.248-7.406A.807.807 0 0 0 12 4Z", fill: color })));
974
+ const ForwardRef$1d = React.forwardRef(SvgHouse);
773
975
 
774
- const SvgStar = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
775
- React__namespace.createElement("path", { d: "m12 18.015 4.998 2.841c.788.448 1.76-.218 1.551-1.062l-1.326-5.356 4.416-3.604c.696-.567.324-1.645-.593-1.718l-5.813-.464-2.274-5.054c-.36-.797-1.558-.797-1.918 0L8.767 8.652l-5.813.464c-.917.073-1.29 1.15-.593 1.718l4.416 3.604-1.327 5.356c-.209.844.764 1.51 1.552 1.062L12 18.015Z", fill: color })));
776
- const ForwardRef$d = React.forwardRef(SvgStar);
976
+ const SvgInfoCircleFilled = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
977
+ React__namespace.createElement("path", { d: "M12.002 2.188c-5.42 0-9.815 4.394-9.815 9.814s4.395 9.815 9.816 9.815c5.42 0 9.814-4.394 9.814-9.815 0-5.42-4.394-9.815-9.815-9.815ZM14.047 17.4c-.506.198-.909.35-1.21.455a3.21 3.21 0 0 1-1.049.155c-.61 0-1.087-.149-1.428-.448a1.443 1.443 0 0 1-.506-1.136c0-.178.013-.36.039-.545.023-.188.065-.396.12-.633l.633-2.233c.055-.214.104-.415.143-.607.039-.191.055-.367.055-.526 0-.282-.059-.483-.175-.594-.12-.113-.345-.168-.676-.168-.162 0-.33.026-.503.074-.172.052-.318.1-.441.146l.169-.688c.412-.168.808-.311 1.188-.431.376-.12.736-.182 1.07-.182.608 0 1.078.15 1.406.441.328.292.493.675.493 1.143 0 .097-.01.27-.032.513a3.507 3.507 0 0 1-.127.675l-.63 2.226a6.415 6.415 0 0 0-.139.61 3.361 3.361 0 0 0-.058.52c0 .295.065.5.198.607.13.107.36.159.688.159.152 0 .324-.026.52-.078.19-.055.33-.1.418-.143l-.166.688Zm-.113-9.04a1.497 1.497 0 0 1-1.058.41c-.413 0-.77-.137-1.065-.41a1.298 1.298 0 0 1-.441-.99c0-.385.149-.72.441-.996a1.507 1.507 0 0 1 1.065-.412c.412 0 .766.137 1.058.412.295.276.441.61.441.997 0 .386-.146.717-.441.99Z", fill: color })));
978
+ const ForwardRef$1c = React.forwardRef(SvgInfoCircleFilled);
777
979
 
778
- const SvgStar2Outlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
779
- React__namespace.createElement("path", { d: "m11.626 4.312-.063.211v-.071l.063-.14ZM12.374 4.312l.063.211v-.071l-.063-.14Z", fill: color }),
780
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m12 18.283.437.248 3.977 2.255c1.178.667 2.63-.325 2.319-1.583l-1.172-4.718 3.9-3.174c1.04-.846.484-2.45-.887-2.56l-5.133-.409-2.009-4.451C13.164 3.296 12.582 3 12 3s-1.164.296-1.432.89L8.559 8.343l-5.133.409c-1.37.11-1.927 1.714-.886 2.56l3.9 3.174-1.173 4.718c-.312 1.258 1.141 2.25 2.319 1.582l3.977-2.255.437-.247Zm0-1.26 5.007 2.839c.308.175.689-.086.607-.414l-1.329-5.352 4.424-3.6c.272-.222.127-.641-.232-.67l-5.823-.464-2.278-5.049h-.002A.403.403 0 0 0 12 4.078a.403.403 0 0 0-.374.233l-.002.001-2.278 5.05-5.823.463c-.359.029-.504.448-.232.67l4.424 3.6-1.33 5.352c-.081.328.3.588.608.414l5.006-2.84.001.001Z", fill: color })));
781
- const ForwardRef$c = React.forwardRef(SvgStar2Outlined);
980
+ const SvgInfoCircleOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
981
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 12c0-4.96 4.04-9 9-9s9 4.04 9 9-4.04 9-9 9-9-4.04-9-9Zm16.2 0c0-3.987-3.213-7.2-7.2-7.2A7.186 7.186 0 0 0 4.8 12c0 3.987 3.213 7.2 7.2 7.2s7.2-3.213 7.2-7.2Zm-8.1-4.5v1.8h1.8V7.5h-1.8Zm0 9v-5.4h1.8v5.4h-1.8Z", fill: color })));
982
+ const ForwardRef$1b = React.forwardRef(SvgInfoCircleOutlined);
782
983
 
783
- const SvgStar2 = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
784
- React__namespace.createElement("path", { d: "M12.437 18.53 12 18.284l-.437.248-3.977 2.255c-1.178.667-2.63-.325-2.319-1.583l1.172-4.718-3.9-3.174c-1.04-.846-.484-2.45.887-2.56l5.133-.409 2.009-4.451C10.836 3.296 11.418 3 12 3s1.164.296 1.432.89l2.009 4.452 5.133.409c1.37.11 1.927 1.714.886 2.56l-3.9 3.174 1.173 4.718c.312 1.258-1.141 2.25-2.319 1.582l-3.977-2.255Z", fill: color })));
785
- const ForwardRef$b = React.forwardRef(SvgStar2);
984
+ const SvgInput = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
985
+ React__namespace.createElement("path", { d: "M6.487 10.405h-1.5v3.825h1.5v-3.825Z", fill: color }),
986
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.25 9.75a1.5 1.5 0 0 1 1.5-1.5h16.758a1.5 1.5 0 0 1 1.5 1.5v5.467a1.5 1.5 0 0 1-1.5 1.5H3.75a1.5 1.5 0 0 1-1.5-1.5V9.75Zm1.5-.375h16.758c.207 0 .375.168.375.375v5.467a.375.375 0 0 1-.375.375H3.75a.375.375 0 0 1-.375-.375V9.75c0-.207.168-.375.375-.375Z", fill: color })));
987
+ const ForwardRef$1a = React.forwardRef(SvgInput);
786
988
 
787
- const SvgTeam = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
788
- React__namespace.createElement("path", { d: "M12 7c-1.346 0-2.455 1.065-2.455 2.357 0 1.293 1.11 2.357 2.455 2.357 1.346 0 2.455-1.064 2.455-2.357C14.455 8.065 13.345 7 12 7ZM6.273 8.571c-.904 0-1.637.704-1.637 1.572 0 .868.733 1.571 1.637 1.571.903 0 1.636-.703 1.636-1.571s-.733-1.572-1.636-1.572Zm11.454 0c-.903 0-1.636.704-1.636 1.572 0 .868.733 1.571 1.636 1.571.904 0 1.637-.703 1.637-1.571s-.733-1.572-1.637-1.572ZM6.273 13.286C4.485 13.286 3 14 3 15.027v1.402h2.455v-.616c0-.986.43-1.838 1.193-2.509-.124-.007-.247-.018-.375-.018Zm5.727 0c-2.89 0-4.91 1.04-4.91 2.527V18h9.82v-2.187c0-1.488-2.02-2.527-4.91-2.527Zm5.727 0c-.128 0-.25.011-.375.018.762.671 1.193 1.524 1.193 2.51v.615H21v-1.402c0-1.027-1.485-1.741-3.273-1.741Z", fill: color })));
789
- const ForwardRef$a = React.forwardRef(SvgTeam);
989
+ const SvgInvoiceOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
990
+ React__namespace.createElement("path", { d: "M11.1 3.75v1.072c-.9.268-1.8 1.074-1.8 2.504 0 1.698 1.44 2.234 2.34 2.592 1.08.447 1.26.536 1.26.982 0 .448-.18.895-.9.895s-.9-.447-.9-.895H9.3c0 .895.54 2.147 1.8 2.504v1.072h1.8v-1.07c1.26-.359 1.8-1.612 1.8-2.506 0-1.698-1.44-2.234-2.34-2.591-1.08-.448-1.26-.537-1.26-.983 0-.716.45-.894.9-.894.72 0 .9.446.9.894h1.8c0-.894-.54-2.147-1.8-2.504V3.75h-1.8Zm-5.4.894v8.939h-.9c-.984 0-1.8.81-1.8 1.787v5.364h1.8V15.37h.9c0 .988.805 1.788 1.8 1.788h9c.994 0 1.8-.8 1.8-1.788h.9v5.364H21V15.37c0-.977-.816-1.787-1.8-1.787h-.9v-8.94h-1.8V15.37h-9V4.644H5.7Zm1.8 14.302v1.787h1.8v-1.787H7.5Zm3.6 0v1.787h1.8v-1.787h-1.8Zm3.6 0v1.787h1.8v-1.787h-1.8Z", fill: color })));
991
+ const ForwardRef$19 = React.forwardRef(SvgInvoiceOutlined);
790
992
 
791
- const SvgTelevetV = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
792
- React__namespace.createElement("path", { d: "M22 5.536c0-2.006-1.72-3.622-3.81-3.53-1.86.087-3.377 1.555-3.46 3.363-.095 2.03 1.568 3.703 3.632 3.703h.082l.058 2.567c.006.253.349.333.476.111 0 0 2.368-4.338 2.387-4.375.45-.882.635-1.136.635-1.839ZM13.156 13.416h-.007v.013L7.371 2H2l11.111 21 2.483-4.702-2.438-4.882Z", fill: color })));
793
- const ForwardRef$9 = React.forwardRef(SvgTelevetV);
993
+ const SvgInvoice = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
994
+ React__namespace.createElement("path", { d: "M12 3c-.497 0-.9.4-.9.895v.179c-.9.268-1.8 1.073-1.8 2.505 0 1.7 1.44 2.237 2.34 2.595 1.08.447 1.26.537 1.26.984 0 .447-.18.895-.9.895-.45 0-.69-.176-.806-.416-.133-.277-.38-.48-.688-.48h-.182c-.588 0-1.012.6-.77 1.13.272.604.773 1.158 1.545 1.376v.18c0 .493.403.894.9.894s.9-.4.9-.895v-.179c1.26-.358 1.8-1.61 1.8-2.505 0-1.7-1.44-2.237-2.34-2.595-1.08-.447-1.26-.537-1.26-.984 0-.716.45-.895.9-.895s.69.176.805.416c.134.277.38.479.689.479h.181c.587 0 1.011-.6.77-1.13-.272-.604-.772-1.158-1.544-1.375v-.18A.897.897 0 0 0 12 3Zm-5.4.895c-.497 0-.9.4-.9.894v8.053h-.9c-.994 0-1.8.8-1.8 1.79v4.473c0 .495.403.895.9.895h3.15a.45.45 0 0 0 .45-.447v-.895a.45.45 0 0 1 .45-.448h.9a.45.45 0 0 1 .45.448v.895a.45.45 0 0 0 .45.447h.9a.45.45 0 0 0 .45-.447v-.895a.45.45 0 0 1 .45-.448h.9a.45.45 0 0 1 .45.448v.895a.45.45 0 0 0 .45.447h.9a.45.45 0 0 0 .45-.447v-.895a.45.45 0 0 1 .45-.448h.9a.45.45 0 0 1 .45.448v.895a.45.45 0 0 0 .45.447h3.15c.497 0 .9-.4.9-.895v-4.473c0-.99-.805-1.79-1.8-1.79h-.9V4.79a.897.897 0 0 0-.9-.894c-.497 0-.9.4-.9.894v9.843h-9V4.789a.897.897 0 0 0-.9-.894Z", fill: color })));
995
+ const ForwardRef$18 = React.forwardRef(SvgInvoice);
794
996
 
795
- const SvgTextEdit = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
796
- React__namespace.createElement("path", { d: "M11.989 7.911c-.044.001-.087.005-.13.012H7.908c-.25 0-.455.184-.455.41v1.232c0 .227.204.41.455.41h.455c.251 0 .455-.183.455-.41v-.41h2.274v6.569h-.455c-.25 0-.454.184-.454.41v.411c0 .227.203.41.454.41h1.218c.097.015.197.015.295 0h1.217c.25 0 .455-.183.455-.41v-.41c0-.227-.204-.411-.455-.411h-.455v-6.57h2.274v.411c0 .227.204.41.455.41h.455c.251 0 .455-.183.455-.41V8.333c0-.226-.204-.41-.455-.41h-3.948a1.007 1.007 0 0 0-.16-.012ZM3.2 2.76a.44.44 0 0 0-.44.44v2.64a.443.443 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387v-2.2h2.2a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218H3.2Zm4.4 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218H7.6Zm5.28 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218h-3.52Zm5.28 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h2.2v2.2a.442.442 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387V3.2a.44.44 0 0 0-.44-.44h-2.64ZM3.193 7.153a.442.442 0 0 0-.433.447v3.52a.443.443 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387V7.6a.441.441 0 0 0-.447-.447Zm17.6 0a.442.442 0 0 0-.433.447v3.52a.442.442 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387V7.6a.441.441 0 0 0-.447-.447Zm-17.6 5.28a.442.442 0 0 0-.433.447v3.52a.443.443 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387v-3.52a.441.441 0 0 0-.447-.447Zm17.6 0a.442.442 0 0 0-.433.447v3.52a.442.442 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387v-3.52a.441.441 0 0 0-.447-.447Zm-17.6 5.28a.442.442 0 0 0-.433.447v2.64c0 .242.198.44.44.44h2.64a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218h-2.2v-2.2a.441.441 0 0 0-.447-.447Zm17.6 0a.442.442 0 0 0-.433.447v2.2h-2.2a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h2.64a.44.44 0 0 0 .44-.44v-2.64a.441.441 0 0 0-.447-.447ZM7.6 20.36a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218H7.6Zm5.28 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218h-3.52Z", fill: color })));
797
- const ForwardRef$8 = React.forwardRef(SvgTextEdit);
997
+ const SvgKanbanBoard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
998
+ React__namespace.createElement("path", { d: "M10.471 4.866a1.242 1.242 0 0 0-.371.884V9.5c0 .332.133.65.371.884.238.234.56.366.896.366h1.266c.336 0 .659-.132.896-.366.238-.235.371-.552.371-.884V5.75c0-.332-.133-.65-.371-.884a1.275 1.275 0 0 0-.896-.366h-1.266c-.336 0-.659.132-.896.366ZM5.404 4.866a1.242 1.242 0 0 0-.37.884v8.75c0 .332.133.65.37.884.238.234.56.366.896.366h1.267c.336 0 .658-.132.895-.366.238-.235.371-.553.371-.884V5.75c0-.332-.133-.65-.37-.884a1.275 1.275 0 0 0-.896-.366H6.3c-.336 0-.658.132-.896.366ZM15.538 4.866a1.241 1.241 0 0 0-.371.884v12.5c0 .331.133.65.37.884.238.234.56.366.896.366H17.7c.336 0 .658-.132.896-.366.237-.235.37-.553.37-.884V5.75c0-.332-.133-.65-.37-.884A1.276 1.276 0 0 0 17.7 4.5h-1.267c-.336 0-.658.132-.895.366Z", fill: color }),
999
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.242 2.732A2.55 2.55 0 0 1 5.033 2h13.934a2.55 2.55 0 0 1 1.791.732c.475.47.742 1.105.742 1.768v15c0 .663-.267 1.299-.742 1.768a2.55 2.55 0 0 1-1.791.732H5.033a2.55 2.55 0 0 1-1.791-.732A2.484 2.484 0 0 1 2.5 19.5v-15c0-.663.267-1.299.742-1.768Zm1.791.518h13.934c.336 0 .658.132.895.366.238.235.371.552.371.884v15c0 .331-.133.65-.37.884-.238.234-.56.366-.896.366H5.033c-.336 0-.658-.132-.895-.366a1.242 1.242 0 0 1-.371-.884v-15c0-.332.133-.65.37-.884.238-.234.56-.366.896-.366Z", fill: color })));
1000
+ const ForwardRef$17 = React.forwardRef(SvgKanbanBoard);
798
1001
 
799
- const SvgThumbsUp = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
800
- React__namespace.createElement("path", { d: "M13.973 3a1.39 1.39 0 0 0-.96.387L7.984 8.246c-.34.329-.53.773-.53 1.238v8.762c0 .97.813 1.754 1.818 1.754h8.175c.726 0 1.383-.417 1.67-1.062l2.735-6.14a1.7 1.7 0 0 0 .147-.692v-1.752c0-.969-.814-1.754-1.818-1.754h-5.774l.903-4.002c.1-.442-.042-.903-.376-1.22A1.386 1.386 0 0 0 13.973 3ZM2.909 9.477c-.502 0-.909.393-.909.877v8.77c0 .483.407.876.91.876h1.817c.502 0 .91-.393.91-.877v-8.769c0-.484-.408-.877-.91-.877H2.91Z", fill: color })));
801
- const ForwardRef$7 = React.forwardRef(SvgThumbsUp);
1002
+ const SvgLargeTextInput = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1003
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.441 6a1.64 1.64 0 0 0-1.627 1.628v3.255a.814.814 0 0 0-.814.813v1.628c0 .449.365.813.814.813v3.255c0 .89.738 1.628 1.627 1.628h13.02a1.64 1.64 0 0 0 1.628-1.628v-3.255c.449 0 .814-.364.814-.813v-1.628a.814.814 0 0 0-.814-.813V7.628A1.64 1.64 0 0 0 18.46 6H5.441Zm0 1.628h13.02v3.255a.814.814 0 0 0-.813.813v1.628c0 .449.364.813.814.813v3.255H5.442v-3.255c.449 0 .813-.364.813-.813v-1.628a.814.814 0 0 0-.813-.813V7.628Zm4.069 2.44c0-.448.364-.813.813-.813h3.255a.814.814 0 0 1 0 1.627h-.813v4.07a.814.814 0 0 1-1.628 0v-4.07h-.814a.814.814 0 0 1-.813-.813Z", fill: color })));
1004
+ const ForwardRef$16 = React.forwardRef(SvgLargeTextInput);
802
1005
 
803
- const SvgTrashcan = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
804
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m9.375 4.125.875-.875h3.5l.875.875h3.5c.525 0 .875.35.875.875s-.35.875-.875.875H5.875C5.35 5.875 5 5.525 5 5s.35-.875.875-.875h3.5ZM5.875 19V7.625h12.25V19c0 .962-.788 1.75-1.75 1.75h-8.75c-.963 0-1.75-.788-1.75-1.75Zm3.5-9.625c.525 0 .875.35.875.875v7.875c0 .525-.35.875-.875.875s-.875-.35-.875-.875V10.25c0-.525.35-.875.875-.875Zm6.125.875c0-.525-.35-.875-.875-.875s-.875.35-.875.875v7.875c0 .525.35.875.875.875s.875-.35.875-.875V10.25Z", fill: color })));
805
- const ForwardRef$6 = React.forwardRef(SvgTrashcan);
1006
+ const SvgList = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1007
+ React__namespace.createElement("path", { d: "M5 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM8.5 4.5a1.5 1.5 0 1 0 0 3h12a1.5 1.5 0 0 0 0-3h-12ZM8.5 10.5a1.5 1.5 0 0 0 0 3h12a1.5 1.5 0 0 0 0-3h-12ZM3.5 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 18a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM8.5 16.5a1.5 1.5 0 0 0 0 3h12a1.5 1.5 0 0 0 0-3h-12Z", fill: color })));
1008
+ const ForwardRef$15 = React.forwardRef(SvgList);
806
1009
 
807
- const SvgTwoSquares = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
808
- React__namespace.createElement("path", { d: "M4.8 3C3.805 3 3 3.805 3 4.8v11.7a.9.9 0 1 0 1.8 0V4.8h11.7a.9.9 0 1 0 0-1.8H4.8Zm3.6 3.6c-.995 0-1.8.805-1.8 1.8v10.8c0 .995.805 1.8 1.8 1.8h10.8c.995 0 1.8-.805 1.8-1.8V8.4c0-.995-.805-1.8-1.8-1.8H8.4Zm0 1.8h10.8v10.8H8.4V8.4Z", fill: color })));
809
- const ForwardRef$5 = React.forwardRef(SvgTwoSquares);
1010
+ const SvgLocationMarkerGround = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1011
+ React__namespace.createElement("path", { d: "M12 2C8.94 2 6.45 4.536 6.45 7.652c0 4.14 4.998 10.851 5.21 11.135l.34.45.34-.45c.212-.284 5.21-6.994 5.21-11.135C17.55 4.536 15.06 2 12 2Zm0 3.913c.944 0 1.708.778 1.708 1.74 0 .96-.764 1.738-1.708 1.738s-1.708-.778-1.708-1.739c0-.961.764-1.739 1.708-1.739Zm-7.558 9.13L2 22h20l-2.442-6.957h-3.267c-.167.3-.333.59-.5.87h3.167l1.828 5.217H3.214l1.828-5.217h3.167c-.167-.28-.333-.57-.5-.87H4.442Z", fill: color })));
1012
+ const ForwardRef$14 = React.forwardRef(SvgLocationMarkerGround);
810
1013
 
811
- const SvgUpload = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
812
- React__namespace.createElement("path", { d: "M10.687 17.455a2.097 2.097 0 0 1-2.096-2.097v-5.59H6.32c-.986 0-1.193-.159-.35-1.005l4.608-4.608c1.537-1.537 1.518-1.543 3.058 0l4.586 4.608c.843.846.562 1.004-.328 1.004H15.58v5.591a2.097 2.097 0 0 1-2.096 2.097h-2.796ZM3 16.278v2.796c0 1.157.94 2.096 2.097 2.096h13.976c1.158 0 2.097-.94 2.097-2.097v-2.795h-1.398v2.796a.7.7 0 0 1-.698.698H5.096a.7.7 0 0 1-.7-.698v-2.796H3Z", fill: color })));
813
- const ForwardRef$4 = React.forwardRef(SvgUpload);
1014
+ const SvgLocationMarker = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1015
+ React__namespace.createElement("path", { d: "M12.1 3a6.3 6.3 0 0 0-6.3 6.3c0 4.5 6.3 11.7 6.3 11.7s6.3-7.2 6.3-11.7A6.3 6.3 0 0 0 12.1 3Zm0 8.55a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5Z", fill: color })));
1016
+ const ForwardRef$13 = React.forwardRef(SvgLocationMarker);
814
1017
 
815
- const SvgVideoCamera = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
816
- React__namespace.createElement("path", { d: "M3.818 5C2.816 5 2 5.833 2 6.857v9.285C2 17.167 2.816 18 3.818 18h11.819c1.002 0 1.817-.833 1.817-1.858v-2.709l3.068 2.506a.906.906 0 0 0 .57.204.903.903 0 0 0 .394-.093.932.932 0 0 0 .514-.836V7.786c0-.357-.2-.683-.514-.839a.898.898 0 0 0-.964.114l-3.066 2.506v-2.71c0-1.024-.818-1.857-1.82-1.857H3.818Z", fill: color })));
817
- const ForwardRef$3 = React.forwardRef(SvgVideoCamera);
1018
+ const SvgLockRectangle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1019
+ React__namespace.createElement("path", { d: "M18.222 9.6h.89c.235 0 .461.1.628.278.166.178.26.42.26.672v9.5a.984.984 0 0 1-.26.672.861.861 0 0 1-.629.278H4.89a.861.861 0 0 1-.629-.278.984.984 0 0 1-.26-.672v-9.5c0-.252.094-.494.26-.672A.86.86 0 0 1 4.89 9.6h.889v-.95c0-.873.16-1.738.473-2.545a6.698 6.698 0 0 1 1.35-2.157 6.212 6.212 0 0 1 2.018-1.442A5.877 5.877 0 0 1 12 2c.817 0 1.626.172 2.381.506.755.334 1.441.824 2.019 1.442a6.698 6.698 0 0 1 1.349 2.157c.312.807.473 1.672.473 2.545v.95Zm-1.778 0v-.95a4.92 4.92 0 0 0-1.301-3.359C14.309 4.401 13.179 3.9 12 3.9c-1.179 0-2.31.5-3.143 1.391A4.92 4.92 0 0 0 7.556 8.65v.95h8.888Zm-5.333 3.8v3.8h1.778v-3.8H11.11Z", fill: color })));
1020
+ const ForwardRef$12 = React.forwardRef(SvgLockRectangle);
818
1021
 
819
- const SvgWarningSign = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
820
- React__namespace.createElement("path", { d: "M10.607 9.496a1.397 1.397 0 1 1 2.786 0l-.322 4.506a1.074 1.074 0 0 1-2.142 0l-.322-4.506ZM11 17a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z", fill: color }),
821
- React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21.504 15.6 15.168 4.8c-1.408-2.4-4.928-2.4-6.336 0L2.496 15.6C1.088 18 2.848 21 5.664 21h12.672c2.816 0 4.577-3 3.168-5.4ZM10.416 5.7c.704-1.2 2.464-1.2 3.168 0l6.336 10.8c.704 1.2-.176 2.7-1.584 2.7H5.664c-1.408 0-2.288-1.5-1.584-2.7l6.336-10.8Z", fill: color })));
822
- const ForwardRef$2 = React.forwardRef(SvgWarningSign);
1022
+ const SvgLockRound = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1023
+ React__namespace.createElement("path", { d: "M12 1C8.677 1 6 3.803 6 7.286v1.048c-1.1 0-2 .941-2 2.096v10.476C4 22.057 4.9 23 6 23h12c1.1 0 2-.941 2-2.095V10.429c0-1.152-.9-2.095-2-2.095V7.286C18 3.804 15.324 1 12 1Zm0 2.095c2.277 0 4 1.805 4 4.19v1.05H8v-1.05c0-2.385 1.723-4.19 4-4.19Zm0 10.477c1.1 0 2 .942 2 2.095 0 1.153-.9 2.095-2 2.095s-2-.942-2-2.095c0-1.153.9-2.095 2-2.095Z", fill: color })));
1024
+ const ForwardRef$11 = React.forwardRef(SvgLockRound);
823
1025
 
824
- const SvgWebsite = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
825
- React__namespace.createElement("path", { d: "M4.114 3.75C3.499 3.75 3 4.24 3 4.842v3.513h18V4.842c0-.602-.5-1.092-1.113-1.092H4.114Zm1.234 1.535c.432 0 .782.343.782.767s-.35.768-.782.768a.775.775 0 0 1-.783-.768c0-.424.35-.767.783-.767Zm2.348 0c.432 0 .782.343.782.767s-.35.768-.782.768a.775.775 0 0 1-.783-.768c0-.424.35-.767.783-.767Zm1.956 0h9.392V6.82H9.652V5.285ZM3 9.122v8.826c0 .212.175.383.391.383h8.172c.526-.65.828-1.545.828-2.607v-3.757l-2.07 2.031c-.154.15-.401.15-.554 0a.378.378 0 0 1 0-.542l2.739-2.687c.153-.15.4-.15.553 0l2.74 2.687a.378.378 0 0 1 0 .542.394.394 0 0 1-.554 0l-2.071-2.031v3.757c0 1.002-.24 1.89-.667 2.607h-.944c-.588.728-1.457 1.152-2.51 1.152H7.695a.387.387 0 0 0-.392.383c0 .212.175.384.392.384h1.356c1.515 0 2.745-.725 3.455-1.919h8.102a.387.387 0 0 0 .391-.383V9.122H3Z", fill: color })));
826
- const ForwardRef$1 = React.forwardRef(SvgWebsite);
1026
+ const SvgLoudspeaker = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1027
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.812 4.128a2 2 0 0 0-2.988-1.264L2.091 10.593a2 2 0 0 0-.917 2.133l.585 2.698A2 2 0 0 0 3.713 17H5v3a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-3h7.246a2 2 0 0 0 1.95-2.446l-.455-1.986 2.135-.867a1 1 0 0 0 .595-1.165l-1-4.072a1 1 0 0 0-1.055-.757l-2.2.186-.404-1.765ZM7.02 17H7v3h2v-3H7.02Zm12.269-6.407-.625-2.73 1.068-.091.59 2.401-1.033.42Zm-12.707-.387 9.279-5.632L18.246 15H7.78l-1.198-4.794Zm-1.79 1.087-1.664 1.01L3.713 15H5.72l-.926-3.707Z", fill: color })));
1028
+ const ForwardRef$10 = React.forwardRef(SvgLoudspeaker);
827
1029
 
828
- const SvgWrench = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
829
- React__namespace.createElement("path", { d: "M16.138 3a4.673 4.673 0 0 0-4.456 6.089l-8.072 8.35a2.086 2.086 0 1 0 3 2.9l7.979-8.254a4.673 4.673 0 0 0 6.04-5.703.668.668 0 0 0-1.113-.288L16.682 8.93l-1.834-1.834 2.813-2.815a.668.668 0 0 0-.296-1.116A4.679 4.679 0 0 0 16.138 3Z", fill: color })));
830
- const ForwardRef = React.forwardRef(SvgWrench);
1030
+ const SvgMagnifyingGlass = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1031
+ React__namespace.createElement("path", { d: "M10.3 4C6.83 4 4 6.831 4 10.3s2.831 6.3 6.3 6.3c1.574 0 3.01-.587 4.117-1.547l.383.383V16.6l5.027 5.027a1.272 1.272 0 1 0 1.8-1.8L16.6 14.8h-1.164l-.383-.383A6.259 6.259 0 0 0 16.6 10.3c0-3.469-2.831-6.3-6.3-6.3Zm0 1.8c2.495 0 4.5 2.004 4.5 4.5 0 2.495-2.005 4.5-4.5 4.5a4.487 4.487 0 0 1-4.5-4.5c0-2.496 2.004-4.5 4.5-4.5Z", fill: color })));
1032
+ const ForwardRef$$ = React.forwardRef(SvgMagnifyingGlass);
831
1033
 
832
- var IconMap = {
833
- alertCircle: ForwardRef$2x,
834
- animalBird: ForwardRef$2w,
835
- animalCat: ForwardRef$2v,
836
- animalCow: ForwardRef$2u,
837
- animalDog: ForwardRef$2t,
838
- animalHorse: ForwardRef$2s,
839
- arrowCircle: ForwardRef$2r,
840
- arrowDown: ForwardRef$2p,
841
- arrowDownRight: ForwardRef$2q,
842
- arrowLeft: ForwardRef$2o,
843
- arrowRight: ForwardRef$2n,
844
- arrowUp: ForwardRef$2m,
845
- arrowsIn: ForwardRef$2l,
846
- arrowsOut: ForwardRef$2k,
847
- article: ForwardRef$2j,
848
- asterisk: ForwardRef$2i,
849
- bell: ForwardRef$2g,
850
- bone: ForwardRef$2f,
851
- bellRinging: ForwardRef$2h,
852
- bookmarkFilled: ForwardRef$2e,
853
- bookmarkOutlined: ForwardRef$2d,
854
- brush: ForwardRef$2c,
855
- bulkSelect: ForwardRef$2b,
856
- buttons: ForwardRef$2a,
857
- caduceus: ForwardRef$29,
858
- calendarDate: ForwardRef$27,
859
- calendarCheck: ForwardRef$28,
860
- calendarInfo: ForwardRef$26,
861
- calendarOutlined: ForwardRef$25,
862
- calendarPen: ForwardRef$24,
863
- camera: ForwardRef$21,
864
- cameraFlip: ForwardRef$23,
865
- cameraOff: ForwardRef$22,
866
- cancel: ForwardRef$20,
867
- cellphone: ForwardRef$1_,
868
- cellphoneAlert: ForwardRef$1$,
869
- chainLink: ForwardRef$1Z,
870
- chatBubbleFilled: ForwardRef$1Y,
871
- chatBubbleOutlined: ForwardRef$1X,
872
- checkmark: ForwardRef$1T,
873
- checkmarkBox: ForwardRef$1W,
874
- checkmarkCircle: ForwardRef$1V,
875
- checkmarkList: ForwardRef$1U,
876
- chevronDown: ForwardRef$1S,
877
- chevronLeft: ForwardRef$1R,
878
- chevronRight: ForwardRef$1Q,
879
- chevronUp: ForwardRef$1O,
880
- chevronUpDown: ForwardRef$1P,
881
- circleDotted: ForwardRef$1N,
882
- clockGear: ForwardRef$1M,
883
- clock: ForwardRef$1L,
884
- close: ForwardRef$1J,
885
- closeCircle: ForwardRef$1K,
886
- code: ForwardRef$1I,
887
- conversation: ForwardRef$1H,
888
- creditCardHand: ForwardRef$1G,
889
- crossClipboard: ForwardRef$1F,
890
- crossPaw: ForwardRef$1D,
891
- crossHatPerson: ForwardRef$1E,
892
- dogHouse: ForwardRef$1B,
893
- dogHouseOutlined: ForwardRef$1C,
894
- dollar: ForwardRef$1z,
895
- dollarCircle: ForwardRef$1A,
896
- dotsCircle: ForwardRef$1y,
897
- dotsHorizontal: ForwardRef$1x,
898
- dotsVertical: ForwardRef$1w,
899
- doubleArrowCircle: ForwardRef$1v,
900
- download: ForwardRef$1u,
901
- dragDrop: ForwardRef$1t,
902
- emailSend: ForwardRef$1s,
903
- envelopeFilled: ForwardRef$1r,
904
- envelopeOutlined: ForwardRef$1q,
905
- eyedropper: ForwardRef$1m,
906
- eyeOpen: ForwardRef$1o,
907
- eyeSlash: ForwardRef$1n,
908
- externalLink: ForwardRef$1p,
909
- faceScreen: ForwardRef$1l,
910
- formsFilled: ForwardRef$1k,
911
- formsOutlined: ForwardRef$1j,
912
- funnelFilled: ForwardRef$1i,
913
- funnelOutlined: ForwardRef$1h,
914
- gear: ForwardRef$1g,
915
- grid: ForwardRef$1f,
916
- horizontalLines: ForwardRef$1e,
917
- house: ForwardRef$1d,
918
- infoCircleFilled: ForwardRef$1c,
919
- infoCircleOutlined: ForwardRef$1b,
920
- input: ForwardRef$1a,
921
- invoice: ForwardRef$18,
922
- invoiceOutlined: ForwardRef$19,
923
- kanbanBoard: ForwardRef$17,
924
- largeTextInput: ForwardRef$16,
925
- list: ForwardRef$15,
926
- locationMarker: ForwardRef$13,
927
- locationMarkerGround: ForwardRef$14,
928
- lockRectangle: ForwardRef$12,
929
- lockRound: ForwardRef$11,
930
- loudspeaker: ForwardRef$10,
931
- magnifyingGlass: ForwardRef$$,
932
- mailbox: ForwardRef$_,
933
- manHeadset: ForwardRef$Z,
934
- mergeTags: ForwardRef$Y,
935
- message: ForwardRef$S,
936
- messages: ForwardRef$R,
937
- messageClipboard: ForwardRef$X,
938
- messageEllipses: ForwardRef$W,
939
- messageGearOutlined: ForwardRef$V,
940
- messageGear: ForwardRef$U,
941
- messageLink: ForwardRef$T,
942
- microphone: ForwardRef$P,
943
- microphoneMute: ForwardRef$Q,
944
- minus: ForwardRef$O,
945
- moveLeft: ForwardRef$N,
946
- moveRight: ForwardRef$M,
947
- multipleChoice: ForwardRef$L,
948
- notification: ForwardRef$K,
949
- paperAirplane: ForwardRef$H,
950
- paperAirplane2: ForwardRef$J,
951
- paperAirplaneRight: ForwardRef$I,
952
- paperclip: ForwardRef$F,
953
- paperPen: ForwardRef$G,
954
- paw: ForwardRef$C,
955
- paw2: ForwardRef$B,
956
- pawMagnifyingGlass: ForwardRef$E,
957
- pawOutlined: ForwardRef$D,
958
- pdfLogo: ForwardRef$A,
959
- pen: ForwardRef$y,
960
- penSquare: ForwardRef$z,
961
- person: ForwardRef$w,
962
- personAdd: ForwardRef$x,
963
- phone: ForwardRef$s,
964
- phoneButtons: ForwardRef$v,
965
- phoneDown: ForwardRef$u,
966
- phoneRing: ForwardRef$t,
967
- pill: ForwardRef$q,
968
- pillHand: ForwardRef$r,
969
- playingCards: ForwardRef$p,
970
- plus: ForwardRef$o,
971
- questionMark: ForwardRef$m,
972
- questionMarkCircle: ForwardRef$n,
973
- quilInk: ForwardRef$l,
974
- reactLogo: ForwardRef$k,
975
- record: ForwardRef$j,
976
- report: ForwardRef$i,
977
- robot: ForwardRef$h,
978
- smileyFace: ForwardRef$f,
979
- smileyFacePlus: ForwardRef$g,
980
- star: ForwardRef$d,
981
- star2: ForwardRef$b,
982
- star2Outlined: ForwardRef$c,
983
- starCircle: ForwardRef$e,
984
- team: ForwardRef$a,
985
- televetV: ForwardRef$9,
986
- textEdit: ForwardRef$8,
987
- thumbsUp: ForwardRef$7,
988
- trashcan: ForwardRef$6,
989
- twoSquares: ForwardRef$5,
990
- upload: ForwardRef$4,
991
- videoCamera: ForwardRef$3,
992
- warningSign: ForwardRef$2,
993
- website: ForwardRef$1,
994
- wrench: ForwardRef,
995
- };
996
- var IconSizeMap = {
997
- xs: 14,
998
- sm: 16,
999
- md: 20,
1000
- lg: 24,
1001
- xl: 32,
1002
- '2xl': 38,
1003
- };
1034
+ const SvgMailbox = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1035
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.555 1.01a.5.5 0 0 0-.5.5v5.27H6a4 4 0 0 0-4 4v7.739a2 2 0 0 0 2 2h8v1.64a.9.9 0 1 0 1.8 0v-1.64H20a2 2 0 0 0 2-2v-7.74a4 4 0 0 0-4-4h-3.146V5.8h2.881a.5.5 0 0 0 .46-.305l1.606-3.789a.5.5 0 0 0-.46-.695h-5.786Zm1.3 1.8V4h2.02l.503-1.189h-2.523Zm-1.8 5.77v1.029a.9.9 0 1 0 1.8 0v-1.03H18a2.2 2.2 0 0 1 2.2 2.2v7.74a.2.2 0 0 1-.2.2h-9.48c.006-.066.01-.133.01-.2v-7.74c0-.812-.243-1.568-.66-2.2h3.185Zm-6.525 0H6a2.2 2.2 0 0 0-2.2 2.2v7.739c0 .11.09.2.2.2h4.53a.2.2 0 0 0 .2-.2v-7.74a2.2 2.2 0 0 0-2.2-2.2Z", fill: color })));
1036
+ const ForwardRef$_ = React.forwardRef(SvgMailbox);
1004
1037
 
1005
- var useAdaptiveColorMap = function (map, token) {
1006
- return react.useColorModeValue(map.light[token], map.dark[token]);
1007
- };
1038
+ const SvgManHeadset = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1039
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.474 8.652C3.662 4.922 5.984 1 12 1h.193l.947.957c3.932.095 6.25 2.486 6.439 6.695v1.913c.779 0 1.421.649 1.421 1.435v1.913c0 .787-.642 1.435-1.421 1.435v.478c0 2.119-1.691 3.826-3.79 3.826h-1.983c-.198.553-.72.957-1.332.957h-.948a1.436 1.436 0 0 1 0-2.87h.948c.612 0 1.134.404 1.332.957h1.984c1.596 0 2.841-1.258 2.841-2.87v-.344c-.094.041-.186.08-.28.105-.076.183-.151.371-.228.563-.164.41-.334.837-.528 1.26-.379.43-.912.667-1.48.762.474-.907.948-1.969 1.421-3.213l.104-.284.281-.045c.08 0 .161-.013.237-.03v-1.584l-.74.374a.466.466 0 0 1-.46-.026.478.478 0 0 1-.221-.408V9.444c-.446-.15-2.09-.805-3.36-2.496-1.201 1.166-2.937 1.818-4.441 2.182-1.323.322-2.16.375-2.537.399l-.083.005v3.422a.478.478 0 0 1-.22.408.466.466 0 0 1-.461.026l-1.554-.747a1.757 1.757 0 0 0-.134.702c0 .717.524 1.285 1.14 1.285l.281.045.09.284c1.8 4.783 3.75 7.085 6.024 7.085 1.184 0 2.274-.623 3.316-1.914h1.228c-1.136 1.626-2.605 2.87-4.5 2.87-3.504 0-5.547-4.16-6.78-7.413C3.706 15.347 3 14.445 3 13.345c0-.622.142-1.112.474-1.495V8.652Zm9.281-5.739-.948-.956c-3.458.048-7.145 1.864-7.43 6.695v3.064l.991.478V9.13c0-.252.195-.463.444-.478 0 0 1.335-.065 2.917-.448 1.582-.383 3.378-1.099 4.322-2.242a.472.472 0 0 1 .326-.18.475.475 0 0 1 .444.225c1.162 1.911 3.523 2.66 3.523 2.66.203.06.342.249.34.463v3.05l.474-.24v-.896a.475.475 0 0 1 .43-.479h.043V8.652c-.094-2.152-.947-5.739-5.684-5.739h-.192Zm6.35 8.609h.474c.263 0 .474.213.474.478v1.913c0 .265-.211.478-.474.478h-.385a.488.488 0 0 0-.089-.015V12.3a.512.512 0 0 0 0-.15v-.627Zm-6.158 7.652a.475.475 0 0 0-.473-.478h-.948a.475.475 0 0 0-.473.478c0 .265.21.478.473.478h.948a.475.475 0 0 0 .473-.478Z", fill: color })));
1040
+ const ForwardRef$Z = React.forwardRef(SvgManHeadset);
1008
1041
 
1009
- var Icon = React.forwardRef(function (_a, ref) {
1010
- var name = _a.name, _b = _a.size, size = _b === void 0 ? 'lg' : _b, _c = _a.color, color = _c === void 0 ? 'currentColor' : _c;
1011
- var colors = useTheme().colors;
1012
- var c = useAdaptiveColorMap(colors.icon, color);
1013
- var MappedIcon = IconMap[name];
1014
- var d = IconSizeMap[size] + 'px';
1015
- return React__default["default"].createElement(MappedIcon, { ref: ref, width: d, height: d, color: c });
1016
- });
1017
- Icon.displayName = 'Icon';
1042
+ const SvgMergeTags = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1043
+ React__namespace.createElement("path", { d: "M9.911 2a3 3 0 0 0-3 3v4.42L5 12l1.911 2.58V19a3 3 0 0 0 3 3h1.334v-2H9.91a1 1 0 0 1-1-1v-5.08L7.49 12l1.422-1.92V5a1 1 0 0 1 1-1h1.334V2H9.91ZM16.911 2a3 3 0 0 0-3 3v4.42L12 12l1.911 2.58V19a3 3 0 0 0 3 3h1.333v-2h-1.333a1 1 0 0 1-1-1v-5.08L14.49 12l1.422-1.92V5a1 1 0 0 1 1-1h1.333V2h-1.333Z", fill: color })));
1044
+ const ForwardRef$Y = React.forwardRef(SvgMergeTags);
1018
1045
 
1019
- var camelCaseToLabel = function (s) {
1020
- return s.replace(/([A-Z])/g, ' $1').replace(/^\w/, function (c) { return c.toUpperCase(); });
1021
- };
1022
- var toTitleCase = function (s) {
1023
- var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|v.?|vs.?|via)$/i;
1024
- var alphanumericPattern = /([A-Za-z0-9\u00C0-\u00FF])/;
1025
- var wordSeparators = /([ :–—-])/;
1026
- return s
1027
- .split(wordSeparators)
1028
- .map(function (current, index, array) {
1029
- if (
1030
- /* Check for small words */
1031
- current.search(smallWords) > -1 &&
1032
- /* Skip first and last word */
1033
- index !== 0 &&
1034
- index !== array.length - 1 &&
1035
- /* Ignore title end and subtitle start */
1036
- array[index - 3] !== ':' &&
1037
- array[index + 1] !== ':' &&
1038
- /* Ignore small words that start a hyphenated phrase */
1039
- (array[index + 1] !== '-' || (array[index - 1] === '-' && array[index + 1] === '-'))) {
1040
- return current.toLowerCase();
1041
- }
1042
- /* Ignore intentional capitalization */
1043
- if (current.substring(1).search(/[A-Z]|\../) > -1) {
1044
- return current;
1045
- }
1046
- /* Ignore URLs */
1047
- if (array[index + 1] === ':' && array[index + 2] !== '') {
1048
- return current;
1049
- }
1050
- /* Capitalize the first letter */
1051
- return current.replace(alphanumericPattern, function (match) { return match.toUpperCase(); });
1052
- })
1053
- .join('');
1054
- };
1046
+ const SvgMessageClipboard = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1047
+ React__namespace.createElement("path", { d: "M10.069 2c.693 0 1.181.513 1.426 1.15h4.643v6.578h2.593c.66 0 1.205.493 1.264 1.116l.005.112v7.363c0 .674-.571 1.227-1.27 1.227h-6.345L9.848 22v-2.454H8.58c-.7 0-1.269-.55-1.269-1.229v-.803H4V3.15h4.643C8.888 2.513 9.376 2 10.07 2Zm-3.31 2.298H5.103v12.067h2.208l.004-5.41c0-.637.504-1.165 1.148-1.222l.115-.005h6.456v-5.43H13.38v2.299H6.76V4.298Zm3.31-1.149c-.312 0-.552.25-.552.575v.574H7.862v1.15h4.414v-1.15H10.62v-.574c0-.325-.24-.575-.552-.575Z", fill: color })));
1048
+ const ForwardRef$X = React.forwardRef(SvgMessageClipboard);
1055
1049
 
1056
- var Button = React.forwardRef(function (props, ref) {
1057
- var _a = useTheme(), components = _a.components, fontWeights = _a.fontWeights;
1058
- var _b = components.Button[props.variant || 'primary'], variant = _b.variant, light = _b.light, dark = _b.dark;
1059
- var modeColor = props.darkMode ? dark : light;
1060
- var bg = react.useColorModeValue(modeColor.default, dark.default);
1061
- var color = react.useColorModeValue(modeColor.content, dark.content);
1062
- var borderColor = react.useColorModeValue(modeColor.border, dark.border);
1063
- var p = __assign(__assign({}, props), { variant: variant, bg: bg, color: color, borderColor: borderColor });
1064
- var hoverClass = {
1065
- bg: react.useColorModeValue(modeColor.hover, dark.hover),
1066
- };
1067
- var activeClass = {
1068
- bg: react.useColorModeValue(modeColor.active, dark.active),
1069
- transform: 'scale(0.98)',
1070
- };
1071
- var iconName = p.iconName; p.darkMode; var iconPosition = p.iconPosition, domProps = __rest(p, ["iconName", "darkMode", "iconPosition"]);
1072
- if (iconName) {
1073
- var ButtonIcon = React__default["default"].createElement(Icon, { size: p.size, name: iconName });
1074
- if (!domProps.children) {
1075
- var label = camelCaseToLabel(iconName);
1076
- return (React__default["default"].createElement(react.IconButton, __assign({ ref: ref, _hover: hoverClass, _active: activeClass, "aria-label": label, icon: ButtonIcon }, domProps)));
1077
- }
1078
- else {
1079
- var position = iconPosition === 'right' ? 'rightIcon' : 'leftIcon';
1080
- domProps[position] = ButtonIcon;
1081
- }
1082
- }
1083
- return (React__default["default"].createElement(react.Button, __assign({ fontWeight: fontWeights.semibold, ref: ref, _hover: hoverClass, _active: activeClass, iconSpacing: domProps.size === 'sm' || domProps.size === 'xs' ? '4px' : '8px' }, domProps), domProps.children));
1084
- });
1085
- Button.displayName = 'Button';
1050
+ const SvgMessageEllipses = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1051
+ React__namespace.createElement("path", { d: "M18.4 5H5.6c-.88 0-1.593.727-1.593 1.614L4 19.191c0 .718.862 1.08 1.366.571l1.833-1.85h11.2c.881 0 1.601-.726 1.601-1.614V6.614C20 5.726 19.28 5 18.4 5Zm-8.8 6.456a.805.805 0 0 1-.8.808.804.804 0 0 1-.8-.808c0-.446.358-.807.8-.807.441 0 .8.361.8.807Zm3.2 0a.805.805 0 0 1-.8.808.804.804 0 0 1-.8-.808c0-.446.358-.807.8-.807.441 0 .8.361.8.807Zm3.2 0a.805.805 0 0 1-.8.808.804.804 0 0 1-.8-.808c0-.446.358-.807.8-.807.441 0 .8.361.8.807Z", fill: color })));
1052
+ const ForwardRef$W = React.forwardRef(SvgMessageEllipses);
1086
1053
 
1087
- var coreColors = {
1088
- comet: {
1089
- 50: '#F0F1F5',
1090
- 100: '#D5D7E2',
1091
- 200: '#BABECF',
1092
- 300: '#9FA5BC',
1093
- 400: '#838BA9',
1094
- 500: '#687297',
1095
- 600: '#575D7C',
1096
- 700: '#3F445A',
1097
- 800: '#2A2D3C',
1098
- 900: '#15171E',
1099
- },
1100
- teal: {
1101
- 50: '#F7FAFC',
1102
- 100: '#EBF9FB',
1103
- 200: '#DCF6FB',
1104
- 300: '#AFE1EC',
1105
- 400: '#78CBDC',
1106
- 500: '#39ADC3',
1107
- 600: '#3CA0B4',
1108
- 700: '#2E8C9E',
1109
- 800: '#236976',
1110
- 900: '#17464F',
1111
- },
1112
- blue: {
1113
- 50: '#E7E9FE',
1114
- 100: '#BBC2FB',
1115
- 200: '#909AF9',
1116
- 300: '#6473F7',
1117
- 400: '#384BF5',
1118
- 500: '#0D24F2',
1119
- 600: '#0A1DC2',
1120
- 700: '#000B8E',
1121
- 800: '#050E5F',
1122
- 900: '#030730',
1123
- },
1124
- purple: {
1125
- 50: '#F3EBFA',
1126
- 100: '#DDC6F0',
1127
- 200: '#D1AEEF',
1128
- 300: '#BC8AE7',
1129
- 400: '#AA6AE0',
1130
- 500: '#9046CF',
1131
- 600: '#6B2AA2',
1132
- 700: '#502079',
1133
- 800: '#351551',
1134
- 900: '#1B0B28',
1135
- },
1136
- red: {
1137
- 50: '#FFF5F5',
1138
- 100: '#FED7D7',
1139
- 200: '#FEB2B2',
1140
- 300: '#FC8181',
1141
- 400: '#F56565',
1142
- 500: '#EC493F',
1143
- 600: '#C53030',
1144
- 700: '#9B2C2C',
1145
- 800: '#822727',
1146
- 900: '#63171B',
1147
- },
1148
- orange: {
1149
- 50: '#FFFAF0',
1150
- 100: '#FEEBC8',
1151
- 200: '#FBD38D',
1152
- 300: '#F6AD55',
1153
- 400: '#ED8936',
1154
- 500: '#DD6B20',
1155
- 600: '#C05621',
1156
- 700: '#9C4221',
1157
- 800: '#7B341E',
1158
- 900: '#652B19',
1159
- },
1160
- yellow: {
1161
- 50: '#FFFFF0',
1162
- 100: '#FEFCBF',
1163
- 200: '#FAF089',
1164
- 300: '#F6E05E',
1165
- 400: '#ECC94B',
1166
- 500: '#D69E2E',
1167
- 600: '#B7791F',
1168
- 700: '#975A16',
1169
- 800: '#744210',
1170
- 900: '#5F370E',
1171
- },
1172
- green: {
1173
- 50: '#F0FFF4',
1174
- 100: '#C6F6D5',
1175
- 200: '#9AE6B4',
1176
- 300: '#68D391',
1177
- 400: '#48BB78',
1178
- 500: '#38A169',
1179
- 600: '#25855A',
1180
- 700: '#276749',
1181
- 800: '#22543D',
1182
- 900: '#1C4532',
1183
- },
1184
- gray: {
1185
- 50: '#F9F9FA',
1186
- 100: '#EBEEEF',
1187
- 200: '#DDE2E3',
1188
- 300: '#CDD4D6',
1189
- 400: '#BCC5C8',
1190
- 500: '#A9B5B8',
1191
- 600: '#94A2A6',
1192
- 700: '#7A8C90',
1193
- 800: '#5B7074',
1194
- 900: '#354144',
1195
- },
1196
- transparent: 'transparent',
1197
- current: 'currentColor',
1198
- black: '#000000',
1199
- white: '#FFFFFF',
1200
- whiteAlpha: {
1201
- 50: 'rgba(255, 255, 255, 0.04)',
1202
- 100: 'rgba(255, 255, 255, 0.06)',
1203
- 200: 'rgba(255, 255, 255, 0.08)',
1204
- 300: 'rgba(255, 255, 255, 0.16)',
1205
- 400: 'rgba(255, 255, 255, 0.24)',
1206
- 500: 'rgba(255, 255, 255, 0.36)',
1207
- 600: 'rgba(255, 255, 255, 0.48)',
1208
- 700: 'rgba(255, 255, 255, 0.64)',
1209
- 800: 'rgba(255, 255, 255, 0.80)',
1210
- 900: 'rgba(255, 255, 255, 0.92)',
1211
- },
1212
- blackAlpha: {
1213
- 50: 'rgba(0, 0, 0, 0.04)',
1214
- 100: 'rgba(0, 0, 0, 0.06)',
1215
- 200: 'rgba(0, 0, 0, 0.08)',
1216
- 300: 'rgba(0, 0, 0, 0.16)',
1217
- 400: 'rgba(0, 0, 0, 0.24)',
1218
- 500: 'rgba(0, 0, 0, 0.36)',
1219
- 600: 'rgba(0, 0, 0, 0.48)',
1220
- 700: 'rgba(0, 0, 0, 0.64)',
1221
- 800: 'rgba(0, 0, 0, 0.80)',
1222
- 900: 'rgba(0, 0, 0, 0.92)',
1223
- },
1224
- };
1225
- var semanticColors = {
1226
- background: {
1227
- light: coreColors.white,
1228
- grayLight: coreColors.gray[50],
1229
- grayDark: coreColors.gray[300],
1230
- brand: coreColors.teal[600],
1231
- tealLight: coreColors.teal[50],
1232
- dark: coreColors.blue[800],
1233
- table: coreColors.comet[50],
1234
- hover: coreColors.teal[100],
1235
- info: coreColors.teal[200],
1236
- error: coreColors.red[100],
1237
- warning: coreColors.orange[100],
1238
- success: coreColors.green[100],
1239
- overlay: coreColors.blackAlpha[300],
1240
- },
1241
- border: {
1242
- light: {
1243
- default: coreColors.gray[200],
1244
- focus: coreColors.teal[600],
1245
- info: coreColors.teal[600],
1246
- error: coreColors.red[500],
1247
- warning: coreColors.orange[200],
1248
- success: coreColors.green[200],
1249
- heavy: coreColors.comet[700],
1250
- },
1251
- dark: {
1252
- default: coreColors.comet[600],
1253
- heavy: coreColors.white,
1254
- },
1255
- },
1256
- divider: {
1257
- light: {
1258
- default: coreColors.gray[200],
1259
- },
1260
- dark: {
1261
- default: coreColors.comet[600],
1262
- },
1263
- },
1264
- status: {
1265
- open: coreColors.blue[300],
1266
- confirmed: coreColors.teal[500],
1267
- success: coreColors.green[400],
1268
- warning: coreColors.yellow[400],
1269
- action: coreColors.orange[400],
1270
- negative: coreColors.red[300],
1271
- error: coreColors.red[500],
1272
- archived: coreColors.gray[800],
1273
- closed: coreColors.gray[900],
1274
- },
1275
- general: {
1276
- brand: coreColors.teal[600],
1277
- error: coreColors.red[500],
1278
- },
1279
- };
1280
- var adaptiveColors = {
1281
- icon: {
1282
- light: {
1283
- currentColor: 'currentColor',
1284
- default: coreColors.comet[700],
1285
- subtle: coreColors.gray[800],
1286
- inactive: coreColors.gray[700],
1287
- active: coreColors.teal[600],
1288
- success: coreColors.green[600],
1289
- warning: coreColors.yellow[600],
1290
- error: coreColors.red[500],
1291
- },
1292
- dark: {
1293
- currentColor: 'currentColor',
1294
- default: coreColors.white,
1295
- subtle: coreColors.gray[200],
1296
- inactive: coreColors.gray[400],
1297
- active: coreColors.teal[400],
1298
- success: coreColors.green[400],
1299
- warning: coreColors.yellow[300],
1300
- error: coreColors.red[300],
1301
- },
1302
- },
1303
- text: {
1304
- light: {
1305
- default: coreColors.comet[700],
1306
- headline: coreColors.blue[800],
1307
- subtle: coreColors.gray[800],
1308
- link: coreColors.teal[600],
1309
- success: coreColors.green[600],
1310
- warning: coreColors.yellow[600],
1311
- error: coreColors.red[500],
1312
- placeholder: coreColors.blackAlpha[500],
1313
- },
1314
- dark: {
1315
- default: coreColors.white,
1316
- headline: coreColors.white,
1317
- subtle: coreColors.comet[300],
1318
- link: coreColors.teal[400],
1319
- success: coreColors.green[400],
1320
- warning: coreColors.yellow[300],
1321
- error: coreColors.red[300],
1322
- placeholder: coreColors.whiteAlpha[600],
1323
- },
1324
- },
1054
+ const SvgMessageGearOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1055
+ React__namespace.createElement("path", { d: "M4.239 3c-.957 0-1.732.771-1.732 1.714L2.5 14.998c0 .947.779 1.716 1.74 1.716h1.74v3.429l3.481-3.429h1.74c0-.595.093-1.17.257-1.714H4.24L4.24 4.714h13.925v6.069c.616.087 1.2.264 1.741.517V4.714c0-.943-.783-1.714-1.74-1.714H4.238Zm12.24 9.429a.22.22 0 0 0-.218.192l-.102.867a3.465 3.465 0 0 0-1.133.645l-.816-.348a.22.22 0 0 0-.277.092l-.816 1.39a.215.215 0 0 0 .06.282l.702.512c-.04.213-.066.43-.066.653 0 .223.024.44.066.652l-.7.514a.215.215 0 0 0-.06.282l.814 1.39a.222.222 0 0 0 .28.09l.813-.346c.33.28.711.5 1.133.644l.102.867c.012.111.107.193.219.193h1.628a.22.22 0 0 0 .22-.192l.102-.868a3.466 3.466 0 0 0 1.132-.644l.816.348a.221.221 0 0 0 .277-.092l.816-1.39a.215.215 0 0 0-.06-.282l-.702-.514c.042-.212.066-.429.066-.652 0-.223-.024-.44-.066-.65l.7-.515a.215.215 0 0 0 .06-.283l-.814-1.39a.222.222 0 0 0-.28-.09l-.813.347c-.33-.281-.711-.5-1.132-.645l-.102-.867a.218.218 0 0 0-.22-.192H16.48Zm.815 2.785c.84 0 1.523.671 1.523 1.5 0 .828-.682 1.5-1.523 1.5-.84 0-1.523-.672-1.523-1.5 0-.829.682-1.5 1.523-1.5Z", fill: color })));
1056
+ const ForwardRef$V = React.forwardRef(SvgMessageGearOutlined);
1057
+
1058
+ const SvgMessageGear = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1059
+ React__namespace.createElement("path", { d: "M4.647 4c-.907 0-1.64.729-1.64 1.619L3 15.332c0 .894.738 1.62 1.65 1.62h1.647v3.238l3.298-3.238h1.649a5.5 5.5 0 0 1 .06-.81h.006c.01-.073.028-.144.042-.217.028-.15.061-.298.101-.443.66-2.415 2.894-4.196 5.562-4.196.28 0 .556.021.825.06v.005a5.791 5.791 0 0 1 1.649.488V5.62c0-.89-.742-1.619-1.65-1.619H4.648Zm11.597 8.905a.208.208 0 0 0-.208.182l-.096.819c-.4.136-.76.342-1.073.608l-.773-.329a.21.21 0 0 0-.262.087l-.773 1.313a.203.203 0 0 0 .056.267l.665.484c-.039.2-.063.406-.063.616 0 .21.024.415.063.615l-.663.486a.203.203 0 0 0-.057.267l.772 1.312a.21.21 0 0 0 .264.086l.771-.328c.313.266.674.473 1.073.61l.096.818a.206.206 0 0 0 .208.182h1.543a.208.208 0 0 0 .207-.182l.097-.819c.4-.136.76-.342 1.073-.609l.773.33a.21.21 0 0 0 .262-.088l.773-1.312a.203.203 0 0 0-.056-.267l-.665-.486c.04-.2.063-.404.063-.615 0-.21-.024-.415-.063-.615l.663-.485a.203.203 0 0 0 .057-.267l-.772-1.313a.21.21 0 0 0-.264-.085l-.771.327a3.293 3.293 0 0 0-1.073-.608l-.097-.82a.207.207 0 0 0-.207-.181h-1.543Zm.771 2.63c.797 0 1.443.635 1.443 1.417s-.646 1.417-1.443 1.417c-.796 0-1.443-.635-1.443-1.417s.647-1.416 1.443-1.416Z", fill: color })));
1060
+ const ForwardRef$U = React.forwardRef(SvgMessageGear);
1061
+
1062
+ const SvgMessageLink = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1063
+ React__namespace.createElement("path", { d: "M3.748 4c-.963 0-1.741.787-1.741 1.75L2 16.248C2 17.215 2.783 18 3.75 18h1.748v3.5l3.5-3.5h1.591c-.337-.321-.414-.504-.543-.811l-.012-.029c-.141-.343-.175-.566-.223-.91H3.75l-.002-10.5h14v5.947h1.75V5.75c0-.963-.788-1.75-1.75-1.75h-14Z", fill: color }),
1064
+ React__namespace.createElement("path", { d: "M13.532 12.55a2.985 2.985 0 0 0 0 5.968h2.427v-1.513h-2.427a1.47 1.47 0 1 1 0-2.941h2.427V12.55h-2.427ZM20.214 12.55h-2.426v1.514h2.427a1.47 1.47 0 1 1 0 2.94h-2.428v1.514h2.427a2.985 2.985 0 0 0 0-5.968Z", fill: color }),
1065
+ React__namespace.createElement("path", { d: "M19.856 14.777h-5.968v1.514h5.968v-1.514Z", fill: color })));
1066
+ const ForwardRef$T = React.forwardRef(SvgMessageLink);
1067
+
1068
+ const SvgMessage = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1069
+ React__namespace.createElement("path", { d: "M18.4 5H5.6c-.423.001-.83.171-1.13.469-.298.3-.468.708-.47 1.131V21l3.2-3.2h11.2c.423-.001.83-.171 1.13-.469.3-.3.467-.708.47-1.131V6.6A1.607 1.607 0 0 0 18.4 5Z", fill: color })));
1070
+ const ForwardRef$S = React.forwardRef(SvgMessage);
1071
+
1072
+ const SvgMessages = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1073
+ React__namespace.createElement("path", { d: "M8 4c-.443 0-.8.366-.8.817 0 .45.357.817.8.817h10.4v7.351c0 .452.358.817.8.817.441 0 .8-.365.8-.817V5.634C20 4.73 19.284 4 18.4 4H8ZM5.6 7.267c-.883 0-1.595.736-1.595 1.634L4 19.181c0 .727.861 1.093 1.366.578l1.833-1.872h8c.881 0 1.6-.736 1.6-1.634V8.9c0-.898-.719-1.634-1.6-1.634H5.6Z", fill: color })));
1074
+ const ForwardRef$R = React.forwardRef(SvgMessages);
1075
+
1076
+ const SvgMicrophoneMute = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1077
+ React__namespace.createElement("path", { d: "M11.625 1.5a3.511 3.511 0 0 0-3.5 3.5v6.125c0 1.924 1.576 3.5 3.5 3.5s3.5-1.576 3.5-3.5V5c0-1.924-1.576-3.5-3.5-3.5Z", fill: color }),
1078
+ React__namespace.createElement("path", { d: "M3.75 11.125c0 4.03 3.083 7.376 7 7.82V22.5h1.75v-3.555a7.864 7.864 0 0 0 3.964-1.629l-1.089-1.191c-1.05.842-2.305 1.125-3.75 1.125-3.374 0-6.125-2.752-6.125-6.125H3.75ZM18.525 16.875 16.5 14.85l1.35-1.35 2.025 2.025L21.9 13.5l1.35 1.35-2.025 2.025L23.25 18.9l-1.35 1.35-2.025-2.025-2.025 2.025-1.35-1.35 2.025-2.025Z", fill: color })));
1079
+ const ForwardRef$Q = React.forwardRef(SvgMicrophoneMute);
1080
+
1081
+ const SvgMicrophone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1082
+ React__namespace.createElement("path", { d: "M11.925 1.5a3.511 3.511 0 0 0-3.5 3.5v6.125c0 1.924 1.576 3.5 3.5 3.5s3.5-1.576 3.5-3.5V5c0-1.924-1.576-3.5-3.5-3.5ZM4.05 11.125c0 4.03 3.083 7.376 7 7.82V22.5h1.75v-3.555c3.917-.444 7-3.79 7-7.82h-1.75c0 3.373-2.751 6.125-6.125 6.125-3.373 0-6.125-2.752-6.125-6.125H4.05Z", fill: color })));
1083
+ const ForwardRef$P = React.forwardRef(SvgMicrophone);
1084
+
1085
+ const SvgMinus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1086
+ React__namespace.createElement("path", { d: "M3 12a1 1 0 0 1 1-1h16a1 1 0 0 1 0 2H4a1 1 0 0 1-1-1Z", fill: color })));
1087
+ const ForwardRef$O = React.forwardRef(SvgMinus);
1088
+
1089
+ const SvgMoveLeft = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1090
+ React__namespace.createElement("path", { d: "M12.97 4.97a.75.75 0 1 1 1.06 1.06L9.06 11h12.19a.75.75 0 1 1 0 1.5H9.06l4.97 4.97a.75.75 0 1 1-1.06 1.06l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25ZM3.5 4.75a.75.75 0 0 0-1.5 0v14.5a.75.75 0 1 0 1.5 0V4.75Z", fill: color })));
1091
+ const ForwardRef$N = React.forwardRef(SvgMoveLeft);
1092
+
1093
+ const SvgMoveRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1094
+ React__namespace.createElement("path", { d: "M11.03 19.03a.75.75 0 1 1-1.06-1.06L14.94 13H2.75a.75.75 0 1 1 0-1.5h12.19L9.97 6.53a.75.75 0 1 1 1.06-1.06l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25Zm9.47.22a.75.75 0 1 0 1.5 0V4.75a.75.75 0 1 0-1.5 0v14.5Z", fill: color })));
1095
+ const ForwardRef$M = React.forwardRef(SvgMoveRight);
1096
+
1097
+ const SvgMultipleChoice = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1098
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 7.324a2.075 2.075 0 1 1 4.149 0 2.075 2.075 0 0 1-4.149 0Zm5.532.692V6.633h6.915v1.383h-6.915Zm-3.457 2.075A2.085 2.085 0 0 0 6 12.165c0 1.138.937 2.075 2.075 2.075a2.085 2.085 0 0 0 2.074-2.075 2.085 2.085 0 0 0-2.074-2.074Zm.989 2.149a.943.943 0 0 0-.958-.958.943.943 0 0 0-.957.957c0 .54.417.958.957.958s.958-.417.958-.957Zm2.468-.767v1.383h6.915v-1.383h-6.915ZM6 17.006c0-1.138.937-2.075 2.075-2.075 1.137 0 2.074.937 2.074 2.075a2.085 2.085 0 0 1-2.074 2.074A2.085 2.085 0 0 1 6 17.006Zm2.106-.937c.54 0 .958.418.958.958s-.418.957-.958.957a.943.943 0 0 1-.957-.957c0-.54.417-.958.957-.958Zm3.426 1.628v-1.383h6.915v1.383h-6.915Z", fill: color })));
1099
+ const ForwardRef$L = React.forwardRef(SvgMultipleChoice);
1100
+
1101
+ const SvgNotification = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1102
+ React__namespace.createElement("path", { d: "M17.217 4a2.783 2.783 0 1 0 .001 5.567 2.783 2.783 0 0 0 0-5.567Zm-11.826.696A1.39 1.39 0 0 0 4 6.086V18.61C4 19.377 4.623 20 5.39 20h12.523c.77 0 1.391-.623 1.391-1.39v-8.216a4.163 4.163 0 0 1-2.087.563 4.174 4.174 0 0 1-4.174-4.174c0-.761.207-1.473.563-2.087H5.39Z", fill: color })));
1103
+ const ForwardRef$K = React.forwardRef(SvgNotification);
1104
+
1105
+ const SvgPaperAirplane2 = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1106
+ React__namespace.createElement("path", { d: "M20.861 3.075a.355.355 0 0 0-.388-.032L3.186 12.406a.354.354 0 0 0-.184.346.355.355 0 0 0 .243.307l4.914 1.604-.475 4.864a.354.354 0 0 0 .212.362.355.355 0 0 0 .41-.09l3.099-3.502 4.666 4.6a.359.359 0 0 0 .348.089.355.355 0 0 0 .249-.256L20.99 3.444a.356.356 0 0 0-.128-.369ZM8.883 14.597l7.027-5.682-4.788 6.63L8.5 18.503l.382-3.906Z", fill: color })));
1107
+ const ForwardRef$J = React.forwardRef(SvgPaperAirplane2);
1108
+
1109
+ const SvgPaperAirplaneRight = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1110
+ React__namespace.createElement("path", { d: "M3.9 4c-.497 0-.9.398-.9.889v4.975c0 .456.35.838.81.883L16.5 12 3.81 13.254a.892.892 0 0 0-.81.882v4.974c0 .492.403.89.9.89a.91.91 0 0 0 .485-.14h.002l16.019-7.022-.002-.003A.89.89 0 0 0 21 12a.889.889 0 0 0-.596-.835l.002-.003L4.375 4.135A.918.918 0 0 0 3.9 4Z", fill: color })));
1111
+ const ForwardRef$I = React.forwardRef(SvgPaperAirplaneRight);
1112
+
1113
+ const SvgPaperAirplane = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1114
+ React__namespace.createElement("path", { d: "M19.91 4.064a.275.275 0 0 0-.29-.04l-3.33 1.483-14.134 6.306a.265.265 0 0 0-.113.094.251.251 0 0 0-.003.277.265.265 0 0 0 .111.096l4.942 2.33a.278.278 0 0 0 .277-.026l4.805-3.449-3.77 3.729a.256.256 0 0 0-.075.2l.375 4.697c.004.051.024.1.057.14a.27.27 0 0 0 .127.086.28.28 0 0 0 .288-.077l2.623-2.919 3.243 1.488a.276.276 0 0 0 .316-.06.256.256 0 0 0 .056-.096l3.185-9.74 1.389-4.252a.248.248 0 0 0-.08-.267Z", fill: color })));
1115
+ const ForwardRef$H = React.forwardRef(SvgPaperAirplane);
1116
+
1117
+ const SvgPaperPen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1118
+ React__namespace.createElement("path", { d: "M6.6 3C5.72 3 5 3.777 5 4.727v13.819c0 .95.72 1.727 1.6 1.727h8.937L12.2 16.67v-4.167h3.863l1.737 1.875V8.184L13 3H6.6Zm7.2 11.228v1.727l4.118 4.444 1.6-1.726-4.118-4.445h-1.6Zm6.283 5.055-1.6 1.728.8.863a.38.38 0 0 0 .566 0l1.034-1.116a.459.459 0 0 0 0-.612l-.8-.863Z", fill: color })));
1119
+ const ForwardRef$G = React.forwardRef(SvgPaperPen);
1120
+
1121
+ const SvgPaperclip = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1122
+ React__namespace.createElement("path", { d: "M15.182 7.455v9.453c0 1.519-1.026 2.9-2.514 3.204A3.187 3.187 0 0 1 8.818 17V5.739c0-.906.616-1.747 1.51-1.896a1.82 1.82 0 0 1 2.126 1.794v9.544a.456.456 0 0 1-.91 0V7.455a.908.908 0 1 0-1.816 0v7.594c0 1.189.853 2.274 2.035 2.394a2.275 2.275 0 0 0 2.51-2.26V5.798c0-1.898-1.384-3.596-3.273-3.78a3.64 3.64 0 0 0-4 3.619v11.14c0 2.61 1.902 4.945 4.5 5.198A5.006 5.006 0 0 0 17 17V7.455a.91.91 0 1 0-1.818 0Z", fill: color })));
1123
+ const ForwardRef$F = React.forwardRef(SvgPaperclip);
1124
+
1125
+ const SvgPawMagnifyingGlass = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1126
+ React__namespace.createElement("path", { d: "M14.885 14.064c2.052 0 3.728 1.691 3.728 3.763 0 .94-.348 1.799-.915 2.46l.226.228h.689l1.705 1.722.462.465a.767.767 0 0 1 0 1.076.75.75 0 0 1-1.066 0l-.516-.52-1.65-1.667v-.695l-.227-.229a3.688 3.688 0 0 1-2.436.924c-2.053 0-3.729-1.692-3.729-3.764s1.676-3.763 3.729-3.763Zm0 1.075a2.668 2.668 0 0 0-2.664 2.688 2.668 2.668 0 0 0 2.664 2.688 2.667 2.667 0 0 0 2.662-2.688 2.668 2.668 0 0 0-2.662-2.688Zm-3.729-4.735c1.056 0 2.03.986 2.663 2.587.09.23-.215.313-.636.485a5.05 5.05 0 0 0-1.114.622c-.935.698-1.69 2.01-1.785 3.191-.147 1.824.529 2.782.78 3.177-3.143 0-6.251-1.078-6.251-3.058 0-.493.14-1.118 1.147-1.672 1.122-.618 2.06-1.546 2.534-2.745.633-1.6 1.607-2.587 2.662-2.587Zm-6.662-1.83c.816-.036 1.645.65 1.985 1.714.217.68.193 1.387-.068 1.94-.2.428-.533.732-.933.859a1.39 1.39 0 0 1-.412.062c-.796 0-1.588-.68-1.919-1.716-.217-.68-.193-1.387.067-1.94.201-.427.534-.732.934-.858.114-.036.23-.055.346-.06Zm13.323 0c.117.006.233.026.348.06.4.127.733.43.934.859.26.553.284 1.26.067 1.939-.332 1.036-1.124 1.717-1.92 1.717-.137 0-.276-.02-.412-.062-.4-.127-.732-.43-.933-.859-.261-.553-.285-1.261-.067-1.94.34-1.064 1.165-1.75 1.983-1.714ZM8.253 4l.094.002c.286.016.566.133.824.338.527.421.913 1.213 1.037 2.116.21 1.551-.39 2.848-1.395 3.015-.07.012-.14.018-.21.018-.31 0-.617-.115-.897-.338-.527-.421-.915-1.212-1.038-2.115-.211-1.552.389-2.85 1.395-3.017.095-.016.19-.023.284-.017L8.253 4Zm5.711.004c.095-.006.19-.001.286.014 1.006.168 1.605 1.465 1.396 3.018-.123.904-.51 1.695-1.038 2.116-.28.222-.587.337-.897.337-.071 0-.142-.007-.213-.018-1.005-.167-1.604-1.465-1.393-3.017.123-.904.51-1.695 1.037-2.116.257-.205.537-.317.822-.334Z", fill: color })));
1127
+ const ForwardRef$E = React.forwardRef(SvgPawMagnifyingGlass);
1128
+
1129
+ const SvgPawOutlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1130
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.555 4.63c.413-.634 1.096-1.13 1.98-1.13.6 0 1.124.376 1.495.893s.607 1.198.607 1.921c0 .925-.091 1.884-.393 2.657-.15.387-.356.737-.653.994a1.697 1.697 0 0 1-1.124.407c-.835 0-1.457-.667-1.867-1.401-.41-.735-.641-1.577-.641-2.227 0-.705.183-1.48.596-2.114Zm5.488 0c.458-.628 1.178-1.13 2.103-1.13 1.03 0 2.25 1.11 2.25 3.097 0 .975-.223 1.972-.675 2.758-.453.786-1.184 1.379-2.115 1.379-.468 0-.874-.219-1.17-.531-.294-.312-.495-.708-.652-1.13a7.439 7.439 0 0 1-.427-2.408c0-.654.228-1.406.686-2.035Zm-3.509-.407c.288 0 .633.21.911.6.278.388.473.928.473 1.491 0 .875-.095 1.774-.338 2.397-.122.312-.282.547-.46.7a.925.925 0 0 1-.653.238c-.426 0-.889-.417-1.237-1.04-.349-.623-.551-1.41-.551-1.865 0-.572.167-1.232.483-1.718.316-.486.742-.803 1.372-.803Zm7.142 2.374c0-1.684-1.087-2.374-1.53-2.374-.675 0-1.16.345-1.518.837-.359.492-.551 1.13-.551 1.605 0 .516.112 1.421.382 2.147.135.364.31.687.506.893.196.207.386.306.641.306.637 0 1.126-.376 1.496-1.018.37-.641.574-1.534.574-2.396ZM5.418 9.287c-.657 0-1.223.47-1.664 1.108A4.273 4.273 0 0 0 3 12.78c0 .623.226 1.327.619 1.921.392.595.99 1.097 1.743 1.097.745 0 1.337-.528 1.72-1.22.384-.693.597-1.589.597-2.51 0-.714-.268-1.386-.675-1.9-.408-.512-.97-.88-1.586-.88Zm12.506.543c.39-.32.83-.522 1.271-.543.148-.007.292.012.439.045.649.154 1.048.762 1.237 1.447a3.702 3.702 0 0 1-.09 2.227c-.32.853-.772 1.588-1.327 2.102-.556.515-1.259.813-1.969.645a1.966 1.966 0 0 1-1.45-1.436c-.193-.728-.056-1.625.46-2.6.437-.82.91-1.46 1.43-1.887Zm-12.506.18c.308 0 .701.221 1.012.611.31.39.529.924.529 1.447 0 .808-.198 1.602-.506 2.159-.308.556-.684.848-1.091.848-.433 0-.837-.299-1.147-.77-.311-.47-.495-1.087-.495-1.525 0-.726.258-1.447.618-1.967s.813-.802 1.08-.802Zm14.047.023a.865.865 0 0 0-.247-.022c-.255.012-.526.132-.833.384-.408.335-.842.897-1.248 1.662-.456.857-.537 1.58-.405 2.08.132.498.451.793.922.904.436.103.863-.056 1.305-.464.441-.408.857-1.061 1.147-1.831.208-.558.214-1.24.067-1.775-.146-.535-.44-.874-.708-.938Zm-7.749 2.51c-.782 0-1.387.415-1.9.938-.26.264-.506.557-.758.86-.248.295-.502.599-.783.892-.338.352-.674.618-.99.868-.206.164-.403.32-.585.488-.461.425-.82.986-.82 1.797 0 .465.16.984.539 1.402.38.418.984.712 1.766.712.815 0 1.427-.182 1.979-.35.553-.168 1.04-.317 1.676-.317.65 0 1.244.115 1.841.23.603.116 1.21.234 1.881.234.789 0 1.422-.143 1.879-.498.456-.354.674-.928.674-1.582 0-.44-.187-.803-.45-1.063-.262-.26-.58-.433-.91-.588l-.296-.135c-.56-.254-1.105-.501-1.425-.893a12.897 12.897 0 0 1-.727-1.015c-.207-.31-.41-.614-.634-.895-.471-.592-1.088-1.085-1.957-1.085Zm1.395 1.537c-.41-.516-.776-.814-1.395-.814-.537 0-.94.261-1.394.723-.219.222-.439.488-.677.775-.257.31-.535.646-.853.977-.396.413-.783.719-1.112.98a8.96 8.96 0 0 0-.496.41c-.388.358-.585.632-.585 1.255 0 .287.114.645.36.916s.616.475 1.226.475c.711 0 1.228-.15 1.777-.317l.05-.015c.534-.163 1.1-.335 1.828-.335.777 0 1.449.13 2.081.252.563.108 1.095.211 1.641.211.7 0 1.173-.143 1.44-.35.267-.208.393-.5.393-1.006 0-.26-.08-.4-.236-.554-.156-.154-.403-.298-.708-.44-.108-.051-.222-.101-.34-.152-.551-.24-1.187-.517-1.64-1.07-.312-.38-.57-.772-.809-1.133-.19-.29-.369-.559-.551-.788Z", fill: color })));
1131
+ const ForwardRef$D = React.forwardRef(SvgPawOutlined);
1132
+
1133
+ const SvgPaw = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1134
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.536 4C7.861 4 6.96 5.573 6.96 7.053c0 1.173.977 3.415 2.509 3.415.991 0 2.17-.663 2.17-3.82C11.64 5.263 10.637 4 9.537 4Zm5.614 0c-1.822 0-2.79 1.729-2.79 2.979 0 .993.413 3.83 2.25 3.83 1.811 0 2.79-2.008 2.79-3.894C17.4 5.01 16.092 4 15.15 4ZM3 12.734c0-1.626 1.218-3.287 2.419-3.287 1.139 0 2.261 1.294 2.261 2.617 0 1.723-.865 3.51-2.318 3.51-1.44 0-2.362-1.68-2.362-2.84Zm16.234-3.287c-.938.018-1.899.808-2.734 2.287-.582 1.03-.699 2.012-.337 2.766.253.528.724.899 1.327 1.032.136.03.277.043.416.043 1.127 0 2.233-1.006 2.88-2.628.333-.84.272-1.907-.146-2.65-.248-.44-.592-.716-1.001-.808a1.74 1.74 0 0 0-.405-.042ZM9.075 14.18c.765-.86 1.492-1.67 2.644-1.67 1.27 0 1.89.88 2.548 1.816l.017.024c.23.329.478.661.753.979.334.383.872.61 1.396.83l.005.002c.79.33 1.682.703 1.682 1.69 0 1.292-.86 1.956-2.554 1.956-.6 0-1.168-.102-1.716-.202l-.117-.02c-.598-.109-1.211-.214-1.89-.214-.623 0-1.113.139-1.632.288-.585.167-1.19.34-2.025.34-1.513 0-2.306-1-2.306-1.99 0-1.094.634-1.575 1.373-2.127l.078-.059c.293-.218.624-.466.945-.781.273-.267.515-.54.751-.808l.048-.054Z", fill: color })));
1135
+ const ForwardRef$C = React.forwardRef(SvgPaw);
1136
+
1137
+ const SvgPaw2 = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1138
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.536 4C7.861 4 6.96 5.573 6.96 7.053c0 1.173.977 3.415 2.509 3.415.991 0 2.17-.663 2.17-3.82C11.64 5.263 10.637 4 9.537 4Zm5.614 0c-1.822 0-2.79 1.729-2.79 2.979 0 .993.413 3.83 2.25 3.83 1.811 0 2.79-2.008 2.79-3.894C17.4 5.01 16.092 4 15.15 4ZM3 12.734c0-1.626 1.218-3.287 2.419-3.287 1.139 0 2.261 1.294 2.261 2.617 0 1.723-.865 3.51-2.318 3.51-1.44 0-2.362-1.68-2.362-2.84Zm16.234-3.287c-.938.018-1.899.808-2.734 2.287-.582 1.03-.699 2.012-.337 2.766.253.528.724.899 1.327 1.032.136.03.277.043.416.043 1.127 0 2.233-1.006 2.88-2.628.333-.84.272-1.907-.146-2.65-.248-.44-.592-.716-1.001-.808a1.74 1.74 0 0 0-.405-.042ZM9.075 14.18c.765-.86 1.492-1.67 2.644-1.67 1.27 0 1.89.88 2.548 1.816l.017.024c.23.329.478.661.753.979.334.383.872.61 1.396.83l.005.002c.79.33 1.682.703 1.682 1.69 0 1.292-.86 1.956-2.554 1.956-.6 0-1.168-.102-1.716-.202l-.117-.02c-.598-.109-1.211-.214-1.89-.214-.623 0-1.113.139-1.632.288-.585.167-1.19.34-2.025.34-1.513 0-2.306-1-2.306-1.99 0-1.094.634-1.575 1.373-2.127l.078-.059c.293-.218.624-.466.945-.781.273-.267.515-.54.751-.808l.048-.054Z", fill: color })));
1139
+ const ForwardRef$B = React.forwardRef(SvgPaw2);
1140
+
1141
+ const SvgPdfLogo = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1142
+ React__namespace.createElement("path", { d: "M6 2c-1.094 0-2 .906-2 2v16c0 1.094.906 2 2 2h12c1.094 0 2-.906 2-2V8l-6-6H6Zm0 2h7v5h5v11H6V4Zm5.832 5c-.55 0-.962.373-1.043 1.023-.08.65.242 1.784.803 2.838-.241.73-.482 1.379-.803 2.028-1.043.324-2.005.81-2.406 1.297-.641.729-.32 1.215-.16 1.459.16.242.401.355.722.355.161 0 .322-.032.483-.113.642-.243 1.282-1.217 1.924-2.352.56-.162 1.122-.323 1.683-.404.561.648 1.125 1.055 1.606 1.217.56.162 1.042-.083 1.283-.65.16-.488.079-.892-.322-1.136-.482-.323-1.284-.325-2.247-.244-.32-.486-.64-.972-.88-1.459.4-1.216.56-2.269.4-2.918-.161-.568-.493-.941-1.043-.941Z", fill: color })));
1143
+ const ForwardRef$A = React.forwardRef(SvgPdfLogo);
1144
+
1145
+ const SvgPenSquare = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1146
+ React__namespace.createElement("path", { d: "M12 3c.621 0 1.125.504 1.125 1.125s-.504.947-1.125.947H5V19h14v-7c0-.621.254-1.125.875-1.125S21 11.379 21 12v6.75A2.249 2.249 0 0 1 18.75 21H5.25A2.249 2.249 0 0 1 3 18.75V5.25A2.249 2.249 0 0 1 5.25 3H12ZM18.141 3.49a1.678 1.678 0 0 1 2.369-.001 1.676 1.676 0 0 1 0 2.37l-.695.694-2.368-2.369.694-.693Z", fill: color }),
1147
+ React__namespace.createElement("path", { d: "m9.75 11.881 6.81-6.809 2.368 2.369-6.81 6.809H9.75v-2.369Z", fill: color })));
1148
+ const ForwardRef$z = React.forwardRef(SvgPenSquare);
1149
+
1150
+ const SvgPen = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1151
+ React__namespace.createElement("path", { d: "M16.916 5c-.534 0-1.066.204-1.473.61l-.865.864 2.948 2.947.864-.864A2.086 2.086 0 0 0 16.916 5Zm-3.442 2.579L5 16.052V19h2.948l8.473-8.474-2.947-2.947Z", fill: color })));
1152
+ const ForwardRef$y = React.forwardRef(SvgPen);
1153
+
1154
+ const SvgPersonAdd = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1155
+ React__namespace.createElement("path", { d: "M13.855 13.064v.79c-1.016.79-2.371 2.372-1.355 6.775L2 20.968c0-3.412 2.404-4.119 4.433-4.715 1.26-.37 2.377-.7 2.68-1.608v-1.58c-.356-.177-1.373-1.388-1.48-2.334-.28-.021-.719-.278-.848-1.292-.07-.544.207-.85.374-.947 0 0-.417-.877-.417-1.75C6.742 4.151 8.132 2 11.484 2c1.809 0 2.37 1.186 2.37 1.186 1.619 0 2.372 1.637 2.372 3.556 0 .957-.418 1.75-.418 1.75.168.096.445.402.375.947-.13 1.014-.569 1.27-.849 1.292-.107.946-1.124 2.157-1.48 2.333ZM20.26 17.415h-2.108v-2.108a.301.301 0 0 0-.602 0v2.108h-2.107a.301.301 0 0 0 0 .602h2.107v2.108a.3.3 0 1 0 .602 0v-2.108h2.108a.301.301 0 0 0 0-.602Z", fill: color }),
1156
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.555 17.777a5.227 5.227 0 0 1 5.223-5.222A5.227 5.227 0 0 1 23 17.777 5.227 5.227 0 0 1 17.778 23a5.227 5.227 0 0 1-5.223-5.223Zm5.223-4.545a4.55 4.55 0 0 0-4.545 4.545 4.55 4.55 0 0 0 4.545 4.546 4.55 4.55 0 0 0 4.545-4.546 4.55 4.55 0 0 0-4.545-4.545Z", fill: color })));
1157
+ const ForwardRef$x = React.forwardRef(SvgPersonAdd);
1158
+
1159
+ const SvgPerson = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1160
+ React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 8-8 8 8 0 0 0-8-8Zm0 2.2a2.6 2.6 0 1 1 0 5.2 2.6 2.6 0 0 1 0-5.2Zm0 12.2a6.38 6.38 0 0 1-4.87-2.25.812.812 0 0 1 .138-1.176C8.482 14.061 10.694 13.6 12 13.6c1.307 0 3.518.46 4.732 1.373.376.283.444.82.14 1.177A6.386 6.386 0 0 1 12 18.4Z", fill: color })));
1161
+ const ForwardRef$w = React.forwardRef(SvgPerson);
1162
+
1163
+ const SvgPhoneButtons = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1164
+ React__namespace.createElement("path", { d: "M12 3c-4.192 0-7.118.59-8.694 1.753-.542.399-.89.745-1.053 1.044-.308.515-.334 1.412-.081 2.82.153.85.84 1.284 1.39 1.195.208-.033.95-.233 2.06-.534.596-.16 1.158-.312 1.317-.348.43-.095.797-.505.98-1.096.1-.32.337-1.186.445-1.59.405-.157 1.557-.517 3.633-.517h.005c2.078 0 3.23.361 3.634.518.109.404.343 1.269.443 1.588.185.592.552 1.002.983 1.097.16.036.725.19 1.324.351 1.105.3 1.845.499 2.053.532.047.007.094.01.142.01.52 0 1.107-.427 1.247-1.207.252-1.409.227-2.305-.073-2.806-.17-.307-.527-.663-1.061-1.058C19.114 3.59 16.19 3 12 3Zm-5.91 8.636a1.799 1.799 0 0 0-1.817 1.819c0 1.02.798 1.818 1.818 1.818s1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819H6.09Zm5.91 0c-1.02 0-1.818.799-1.818 1.819s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818A1.8 1.8 0 0 0 12 11.636Zm5.909 0c-1.02 0-1.818.799-1.818 1.819s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819Zm-11.82 5.91c-1.02 0-1.817.798-1.817 1.818s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819v.001Zm5.91 0c-1.02 0-1.818.798-1.818 1.818s.799 1.818 1.819 1.818 1.818-.799 1.818-1.818A1.8 1.8 0 0 0 12 17.545l-.001.001Zm5.909 0c-1.02 0-1.818.798-1.818 1.818s.798 1.818 1.818 1.818 1.818-.799 1.818-1.818a1.8 1.8 0 0 0-1.818-1.819v.001Z", fill: color })));
1165
+ const ForwardRef$v = React.forwardRef(SvgPhoneButtons);
1166
+
1167
+ const SvgPhoneDown = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1168
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.542 8.574A14.26 14.26 0 0 1 12 5c3.38 0 6.76 1.191 9.459 3.574.714.631.715 1.75.042 2.422l-1.03 1.03a1.686 1.686 0 0 1-2.239.131l-1.976-1.322a1.674 1.674 0 0 1-.637-1.316l.007-2.074c-1.274-.415-2.292-.628-3.617-.627-1.324 0-2.372.143-3.645.56l-.01 2.072c0 .511-.232.994-.637 1.315l-1.95 1.392a1.686 1.686 0 0 1-2.238-.131l-1.03-1.03c-.673-.673-.672-1.79.043-2.422Zm8.549 3.699a.91.91 0 1 1 1.818 0v3.636h2.074c.413 0 .62.498.329.79l-2.55 2.55a1.014 1.014 0 0 1-1.435 0l-2.55-2.55a.463.463 0 0 1 .329-.79h1.985v-3.636Z", fill: color })));
1169
+ const ForwardRef$u = React.forwardRef(SvgPhoneDown);
1170
+
1171
+ const SvgPhoneRing = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1172
+ React__namespace.createElement("path", { d: "M6.088 2s-.99 0-2.095.55v-.003c-.844.421-1.556 1.036-1.899 1.538a.5.5 0 0 0-.056.483c.067.16.21.268.378.285a.448.448 0 0 0 .417-.213c.163-.24.862-.888 1.55-1.23.918-.457 1.705-.457 1.705-.457a.453.453 0 0 0 .399-.236.502.502 0 0 0 0-.48.453.453 0 0 0-.4-.237Zm9.035.456a26.878 26.878 0 0 0-3.714.233c-1.866.251-3.55.64-5.151 1.19-2.719.929-3.62 2.02-3.96 2.43l-.031.039c-.671.806.182 3.681.19 3.709.202.652.715.98 1.17.98a.886.886 0 0 0 .265-.04c.17-.054.841-.333 1.844-.75.494-.207.93-.39 1.072-.443.387-.15.68-.577.781-1.144.05-.264.325-1.472.502-2.241.464-.196 1.749-.676 3.672-.937 1.923-.26 3.286-.158 3.78-.104.508.895 1.241 2.19 1.275 2.243.245.393.568.624.91.652.155.013.657.08 1.213.153 1.022.134 1.705.221 1.899.227.498.01 1.109-.479 1.153-1.292.002-.03.121-2.976-.727-3.579 0 0-.084-.06-.132-.091-.527-.361-1.872-1.14-5.033-1.22-.302-.01-.626-.015-.978-.015ZM9.28 7.7a.467.467 0 0 0-.455.476V9.4a60.017 60.017 0 0 0-3.752 4.185c-1.505 1.838-1.703 3.123-1.7 4.138.004.892.442 3.754.462 3.875A.458.458 0 0 0 4.28 22h2.272c.25 0 .454-.214.454-.477v-.476h10.904v.476c0 .263.204.477.455.477h2.271c.224 0 .414-.17.448-.402.02-.121.46-2.989.461-3.888.002-1.01-.197-2.29-1.7-4.125A60.029 60.029 0 0 0 16.094 9.4V8.176a.467.467 0 0 0-.454-.476h-1.363a.467.467 0 0 0-.455.476v.954h-2.726v-.954a.467.467 0 0 0-.454-.476H9.279Zm8.63 1.45a.456.456 0 0 0-.43.317.494.494 0 0 0 .141.532c.398.345.962.518 1.626.56.799.051 1.171-.046 1.576-.208a.486.486 0 0 0 .26-.618.448.448 0 0 0-.588-.274c-.377.153-.456.196-1.191.147-.53-.033-.95-.208-1.102-.342a.439.439 0 0 0-.291-.114Zm-9.085 2.84h1.818v.953H8.824v-.953Zm2.726 0h1.818v.953H11.55v-.953Zm2.727 0h1.817v.953h-1.817v-.953Zm-5.453 1.906h1.818v.954H8.824v-.954Zm2.726 0h1.818v.954H11.55v-.954Zm2.727 0h1.817v.954h-1.817v-.954Zm-5.453 1.907h1.818v.954H8.824v-.954Zm2.726 0h1.818v.954H11.55v-.954Zm2.727 0h1.817v.954h-1.817v-.954Z", fill: color })));
1173
+ const ForwardRef$t = React.forwardRef(SvgPhoneRing);
1174
+
1175
+ const SvgPhone = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1176
+ React__namespace.createElement("path", { d: "M7.217 10.925a13.482 13.482 0 0 0 5.858 5.858l1.957-1.956a.86.86 0 0 1 .423-.236.899.899 0 0 1 .482.021 10.03 10.03 0 0 0 3.174.507.888.888 0 0 1 .89.89v3.102a.883.883 0 0 1-.262.628.882.882 0 0 1-.627.261A15.108 15.108 0 0 1 4 4.89c0-.237.093-.463.261-.629A.882.882 0 0 1 4.888 4H8a.888.888 0 0 1 .89.888c-.003 1.079.169 2.15.506 3.173a.887.887 0 0 1-.223.907l-1.956 1.957Z", fill: color })));
1177
+ const ForwardRef$s = React.forwardRef(SvgPhone);
1178
+
1179
+ const SvgPillHand = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1180
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.792 2.25a.468.468 0 0 0-.067.007h-3.233c-2.083 0-3.781 1.708-3.781 3.803 0 2.095 1.698 3.804 3.78 3.804h3.23a.468.468 0 0 0 .153 0h3.234c2.082 0 3.78-1.709 3.78-3.804 0-2.095-1.698-3.803-3.78-3.803h-3.229a.468.468 0 0 0-.087-.007Zm-3.3.957c0 .263.211.476.472.476a.474.474 0 0 0 .473-.476h1.89v5.706h-1.89a.474.474 0 0 0-.473-.476.474.474 0 0 0-.473.476A2.836 2.836 0 0 1 7.659 6.1c.02.246.225.436.47.436a.474.474 0 0 0 .473-.476.474.474 0 0 0-.943-.045 2.836 2.836 0 0 1 2.834-2.808Zm6.616 0h-2.836v5.706h2.836a2.837 2.837 0 0 0 2.835-2.853 2.837 2.837 0 0 0-2.835-2.853Zm-7.562.951a.474.474 0 0 0-.472.476c0 .262.211.475.472.475a.474.474 0 0 0 .473-.475.474.474 0 0 0-.473-.476Zm2.363.476c0-.263.212-.476.473-.476.26 0 .473.213.473.476a.474.474 0 0 1-.473.475.474.474 0 0 1-.473-.475Zm-.945.95a.474.474 0 0 0-.473.476c0 .263.212.476.473.476a.474.474 0 0 0 .473-.476.474.474 0 0 0-.473-.475Zm-1.89 1.903c0-.263.211-.476.472-.476s.473.213.473.476a.474.474 0 0 1-.473.475.474.474 0 0 1-.472-.475Zm3.308-.476a.474.474 0 0 0-.473.476c0 .262.212.475.473.475a.474.474 0 0 0 .473-.475.474.474 0 0 0-.473-.476Zm8.797 5.246a1.786 1.786 0 0 1 1.798.812c.508.809.287 1.888-.495 2.431l-7.437 5.67a2.827 2.827 0 0 1-2.665.416l-5.527-1.972a2.983 2.983 0 0 0-2.943.348l-1.646 1.215a.47.47 0 0 1-.762-.327.477.477 0 0 1 .202-.439l1.647-1.215a3.928 3.928 0 0 1 3.84-.47l5.505 1.964c.602.215 1.269.11 1.777-.278l7.455-5.682a.838.838 0 0 0 .25-1.154.827.827 0 0 0-1.154-.263l-.004.002-5.054 3.134c.124.233.197.497.197.779 0 .913-.746 1.664-1.654 1.664-.13 0-.257-.015-.38-.045-.12-.028-.344-.095-.685-.196l-.2-.06c-.456-.134-1.033-.306-1.6-.476l-2.232-.669a.474.474 0 0 1-.189-.801.47.47 0 0 1 .46-.11 1379.504 1379.504 0 0 0 3.826 1.145c.453.134.827.24.839.242a.704.704 0 0 0 .87-.695.698.698 0 0 0-.35-.61c-.02-.01-.25-.128-.47-.234a32.31 32.31 0 0 0-.572-.271c-.295-.135-.932-.406-1.704-.734a259.15 259.15 0 0 1-3.004-1.294 4.933 4.933 0 0 0-3.903-.038l-3.047 1.277a.47.47 0 0 1-.476-.055.477.477 0 0 1 .112-.822l3.047-1.277a5.875 5.875 0 0 1 4.647.043c.922.407 2 .866 2.914 1.255.798.34 1.47.627 1.804.778.133.06.368.172.593.28.195.095.344.169.465.236l5.245-3.252c.207-.132.432-.215.66-.252Z", fill: color })));
1181
+ const ForwardRef$r = React.forwardRef(SvgPillHand);
1182
+
1183
+ const SvgPill = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1184
+ React__namespace.createElement("path", { d: "M18.594 5.402a4.808 4.808 0 0 0-6.788 0l-6.4 6.4A4.772 4.772 0 0 0 4 15.197c0 1.282.5 2.486 1.406 3.393A4.768 4.768 0 0 0 8.8 19.997c1.282 0 2.487-.5 3.394-1.407l6.4-6.4a4.804 4.804 0 0 0 0-6.787Zm-1.256 5.782-2.322 2.323a.8.8 0 0 1-1.131 0L10.49 10.11a.8.8 0 0 1 0-1.13l2.447-2.446a3.19 3.19 0 0 1 2.263-.937c.771 0 1.542.277 2.15.829 1.367 1.24 1.293 3.452-.012 4.757Z", fill: color })));
1185
+ const ForwardRef$q = React.forwardRef(SvgPill);
1186
+
1187
+ const SvgPlayingCards = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1188
+ React__namespace.createElement("path", { d: "M4.161 2C2.98 2 2 2.98 2 4.161V17.34c0 1.181.98 2.161 2.161 2.161h9.844c1.182 0 2.162-.98 2.162-2.162V4.162c0-1.181-.98-2.161-2.162-2.161H4.161Zm0 1.667h9.844c.32 0 .495.175.495.494V17.34c0 .319-.176.494-.495.494H4.161c-.319 0-.494-.175-.494-.494V4.16c0-.319.175-.494.494-.494ZM17 4.16v1.745l2.917.755c.25.085.423.346.338.678L17 20.073c-.085.25-.345.423-.677.338l-1.146-.338c-.417.166-.853.338-1.354.338H9.656L15.906 22h.677c1 0 1.833-.667 2.084-1.667l3.255-12.76c.332-1.084-.423-2.328-1.589-2.578L17 4.16Zm-4.662.339-.91 2.5h.312l.26-.677h.912l.26.677h.338l-.937-2.5h-.235Zm.079.495.338 1.094H12l.417-1.094ZM18.094 7l-1.51 2.161.338.079.416-.573.912.26v.73l.338.103-.26-2.682L18.094 7Zm-9.089.417S5.75 9.657 5.75 11.323c0 1 .667 1.667 1.667 1.667.501 0 1.077-.4 1.328-.652 0 0-.254 1.163-.755 2.162 0 .166 2.168.085 2.083 0-.501-.918-.73-2.162-.73-2.162.333.251.828.574 1.329.574 1 0 1.666-.668 1.666-1.667 0-1.752-3.248-3.913-3.333-3.828Zm9.089.078.078 1.172-.677-.26.599-.912ZM4.656 14.5l.938 2.5h.234l.912-2.5h-.313l-.26.677h-.912l-.26-.677h-.339Zm.755.912h.756l-.417 1.093-.339-1.093Z", fill: color })));
1189
+ const ForwardRef$p = React.forwardRef(SvgPlayingCards);
1190
+
1191
+ const SvgPlus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1192
+ React__namespace.createElement("path", { d: "M20 11h-6.999V4a1 1 0 0 0-2 0V11H3.999a1 1 0 0 0 0 2h7.002V20a1 1 0 0 0 2 0V13h7a1 1 0 0 0 0-2Z", fill: color })));
1193
+ const ForwardRef$o = React.forwardRef(SvgPlus);
1194
+
1195
+ const SvgQuestionMarkCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1196
+ React__namespace.createElement("path", { d: "M12 3c-4.968 0-9 4.032-9 9s4.032 9 9 9 9-4.032 9-9-4.032-9-9-9Zm.45 15.3h-.9a.451.451 0 0 1-.45-.45v-.9c0-.247.203-.45.45-.45h.9c.248 0 .45.203.45.45v.9c0 .247-.203.45-.45.45Zm2.313-6.975-.81.828c-.648.657-1.053 1.197-1.053 2.547h-1.8v-.45c0-.99.405-1.89 1.053-2.547l1.116-1.134c.412-.4.617-.99.497-1.622a1.79 1.79 0 0 0-1.248-1.373 1.807 1.807 0 0 0-2.221 1.143c-.115.335-.396.583-.75.583h-.26a.783.783 0 0 1-.743-1.01 3.597 3.597 0 0 1 2.902-2.547c1.373-.212 2.671.495 3.486 1.62 1.062 1.467.749 3.044-.169 3.962Z", fill: color })));
1197
+ const ForwardRef$n = React.forwardRef(SvgQuestionMarkCircle);
1198
+
1199
+ const SvgQuestionMark = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1200
+ React__namespace.createElement("path", { d: "M12 19a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 12 19Zm0-17a6 6 0 0 1 6 6c0 2.165-.753 3.29-2.674 4.923C13.399 14.56 13 15.297 13 17h-2c0-2.474.787-3.695 3.031-5.601C15.548 10.11 16 9.434 16 8c0-2.21-1.79-4-4-4S8 5.79 8 8v1H6V8a6 6 0 0 1 6-6Z", fill: color })));
1201
+ const ForwardRef$m = React.forwardRef(SvgQuestionMark);
1202
+
1203
+ const SvgQuilInk = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1204
+ React__namespace.createElement("path", { d: "M21.6 2c-5.556 0-9.442 1.302-11.55 3.875-1.92 2.344-1.694 4.945-1.6 5.588 2.627-4.016 6.427-6.929 10.825-8.25a.405.405 0 0 1 .5.274.4.4 0 0 1-.262.5c-4.22 1.27-7.876 4.065-10.4 7.925 1.06-.128 5.964-.862 9.462-3.825a7.632 7.632 0 0 1-1.813.213 8.212 8.212 0 0 1-2.287-.313.413.413 0 0 1-.262-.512.394.394 0 0 1 .5-.25c.028.01 2.867.87 5.225-.563.012-.007.035-.006.05-.012a9.653 9.653 0 0 0 2-4.163.406.406 0 0 0-.075-.337A.407.407 0 0 0 21.6 2ZM5.125 12.4a.403.403 0 0 0 .075.8h6.4a.402.402 0 0 0 .352-.198.404.404 0 0 0 0-.404.402.402 0 0 0-.352-.198H5.125ZM4.4 13.6A2.403 2.403 0 0 0 2 16v3.6C2 20.923 3.077 22 4.4 22h8c1.323 0 2.4-1.077 2.4-2.4V16c0-1.323-1.077-2.4-2.4-2.4h-8Z", fill: color })));
1205
+ const ForwardRef$l = React.forwardRef(SvgQuilInk);
1206
+
1207
+ const SvgReactLogo = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1208
+ React__namespace.createElement("path", { d: "M12 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm-.528 2.994c.175.21.351.414.528.609.177-.195.353-.398.528-.609-.352.008-.704.008-1.056 0Zm-1.995-.125c-.768-.08-1.53-.203-2.285-.368-.075.35-.132.69-.17 1.016-.19 1.583.075 2.545.478 2.777.403.233 1.368-.019 2.645-.974.263-.197.528-.416.794-.655-.52-.57-1.009-1.17-1.462-1.796Zm7.331-.368a20.17 20.17 0 0 1-2.285.368 20.681 20.681 0 0 1-1.462 1.796c.266.24.531.458.794.655 1.277.955 2.242 1.207 2.645.974.403-.232.667-1.194.479-2.777-.041-.341-.098-.68-.17-1.016h-.001Zm1.45-.387c.577 2.639.274 4.74-1.008 5.48-1.282.74-3.253-.048-5.25-1.867-1.997 1.819-3.968 2.606-5.25 1.866-1.282-.74-1.585-2.84-1.009-5.48C3.167 14.794 1.5 13.48 1.5 12s1.667-2.793 4.241-3.614c-.576-2.639-.273-4.74 1.009-5.48 1.282-.74 3.253.048 5.25 1.867 1.997-1.819 3.968-2.606 5.25-1.866 1.282.74 1.585 2.84 1.009 5.48C20.833 9.206 22.5 10.52 22.5 12s-1.667 2.793-4.241 3.614h-.001Zm-7.32-9.779c-.254-.23-.519-.449-.793-.655-1.277-.955-2.242-1.207-2.645-.974-.403.232-.667 1.194-.479 2.777.04.327.096.666.17 1.016a20.676 20.676 0 0 1 2.286-.368c.475-.653.965-1.254 1.462-1.796h-.001Zm3.585 1.796c.802.084 1.568.209 2.285.368.075-.35.132-.69.17-1.016.19-1.583-.075-2.545-.478-2.777-.403-.233-1.368.019-2.645.974-.274.206-.54.425-.794.655.497.542.987 1.143 1.462 1.796Zm-1.995-.125c-.175-.21-.351-.414-.528-.609-.177.195-.353.398-.528.609.352-.007.704-.007 1.056 0Zm-4.156 7.198c-.182-.3-.358-.606-.528-.914-.095.257-.183.51-.263.761.257.056.521.107.79.153h.001Zm1.932.234c1.13.084 2.263.084 3.392 0A22.895 22.895 0 0 0 15.392 12a22.898 22.898 0 0 0-1.696-2.938 22.896 22.896 0 0 0-3.392 0A22.9 22.9 0 0 0 8.608 12a22.896 22.896 0 0 0 1.696 2.938Zm5.852-4.728c.095-.257.183-.51.263-.761a17.984 17.984 0 0 0-.79-.153c.182.3.358.606.527.914ZM6.13 9.837c-.34.11-.662.23-.964.36C3.701 10.825 3 11.535 3 12c0 .465.7 1.175 2.166 1.803.302.13.624.25.964.36.222-.7.497-1.426.825-2.163a20.678 20.678 0 0 1-.825-2.163Zm1.45-.388c.081.25.169.504.264.76.17-.308.346-.612.528-.913-.27.046-.534.097-.791.153H7.58Zm10.29 4.714c.34-.11.662-.23.964-.36C20.299 13.175 21 12.465 21 12c0-.465-.7-1.175-2.166-1.803a11.354 11.354 0 0 0-.964-.36c-.222.7-.497 1.426-.825 2.163.328.737.603 1.462.825 2.163Zm-1.45.388a19.17 19.17 0 0 0-.264-.76c-.17.308-.346.612-.528.913.27-.046.534-.097.791-.153h.001Z", fill: color })));
1209
+ const ForwardRef$k = React.forwardRef(SvgReactLogo);
1210
+
1211
+ const SvgRecord = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1212
+ React__namespace.createElement("path", { d: "M12 2.25c-5.375 0-9.75 4.375-9.75 9.75s4.375 9.75 9.75 9.75 9.75-4.375 9.75-9.75S17.375 2.25 12 2.25Zm0 1.625A8.113 8.113 0 0 1 20.125 12 8.113 8.113 0 0 1 12 20.125 8.113 8.113 0 0 1 3.875 12 8.113 8.113 0 0 1 12 3.875Zm0 4.063a4.063 4.063 0 1 0 0 8.125 4.063 4.063 0 0 0 0-8.125Z", fill: color })));
1213
+ const ForwardRef$j = React.forwardRef(SvgRecord);
1214
+
1215
+ const SvgReport = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1216
+ React__namespace.createElement("path", { d: "M22 5H2v1.777h.909v11.557h8.182V21h1.818v-2.666h8.182V6.777H22V5Zm-10 7.111c0 2.696-3.07 4.692-5.978 2.828a1.893 1.893 0 0 1-.55-.538c-1.907-2.846.134-5.845 2.891-5.845v3.556H12Zm7.273.889v1.778h-5.456V13h5.455l.001-.001Zm-5.456-1.776v-1.78h5.455v1.777h-5.455v.003Z", fill: color })));
1217
+ const ForwardRef$i = React.forwardRef(SvgReport);
1218
+
1219
+ const SvgRobot = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1220
+ React__namespace.createElement("path", { d: "M12 2a1.796 1.796 0 0 0-1.797 1.8 1.802 1.802 0 0 0 .898 1.557V7.4H8.405A3.598 3.598 0 0 0 4.81 11v3.6h-.898a.897.897 0 0 0-.912.9.901.901 0 0 0 .912.9h.898v1.8c0 .995.805 1.8 1.798 1.8h10.784c.993 0 1.798-.805 1.798-1.8v-1.8h.898a.897.897 0 0 0 .912-.9.902.902 0 0 0-.912-.9h-.898V11c0-1.988-1.61-3.6-3.595-3.6h-2.696V5.356A1.798 1.798 0 0 0 12 2Zm-3.146 9a1.35 1.35 0 0 1 0 2.7 1.35 1.35 0 0 1 0-2.7Zm6.292 0a1.35 1.35 0 0 1 0 2.7 1.35 1.35 0 0 1 0-2.7Zm-4.943 5.4h3.594a.9.9 0 0 1 0 1.8h-3.594a.9.9 0 0 1 0-1.8Z", fill: color })));
1221
+ const ForwardRef$h = React.forwardRef(SvgRobot);
1222
+
1223
+ const SvgSmileyFacePlus = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1224
+ React__namespace.createElement("path", { d: "M22.85 3.05h-1.899v-1.9a.95.95 0 0 0-1.9 0v1.9h-1.902a.95.95 0 0 0 0 1.9h1.901v1.9a.95.95 0 0 0 1.901 0v-1.9h1.9a.949.949 0 1 0 0-1.9ZM9.2 8.8c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2ZM14.8 8.8c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2ZM8.202 14.202A4.388 4.388 0 0 0 12 16.4a4.38 4.38 0 0 0 3.796-2.198.403.403 0 0 0-.35-.602H8.554a.404.404 0 0 0-.352.602Z", fill: color }),
1225
+ React__namespace.createElement("path", { d: "M12 3.1a8.9 8.9 0 1 0 8.65 6.798.9.9 0 0 0-1.75.424 7.1 7.1 0 1 1-5.125-5.198.9.9 0 0 0 .45-1.743A8.912 8.912 0 0 0 12 3.1Z", fill: color })));
1226
+ const ForwardRef$g = React.forwardRef(SvgSmileyFacePlus);
1227
+
1228
+ const SvgSmileyFace = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1229
+ React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm2.8 4.8c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2Zm-5.6 0c.664 0 1.2.536 1.2 1.2 0 .664-.536 1.2-1.2 1.2-.664 0-1.2-.536-1.2-1.2 0-.664.536-1.2 1.2-1.2Zm2.8 7.6a4.388 4.388 0 0 1-3.798-2.198.404.404 0 0 1 .352-.602h6.892c.308 0 .505.336.35.602A4.38 4.38 0 0 1 12 16.4Z", fill: color })));
1230
+ const ForwardRef$f = React.forwardRef(SvgSmileyFace);
1231
+
1232
+ const SvgStarCircle = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1233
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3a9.001 9.001 0 0 0 0 18 9.001 9.001 0 0 0 0-18Zm1.77 6.849L12 6.265l-1.77 3.584-3.954.577 2.862 2.79-.679 3.939L12 15.294l3.537 1.86-.675-3.939 2.862-2.79-3.954-.576Z", fill: color })));
1234
+ const ForwardRef$e = React.forwardRef(SvgStarCircle);
1235
+
1236
+ const SvgStar = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1237
+ React__namespace.createElement("path", { d: "m12 18.015 4.998 2.841c.788.448 1.76-.218 1.551-1.062l-1.326-5.356 4.416-3.604c.696-.567.324-1.645-.593-1.718l-5.813-.464-2.274-5.054c-.36-.797-1.558-.797-1.918 0L8.767 8.652l-5.813.464c-.917.073-1.29 1.15-.593 1.718l4.416 3.604-1.327 5.356c-.209.844.764 1.51 1.552 1.062L12 18.015Z", fill: color })));
1238
+ const ForwardRef$d = React.forwardRef(SvgStar);
1239
+
1240
+ const SvgStar2Outlined = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1241
+ React__namespace.createElement("path", { d: "m11.626 4.312-.063.211v-.071l.063-.14ZM12.374 4.312l.063.211v-.071l-.063-.14Z", fill: color }),
1242
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m12 18.283.437.248 3.977 2.255c1.178.667 2.63-.325 2.319-1.583l-1.172-4.718 3.9-3.174c1.04-.846.484-2.45-.887-2.56l-5.133-.409-2.009-4.451C13.164 3.296 12.582 3 12 3s-1.164.296-1.432.89L8.559 8.343l-5.133.409c-1.37.11-1.927 1.714-.886 2.56l3.9 3.174-1.173 4.718c-.312 1.258 1.141 2.25 2.319 1.582l3.977-2.255.437-.247Zm0-1.26 5.007 2.839c.308.175.689-.086.607-.414l-1.329-5.352 4.424-3.6c.272-.222.127-.641-.232-.67l-5.823-.464-2.278-5.049h-.002A.403.403 0 0 0 12 4.078a.403.403 0 0 0-.374.233l-.002.001-2.278 5.05-5.823.463c-.359.029-.504.448-.232.67l4.424 3.6-1.33 5.352c-.081.328.3.588.608.414l5.006-2.84.001.001Z", fill: color })));
1243
+ const ForwardRef$c = React.forwardRef(SvgStar2Outlined);
1244
+
1245
+ const SvgStar2 = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1246
+ React__namespace.createElement("path", { d: "M12.437 18.53 12 18.284l-.437.248-3.977 2.255c-1.178.667-2.63-.325-2.319-1.583l1.172-4.718-3.9-3.174c-1.04-.846-.484-2.45.887-2.56l5.133-.409 2.009-4.451C10.836 3.296 11.418 3 12 3s1.164.296 1.432.89l2.009 4.452 5.133.409c1.37.11 1.927 1.714.886 2.56l-3.9 3.174 1.173 4.718c.312 1.258-1.141 2.25-2.319 1.582l-3.977-2.255Z", fill: color })));
1247
+ const ForwardRef$b = React.forwardRef(SvgStar2);
1248
+
1249
+ const SvgTeam = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1250
+ React__namespace.createElement("path", { d: "M12 7c-1.346 0-2.455 1.065-2.455 2.357 0 1.293 1.11 2.357 2.455 2.357 1.346 0 2.455-1.064 2.455-2.357C14.455 8.065 13.345 7 12 7ZM6.273 8.571c-.904 0-1.637.704-1.637 1.572 0 .868.733 1.571 1.637 1.571.903 0 1.636-.703 1.636-1.571s-.733-1.572-1.636-1.572Zm11.454 0c-.903 0-1.636.704-1.636 1.572 0 .868.733 1.571 1.636 1.571.904 0 1.637-.703 1.637-1.571s-.733-1.572-1.637-1.572ZM6.273 13.286C4.485 13.286 3 14 3 15.027v1.402h2.455v-.616c0-.986.43-1.838 1.193-2.509-.124-.007-.247-.018-.375-.018Zm5.727 0c-2.89 0-4.91 1.04-4.91 2.527V18h9.82v-2.187c0-1.488-2.02-2.527-4.91-2.527Zm5.727 0c-.128 0-.25.011-.375.018.762.671 1.193 1.524 1.193 2.51v.615H21v-1.402c0-1.027-1.485-1.741-3.273-1.741Z", fill: color })));
1251
+ const ForwardRef$a = React.forwardRef(SvgTeam);
1252
+
1253
+ const SvgTelevetV = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1254
+ React__namespace.createElement("path", { d: "M22 5.536c0-2.006-1.72-3.622-3.81-3.53-1.86.087-3.377 1.555-3.46 3.363-.095 2.03 1.568 3.703 3.632 3.703h.082l.058 2.567c.006.253.349.333.476.111 0 0 2.368-4.338 2.387-4.375.45-.882.635-1.136.635-1.839ZM13.156 13.416h-.007v.013L7.371 2H2l11.111 21 2.483-4.702-2.438-4.882Z", fill: color })));
1255
+ const ForwardRef$9 = React.forwardRef(SvgTelevetV);
1256
+
1257
+ const SvgTextEdit = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1258
+ React__namespace.createElement("path", { d: "M11.989 7.911c-.044.001-.087.005-.13.012H7.908c-.25 0-.455.184-.455.41v1.232c0 .227.204.41.455.41h.455c.251 0 .455-.183.455-.41v-.41h2.274v6.569h-.455c-.25 0-.454.184-.454.41v.411c0 .227.203.41.454.41h1.218c.097.015.197.015.295 0h1.217c.25 0 .455-.183.455-.41v-.41c0-.227-.204-.411-.455-.411h-.455v-6.57h2.274v.411c0 .227.204.41.455.41h.455c.251 0 .455-.183.455-.41V8.333c0-.226-.204-.41-.455-.41h-3.948a1.007 1.007 0 0 0-.16-.012ZM3.2 2.76a.44.44 0 0 0-.44.44v2.64a.443.443 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387v-2.2h2.2a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218H3.2Zm4.4 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218H7.6Zm5.28 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218h-3.52Zm5.28 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h2.2v2.2a.442.442 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387V3.2a.44.44 0 0 0-.44-.44h-2.64ZM3.193 7.153a.442.442 0 0 0-.433.447v3.52a.443.443 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387V7.6a.441.441 0 0 0-.447-.447Zm17.6 0a.442.442 0 0 0-.433.447v3.52a.442.442 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387V7.6a.441.441 0 0 0-.447-.447Zm-17.6 5.28a.442.442 0 0 0-.433.447v3.52a.443.443 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387v-3.52a.441.441 0 0 0-.447-.447Zm17.6 0a.442.442 0 0 0-.433.447v3.52a.442.442 0 0 0 .218.387c.138.079.306.079.444 0a.443.443 0 0 0 .218-.387v-3.52a.441.441 0 0 0-.447-.447Zm-17.6 5.28a.442.442 0 0 0-.433.447v2.64c0 .242.198.44.44.44h2.64a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218h-2.2v-2.2a.441.441 0 0 0-.447-.447Zm17.6 0a.442.442 0 0 0-.433.447v2.2h-2.2a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h2.64a.44.44 0 0 0 .44-.44v-2.64a.441.441 0 0 0-.447-.447ZM7.6 20.36a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218H7.6Zm5.28 0a.443.443 0 0 0-.387.218.444.444 0 0 0 0 .444c.081.137.229.22.387.218h3.52a.443.443 0 0 0 .387-.218.444.444 0 0 0 0-.444.443.443 0 0 0-.387-.218h-3.52Z", fill: color })));
1259
+ const ForwardRef$8 = React.forwardRef(SvgTextEdit);
1260
+
1261
+ const SvgThumbsUp = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1262
+ React__namespace.createElement("path", { d: "M13.973 3a1.39 1.39 0 0 0-.96.387L7.984 8.246c-.34.329-.53.773-.53 1.238v8.762c0 .97.813 1.754 1.818 1.754h8.175c.726 0 1.383-.417 1.67-1.062l2.735-6.14a1.7 1.7 0 0 0 .147-.692v-1.752c0-.969-.814-1.754-1.818-1.754h-5.774l.903-4.002c.1-.442-.042-.903-.376-1.22A1.386 1.386 0 0 0 13.973 3ZM2.909 9.477c-.502 0-.909.393-.909.877v8.77c0 .483.407.876.91.876h1.817c.502 0 .91-.393.91-.877v-8.769c0-.484-.408-.877-.91-.877H2.91Z", fill: color })));
1263
+ const ForwardRef$7 = React.forwardRef(SvgThumbsUp);
1264
+
1265
+ const SvgTrashcan = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1266
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m9.375 4.125.875-.875h3.5l.875.875h3.5c.525 0 .875.35.875.875s-.35.875-.875.875H5.875C5.35 5.875 5 5.525 5 5s.35-.875.875-.875h3.5ZM5.875 19V7.625h12.25V19c0 .962-.788 1.75-1.75 1.75h-8.75c-.963 0-1.75-.788-1.75-1.75Zm3.5-9.625c.525 0 .875.35.875.875v7.875c0 .525-.35.875-.875.875s-.875-.35-.875-.875V10.25c0-.525.35-.875.875-.875Zm6.125.875c0-.525-.35-.875-.875-.875s-.875.35-.875.875v7.875c0 .525.35.875.875.875s.875-.35.875-.875V10.25Z", fill: color })));
1267
+ const ForwardRef$6 = React.forwardRef(SvgTrashcan);
1268
+
1269
+ const SvgTwoSquares = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1270
+ React__namespace.createElement("path", { d: "M4.8 3C3.805 3 3 3.805 3 4.8v11.7a.9.9 0 1 0 1.8 0V4.8h11.7a.9.9 0 1 0 0-1.8H4.8Zm3.6 3.6c-.995 0-1.8.805-1.8 1.8v10.8c0 .995.805 1.8 1.8 1.8h10.8c.995 0 1.8-.805 1.8-1.8V8.4c0-.995-.805-1.8-1.8-1.8H8.4Zm0 1.8h10.8v10.8H8.4V8.4Z", fill: color })));
1271
+ const ForwardRef$5 = React.forwardRef(SvgTwoSquares);
1272
+
1273
+ const SvgUpload = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1274
+ React__namespace.createElement("path", { d: "M10.687 17.455a2.097 2.097 0 0 1-2.096-2.097v-5.59H6.32c-.986 0-1.193-.159-.35-1.005l4.608-4.608c1.537-1.537 1.518-1.543 3.058 0l4.586 4.608c.843.846.562 1.004-.328 1.004H15.58v5.591a2.097 2.097 0 0 1-2.096 2.097h-2.796ZM3 16.278v2.796c0 1.157.94 2.096 2.097 2.096h13.976c1.158 0 2.097-.94 2.097-2.097v-2.795h-1.398v2.796a.7.7 0 0 1-.698.698H5.096a.7.7 0 0 1-.7-.698v-2.796H3Z", fill: color })));
1275
+ const ForwardRef$4 = React.forwardRef(SvgUpload);
1276
+
1277
+ const SvgVideoCamera = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1278
+ React__namespace.createElement("path", { d: "M3.818 5C2.816 5 2 5.833 2 6.857v9.285C2 17.167 2.816 18 3.818 18h11.819c1.002 0 1.817-.833 1.817-1.858v-2.709l3.068 2.506a.906.906 0 0 0 .57.204.903.903 0 0 0 .394-.093.932.932 0 0 0 .514-.836V7.786c0-.357-.2-.683-.514-.839a.898.898 0 0 0-.964.114l-3.066 2.506v-2.71c0-1.024-.818-1.857-1.82-1.857H3.818Z", fill: color })));
1279
+ const ForwardRef$3 = React.forwardRef(SvgVideoCamera);
1280
+
1281
+ const SvgWarningSign = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1282
+ React__namespace.createElement("path", { d: "M10.607 9.496a1.397 1.397 0 1 1 2.786 0l-.322 4.506a1.074 1.074 0 0 1-2.142 0l-.322-4.506ZM11 17a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z", fill: color }),
1283
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21.504 15.6 15.168 4.8c-1.408-2.4-4.928-2.4-6.336 0L2.496 15.6C1.088 18 2.848 21 5.664 21h12.672c2.816 0 4.577-3 3.168-5.4ZM10.416 5.7c.704-1.2 2.464-1.2 3.168 0l6.336 10.8c.704 1.2-.176 2.7-1.584 2.7H5.664c-1.408 0-2.288-1.5-1.584-2.7l6.336-10.8Z", fill: color })));
1284
+ const ForwardRef$2 = React.forwardRef(SvgWarningSign);
1285
+
1286
+ const SvgWebsite = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1287
+ React__namespace.createElement("path", { d: "M4.114 3.75C3.499 3.75 3 4.24 3 4.842v3.513h18V4.842c0-.602-.5-1.092-1.113-1.092H4.114Zm1.234 1.535c.432 0 .782.343.782.767s-.35.768-.782.768a.775.775 0 0 1-.783-.768c0-.424.35-.767.783-.767Zm2.348 0c.432 0 .782.343.782.767s-.35.768-.782.768a.775.775 0 0 1-.783-.768c0-.424.35-.767.783-.767Zm1.956 0h9.392V6.82H9.652V5.285ZM3 9.122v8.826c0 .212.175.383.391.383h8.172c.526-.65.828-1.545.828-2.607v-3.757l-2.07 2.031c-.154.15-.401.15-.554 0a.378.378 0 0 1 0-.542l2.739-2.687c.153-.15.4-.15.553 0l2.74 2.687a.378.378 0 0 1 0 .542.394.394 0 0 1-.554 0l-2.071-2.031v3.757c0 1.002-.24 1.89-.667 2.607h-.944c-.588.728-1.457 1.152-2.51 1.152H7.695a.387.387 0 0 0-.392.383c0 .212.175.384.392.384h1.356c1.515 0 2.745-.725 3.455-1.919h8.102a.387.387 0 0 0 .391-.383V9.122H3Z", fill: color })));
1288
+ const ForwardRef$1 = React.forwardRef(SvgWebsite);
1289
+
1290
+ const SvgWrench = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
1291
+ React__namespace.createElement("path", { d: "M16.138 3a4.673 4.673 0 0 0-4.456 6.089l-8.072 8.35a2.086 2.086 0 1 0 3 2.9l7.979-8.254a4.673 4.673 0 0 0 6.04-5.703.668.668 0 0 0-1.113-.288L16.682 8.93l-1.834-1.834 2.813-2.815a.668.668 0 0 0-.296-1.116A4.679 4.679 0 0 0 16.138 3Z", fill: color })));
1292
+ const ForwardRef = React.forwardRef(SvgWrench);
1293
+
1294
+ var IconMap = {
1295
+ alertCircle: ForwardRef$2x,
1296
+ animalBird: ForwardRef$2w,
1297
+ animalCat: ForwardRef$2v,
1298
+ animalCow: ForwardRef$2u,
1299
+ animalDog: ForwardRef$2t,
1300
+ animalHorse: ForwardRef$2s,
1301
+ arrowCircle: ForwardRef$2r,
1302
+ arrowDown: ForwardRef$2p,
1303
+ arrowDownRight: ForwardRef$2q,
1304
+ arrowLeft: ForwardRef$2o,
1305
+ arrowRight: ForwardRef$2n,
1306
+ arrowUp: ForwardRef$2m,
1307
+ arrowsIn: ForwardRef$2l,
1308
+ arrowsOut: ForwardRef$2k,
1309
+ article: ForwardRef$2j,
1310
+ asterisk: ForwardRef$2i,
1311
+ bell: ForwardRef$2g,
1312
+ bone: ForwardRef$2f,
1313
+ bellRinging: ForwardRef$2h,
1314
+ bookmarkFilled: ForwardRef$2e,
1315
+ bookmarkOutlined: ForwardRef$2d,
1316
+ brush: ForwardRef$2c,
1317
+ bulkSelect: ForwardRef$2b,
1318
+ buttons: ForwardRef$2a,
1319
+ caduceus: ForwardRef$29,
1320
+ calendarDate: ForwardRef$27,
1321
+ calendarCheck: ForwardRef$28,
1322
+ calendarInfo: ForwardRef$26,
1323
+ calendarOutlined: ForwardRef$25,
1324
+ calendarPen: ForwardRef$24,
1325
+ camera: ForwardRef$21,
1326
+ cameraFlip: ForwardRef$23,
1327
+ cameraOff: ForwardRef$22,
1328
+ cancel: ForwardRef$20,
1329
+ cellphone: ForwardRef$1_,
1330
+ cellphoneAlert: ForwardRef$1$,
1331
+ chainLink: ForwardRef$1Z,
1332
+ chatBubbleFilled: ForwardRef$1Y,
1333
+ chatBubbleOutlined: ForwardRef$1X,
1334
+ checkmark: ForwardRef$1T,
1335
+ checkmarkBox: ForwardRef$1W,
1336
+ checkmarkCircle: ForwardRef$1V,
1337
+ checkmarkList: ForwardRef$1U,
1338
+ chevronDown: ForwardRef$1S,
1339
+ chevronLeft: ForwardRef$1R,
1340
+ chevronRight: ForwardRef$1Q,
1341
+ chevronUp: ForwardRef$1O,
1342
+ chevronUpDown: ForwardRef$1P,
1343
+ circleDotted: ForwardRef$1N,
1344
+ clockGear: ForwardRef$1M,
1345
+ clock: ForwardRef$1L,
1346
+ close: ForwardRef$1J,
1347
+ closeCircle: ForwardRef$1K,
1348
+ code: ForwardRef$1I,
1349
+ conversation: ForwardRef$1H,
1350
+ creditCardHand: ForwardRef$1G,
1351
+ crossClipboard: ForwardRef$1F,
1352
+ crossPaw: ForwardRef$1D,
1353
+ crossHatPerson: ForwardRef$1E,
1354
+ dogHouse: ForwardRef$1B,
1355
+ dogHouseOutlined: ForwardRef$1C,
1356
+ dollar: ForwardRef$1z,
1357
+ dollarCircle: ForwardRef$1A,
1358
+ dotsCircle: ForwardRef$1y,
1359
+ dotsHorizontal: ForwardRef$1x,
1360
+ dotsVertical: ForwardRef$1w,
1361
+ doubleArrowCircle: ForwardRef$1v,
1362
+ download: ForwardRef$1u,
1363
+ dragDrop: ForwardRef$1t,
1364
+ emailSend: ForwardRef$1s,
1365
+ envelopeFilled: ForwardRef$1r,
1366
+ envelopeOutlined: ForwardRef$1q,
1367
+ eyedropper: ForwardRef$1m,
1368
+ eyeOpen: ForwardRef$1o,
1369
+ eyeSlash: ForwardRef$1n,
1370
+ externalLink: ForwardRef$1p,
1371
+ faceScreen: ForwardRef$1l,
1372
+ formsFilled: ForwardRef$1k,
1373
+ formsOutlined: ForwardRef$1j,
1374
+ funnelFilled: ForwardRef$1i,
1375
+ funnelOutlined: ForwardRef$1h,
1376
+ gear: ForwardRef$1g,
1377
+ grid: ForwardRef$1f,
1378
+ horizontalLines: ForwardRef$1e,
1379
+ house: ForwardRef$1d,
1380
+ infoCircleFilled: ForwardRef$1c,
1381
+ infoCircleOutlined: ForwardRef$1b,
1382
+ input: ForwardRef$1a,
1383
+ invoice: ForwardRef$18,
1384
+ invoiceOutlined: ForwardRef$19,
1385
+ kanbanBoard: ForwardRef$17,
1386
+ largeTextInput: ForwardRef$16,
1387
+ list: ForwardRef$15,
1388
+ locationMarker: ForwardRef$13,
1389
+ locationMarkerGround: ForwardRef$14,
1390
+ lockRectangle: ForwardRef$12,
1391
+ lockRound: ForwardRef$11,
1392
+ loudspeaker: ForwardRef$10,
1393
+ magnifyingGlass: ForwardRef$$,
1394
+ mailbox: ForwardRef$_,
1395
+ manHeadset: ForwardRef$Z,
1396
+ mergeTags: ForwardRef$Y,
1397
+ message: ForwardRef$S,
1398
+ messages: ForwardRef$R,
1399
+ messageClipboard: ForwardRef$X,
1400
+ messageEllipses: ForwardRef$W,
1401
+ messageGearOutlined: ForwardRef$V,
1402
+ messageGear: ForwardRef$U,
1403
+ messageLink: ForwardRef$T,
1404
+ microphone: ForwardRef$P,
1405
+ microphoneMute: ForwardRef$Q,
1406
+ minus: ForwardRef$O,
1407
+ moveLeft: ForwardRef$N,
1408
+ moveRight: ForwardRef$M,
1409
+ multipleChoice: ForwardRef$L,
1410
+ notification: ForwardRef$K,
1411
+ paperAirplane: ForwardRef$H,
1412
+ paperAirplane2: ForwardRef$J,
1413
+ paperAirplaneRight: ForwardRef$I,
1414
+ paperclip: ForwardRef$F,
1415
+ paperPen: ForwardRef$G,
1416
+ paw: ForwardRef$C,
1417
+ paw2: ForwardRef$B,
1418
+ pawMagnifyingGlass: ForwardRef$E,
1419
+ pawOutlined: ForwardRef$D,
1420
+ pdfLogo: ForwardRef$A,
1421
+ pen: ForwardRef$y,
1422
+ penSquare: ForwardRef$z,
1423
+ person: ForwardRef$w,
1424
+ personAdd: ForwardRef$x,
1425
+ phone: ForwardRef$s,
1426
+ phoneButtons: ForwardRef$v,
1427
+ phoneDown: ForwardRef$u,
1428
+ phoneRing: ForwardRef$t,
1429
+ pill: ForwardRef$q,
1430
+ pillHand: ForwardRef$r,
1431
+ playingCards: ForwardRef$p,
1432
+ plus: ForwardRef$o,
1433
+ questionMark: ForwardRef$m,
1434
+ questionMarkCircle: ForwardRef$n,
1435
+ quilInk: ForwardRef$l,
1436
+ reactLogo: ForwardRef$k,
1437
+ record: ForwardRef$j,
1438
+ report: ForwardRef$i,
1439
+ robot: ForwardRef$h,
1440
+ smileyFace: ForwardRef$f,
1441
+ smileyFacePlus: ForwardRef$g,
1442
+ star: ForwardRef$d,
1443
+ star2: ForwardRef$b,
1444
+ star2Outlined: ForwardRef$c,
1445
+ starCircle: ForwardRef$e,
1446
+ team: ForwardRef$a,
1447
+ televetV: ForwardRef$9,
1448
+ textEdit: ForwardRef$8,
1449
+ thumbsUp: ForwardRef$7,
1450
+ trashcan: ForwardRef$6,
1451
+ twoSquares: ForwardRef$5,
1452
+ upload: ForwardRef$4,
1453
+ videoCamera: ForwardRef$3,
1454
+ warningSign: ForwardRef$2,
1455
+ website: ForwardRef$1,
1456
+ wrench: ForwardRef,
1325
1457
  };
1326
- var colors = __assign(__assign(__assign({}, coreColors), semanticColors), adaptiveColors);
1458
+ var IconSizeMap = {
1459
+ xs: 14,
1460
+ sm: 16,
1461
+ md: 20,
1462
+ lg: 24,
1463
+ xl: 32,
1464
+ '2xl': 38,
1465
+ };
1466
+
1467
+ var useAdaptiveColorMap = function (map, token) {
1468
+ return react.useColorModeValue(map.light[token], map.dark[token]);
1469
+ };
1470
+
1471
+ var Icon = React.forwardRef(function (_a, ref) {
1472
+ var name = _a.name, _b = _a.size, size = _b === void 0 ? 'lg' : _b, _c = _a.color, color = _c === void 0 ? 'currentColor' : _c;
1473
+ var colors = useTheme().colors;
1474
+ var c = useAdaptiveColorMap(colors.icon, color);
1475
+ var MappedIcon = IconMap[name];
1476
+ var d = IconSizeMap[size] + 'px';
1477
+ return React__default["default"].createElement(MappedIcon, { ref: ref, width: d, height: d, color: c });
1478
+ });
1479
+ Icon.displayName = 'Icon';
1480
+
1481
+ var camelCaseToLabel = function (s) {
1482
+ return s.replace(/([A-Z])/g, ' $1').replace(/^\w/, function (c) { return c.toUpperCase(); });
1483
+ };
1484
+ var toTitleCase = function (s) {
1485
+ var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|v.?|vs.?|via)$/i;
1486
+ var alphanumericPattern = /([A-Za-z0-9\u00C0-\u00FF])/;
1487
+ var wordSeparators = /([ :–—-])/;
1488
+ return s
1489
+ .split(wordSeparators)
1490
+ .map(function (current, index, array) {
1491
+ if (
1492
+ /* Check for small words */
1493
+ current.search(smallWords) > -1 &&
1494
+ /* Skip first and last word */
1495
+ index !== 0 &&
1496
+ index !== array.length - 1 &&
1497
+ /* Ignore title end and subtitle start */
1498
+ array[index - 3] !== ':' &&
1499
+ array[index + 1] !== ':' &&
1500
+ /* Ignore small words that start a hyphenated phrase */
1501
+ (array[index + 1] !== '-' || (array[index - 1] === '-' && array[index + 1] === '-'))) {
1502
+ return current.toLowerCase();
1503
+ }
1504
+ /* Ignore intentional capitalization */
1505
+ if (current.substring(1).search(/[A-Z]|\../) > -1) {
1506
+ return current;
1507
+ }
1508
+ /* Ignore URLs */
1509
+ if (array[index + 1] === ':' && array[index + 2] !== '') {
1510
+ return current;
1511
+ }
1512
+ /* Capitalize the first letter */
1513
+ return current.replace(alphanumericPattern, function (match) { return match.toUpperCase(); });
1514
+ })
1515
+ .join('');
1516
+ };
1517
+
1518
+ var Button = React.forwardRef(function (props, ref) {
1519
+ var _a = useTheme(), components = _a.components, fontWeights = _a.fontWeights;
1520
+ var _b = components.Button[props.variant || 'primary'], variant = _b.variant, light = _b.light, dark = _b.dark;
1521
+ var modeColor = props.darkMode ? dark : light;
1522
+ var bg = react.useColorModeValue(modeColor.default, dark.default);
1523
+ var color = react.useColorModeValue(modeColor.content, dark.content);
1524
+ var borderColor = react.useColorModeValue(modeColor.border, dark.border);
1525
+ var p = __assign(__assign({}, props), { variant: variant, bg: bg, color: color, borderColor: borderColor });
1526
+ var hoverClass = {
1527
+ bg: react.useColorModeValue(modeColor.hover, dark.hover),
1528
+ };
1529
+ var activeClass = {
1530
+ bg: react.useColorModeValue(modeColor.active, dark.active),
1531
+ transform: 'scale(0.98)',
1532
+ };
1533
+ var iconName = p.iconName; p.darkMode; var iconPosition = p.iconPosition, domProps = __rest(p, ["iconName", "darkMode", "iconPosition"]);
1534
+ if (iconName) {
1535
+ var ButtonIcon = React__default["default"].createElement(Icon, { size: p.size, name: iconName });
1536
+ if (!domProps.children) {
1537
+ var label = camelCaseToLabel(iconName);
1538
+ return (React__default["default"].createElement(react.IconButton, __assign({ ref: ref, _hover: hoverClass, _active: activeClass, "aria-label": label, icon: ButtonIcon }, domProps)));
1539
+ }
1540
+ else {
1541
+ var position = iconPosition === 'right' ? 'rightIcon' : 'leftIcon';
1542
+ domProps[position] = ButtonIcon;
1543
+ }
1544
+ }
1545
+ return (React__default["default"].createElement(react.Button, __assign({ fontWeight: fontWeights.semibold, ref: ref, _hover: hoverClass, _active: activeClass, iconSpacing: domProps.size === 'sm' || domProps.size === 'xs' ? '4px' : '8px' }, domProps), domProps.children));
1546
+ });
1547
+ Button.displayName = 'Button';
1327
1548
 
1328
1549
  var ButtonVariantConfig = {
1329
1550
  primary: {
@@ -1549,145 +1770,6 @@ var Textarea = function (props) {
1549
1770
  Textarea.displayName = 'Textarea';
1550
1771
  var WrappedTextArea = withFormControl(Textarea);
1551
1772
 
1552
- var blur = {
1553
- none: 0,
1554
- sm: '4px',
1555
- base: '8px',
1556
- md: '12px',
1557
- lg: '16px',
1558
- xl: '24px',
1559
- '2xl': '40px',
1560
- '3xl': '64px',
1561
- };
1562
-
1563
- var borders = {
1564
- none: 0,
1565
- '1px': '1px solid',
1566
- '2px': '2px solid',
1567
- '4px': '4px solid',
1568
- '8px': '8px solid',
1569
- };
1570
-
1571
- var fonts = {
1572
- body: 'LinearSans, Noto Sans, Arial, Helvetica, sans-serif',
1573
- heading: 'LinearSans, Noto Sans, Arial, Helvetica, sans-serif',
1574
- mono: 'LinearSans, Noto Sans, Arial, Helvetica, sans-serif',
1575
- };
1576
-
1577
- var fontSizes = {
1578
- xs: '0.75rem',
1579
- sm: '0.875rem',
1580
- md: '1rem',
1581
- lg: '1.125rem',
1582
- xl: '1.25rem',
1583
- '2xl': '1.5rem',
1584
- '3xl': '1.875rem',
1585
- '4xl': '2.25rem',
1586
- '5xl': '3rem',
1587
- '6xl': '3.75rem',
1588
- '7xl': '4.5rem',
1589
- '8xl': '6rem',
1590
- '9xl': '8rem',
1591
- };
1592
-
1593
- var fontWeights = {
1594
- hairline: 100,
1595
- thin: 200,
1596
- light: 300,
1597
- normal: 400,
1598
- medium: 500,
1599
- semibold: 600,
1600
- bold: 700,
1601
- extrabold: 800,
1602
- black: 900,
1603
- };
1604
-
1605
- var lineHeights = {
1606
- normal: 'normal',
1607
- none: 1,
1608
- shorter: 1.25,
1609
- short: 1.375,
1610
- base: 1.5,
1611
- tall: 1.625,
1612
- taller: '2',
1613
- '3': '.75rem',
1614
- '4': '1rem',
1615
- '5': '1.25rem',
1616
- '6': '1.5rem',
1617
- '7': '1.75rem',
1618
- '8': '2rem',
1619
- '9': '2.25rem',
1620
- '10': '2.5rem',
1621
- };
1622
-
1623
- var radii = {
1624
- none: '0',
1625
- sm: '0.125rem',
1626
- base: '0.25rem',
1627
- md: '0.375rem',
1628
- lg: '0.5rem',
1629
- xl: '0.75rem',
1630
- '2xl': '1rem',
1631
- '3xl': '1.5rem',
1632
- full: '9999px',
1633
- };
1634
-
1635
- var shadows = {
1636
- xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
1637
- sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
1638
- base: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
1639
- md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
1640
- lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
1641
- xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
1642
- '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)',
1643
- outline: '0 0 0 3px rgba(66, 153, 225, 0.6)',
1644
- inner: 'inset 0 2px 4px 0 rgba(0,0,0,0.06)',
1645
- none: 'none',
1646
- 'dark-lg': 'rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px',
1647
- };
1648
-
1649
- var sizes = {
1650
- max: 'max-content',
1651
- min: 'min-content',
1652
- full: '100%',
1653
- '3xs': '14rem',
1654
- '2xs': '16rem',
1655
- xs: '20rem',
1656
- sm: '24rem',
1657
- md: '28rem',
1658
- lg: '32rem',
1659
- xl: '36rem',
1660
- '2xl': '42rem',
1661
- '3xl': '48rem',
1662
- '4xl': '56rem',
1663
- '5xl': '64rem',
1664
- '6xl': '72rem',
1665
- '7xl': '80rem',
1666
- '8xl': '90rem',
1667
- container: {
1668
- sm: '640px',
1669
- md: '768px',
1670
- lg: '1024px',
1671
- xl: '1280px',
1672
- },
1673
- };
1674
-
1675
- var zIndices = {
1676
- hide: -1,
1677
- auto: 'auto',
1678
- base: 0,
1679
- docked: 10,
1680
- dropdown: 1000,
1681
- sticky: 1100,
1682
- banner: 1200,
1683
- overlay: 1300,
1684
- modal: 1400,
1685
- popover: 1500,
1686
- skipLink: 1600,
1687
- toast: 1700,
1688
- tooltip: 1800,
1689
- };
1690
-
1691
1773
  var FormControlConfig = {
1692
1774
  baseStyle: {
1693
1775
  borderRadius: borders['4px'],
@@ -5897,6 +5979,7 @@ var theme = react.extendTheme({
5897
5979
  Textarea: TextareaConfig,
5898
5980
  Tooltip: TooltipConfig,
5899
5981
  Avatar: AvatarConfig,
5982
+ Tag: TagConfig,
5900
5983
  },
5901
5984
  });
5902
5985
 
@@ -6065,6 +6148,8 @@ exports.Select = WrappedSelect;
6065
6148
  exports.SelectConfig = SelectConfig;
6066
6149
  exports.Switch = WrappedSwitch;
6067
6150
  exports.SwitchConfig = SwitchConfig;
6151
+ exports.Tag = Tag;
6152
+ exports.TagConfig = TagConfig;
6068
6153
  exports.Text = Text;
6069
6154
  exports.TextConfig = TextConfig;
6070
6155
  exports.TextInput = WrappedTextInput;