@dsgngo/common-icons 2.2.0 → 3.0.2

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.
@@ -10,8 +10,13 @@ exports.IconArrowElbowDownLeft = IconArrowElbowDownLeft;
10
10
  exports.IconArrowLeft = IconArrowLeft;
11
11
  exports.IconArrowRight = IconArrowRight;
12
12
  exports.IconArrowUDownLeft = IconArrowUDownLeft;
13
+ exports.IconArrowsIn = IconArrowsIn;
14
+ exports.IconArrowsInCardinal = IconArrowsInCardinal;
13
15
  exports.IconArrowsLeftRight = IconArrowsLeftRight;
16
+ exports.IconArrowsOut = IconArrowsOut;
17
+ exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
14
18
  exports.IconArrowsOutLineHorizontal = IconArrowsOutLineHorizontal;
19
+ exports.IconArrowsOutLineVertical = IconArrowsOutLineVertical;
15
20
  exports.IconCaretDown = IconCaretDown;
16
21
  exports.IconCaretLeft = IconCaretLeft;
17
22
  exports.IconCaretRight = IconCaretRight;
@@ -160,6 +165,19 @@ function IconArrowsOutLineHorizontal(props) {
160
165
  })
161
166
  });
162
167
  }
168
+ function IconArrowsOutLineVertical(props) {
169
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
170
+ className: "icon fill icon-arrows-out-line-vertical ".concat(props.className ? props.className : ''),
171
+ onClick: props.onClick ? props.onClick : undefined,
172
+ style: props.style ? props.style : undefined,
173
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
174
+ viewBox: "0 0 32 32",
175
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
176
+ d: "M28 16.0001C28 16.2653 27.8946 16.5196 27.7071 16.7072C27.5196 16.8947 27.2652 17.0001 27 17.0001H5C4.73478 17.0001 4.48043 16.8947 4.29289 16.7072C4.10536 16.5196 4 16.2653 4 16.0001C4 15.7348 4.10536 15.4805 4.29289 15.2929C4.48043 15.1054 4.73478 15.0001 5 15.0001H27C27.2652 15.0001 27.5196 15.1054 27.7071 15.2929C27.8946 15.4805 28 15.7348 28 16.0001ZM12.7075 6.70755L15 4.4138V12.0001C15 12.2653 15.1054 12.5196 15.2929 12.7072C15.4804 12.8947 15.7348 13.0001 16 13.0001C16.2652 13.0001 16.5196 12.8947 16.7071 12.7072C16.8946 12.5196 17 12.2653 17 12.0001V4.4138L19.2925 6.70755C19.4801 6.8952 19.7346 7.00061 20 7.00061C20.2654 7.00061 20.5199 6.8952 20.7075 6.70755C20.8951 6.51991 21.0006 6.26542 21.0006 6.00005C21.0006 5.73469 20.8951 5.4802 20.7075 5.29255L16.7075 1.29255C16.6146 1.19958 16.5043 1.12582 16.3829 1.07549C16.2615 1.02517 16.1314 0.999268 16 0.999268C15.8686 0.999268 15.7385 1.02517 15.6171 1.07549C15.4957 1.12582 15.3854 1.19958 15.2925 1.29255L11.2925 5.29255C11.1049 5.4802 10.9994 5.73469 10.9994 6.00005C10.9994 6.26542 11.1049 6.51991 11.2925 6.70755C11.4801 6.8952 11.7346 7.00061 12 7.00061C12.2654 7.00061 12.5199 6.8952 12.7075 6.70755ZM19.2925 25.2926L17 27.5863V20.0001C17 19.7348 16.8946 19.4805 16.7071 19.2929C16.5196 19.1054 16.2652 19.0001 16 19.0001C15.7348 19.0001 15.4804 19.1054 15.2929 19.2929C15.1054 19.4805 15 19.7348 15 20.0001V27.5863L12.7075 25.2926C12.5199 25.1049 12.2654 24.9995 12 24.9995C11.7346 24.9995 11.4801 25.1049 11.2925 25.2926C11.1049 25.4802 10.9994 25.7347 10.9994 26.0001C10.9994 26.2654 11.1049 26.5199 11.2925 26.7076L15.2925 30.7076C15.3854 30.8005 15.4957 30.8743 15.6171 30.9246C15.7385 30.9749 15.8686 31.0008 16 31.0008C16.1314 31.0008 16.2615 30.9749 16.3829 30.9246C16.5043 30.8743 16.6146 30.8005 16.7075 30.7076L20.7075 26.7076C20.8951 26.5199 21.0006 26.2654 21.0006 26.0001C21.0006 25.7347 20.8951 25.4802 20.7075 25.2926C20.5199 25.1049 20.2654 24.9995 20 24.9995C19.7346 24.9995 19.4801 25.1049 19.2925 25.2926Z"
177
+ })
178
+ })
179
+ });
180
+ }
163
181
  function IconArrowElbowDownLeft(props) {
164
182
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
165
183
  className: "icon fill icon-arrow-elbow-down-left ".concat(props.className ? props.className : ''),
@@ -185,4 +203,56 @@ function IconArrowUDownLeft(props) {
185
203
  })
186
204
  })
187
205
  });
206
+ }
207
+ function IconArrowsInCardinal(props) {
208
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
209
+ className: "icon fill icon-arrows-in-cardinal ".concat(props.className ? props.className : ''),
210
+ onClick: props.onClick ? props.onClick : undefined,
211
+ style: props.style ? props.style : undefined,
212
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
213
+ viewBox: "0 0 32 32",
214
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
215
+ d: "M11.2925 8.7075C11.1049 8.51986 10.9994 8.26536 10.9994 8C10.9994 7.73464 11.1049 7.48014 11.2925 7.2925C11.4801 7.10486 11.7346 6.99944 12 6.99944C12.2654 6.99944 12.5199 7.10486 12.7075 7.2925L15 9.58625V3C15 2.73478 15.1054 2.48043 15.2929 2.29289C15.4804 2.10536 15.7348 2 16 2C16.2652 2 16.5196 2.10536 16.7071 2.29289C16.8946 2.48043 17 2.73478 17 3V9.58625L19.2925 7.2925C19.4801 7.10486 19.7346 6.99944 20 6.99944C20.2654 6.99944 20.5199 7.10486 20.7075 7.2925C20.8951 7.48014 21.0006 7.73464 21.0006 8C21.0006 8.26536 20.8951 8.51986 20.7075 8.7075L16.7075 12.7075C16.6146 12.8005 16.5043 12.8742 16.3829 12.9246C16.2615 12.9749 16.1314 13.0008 16 13.0008C15.8686 13.0008 15.7385 12.9749 15.6171 12.9246C15.4957 12.8742 15.3854 12.8005 15.2925 12.7075L11.2925 8.7075ZM16.7075 19.2925C16.6146 19.1995 16.5043 19.1258 16.3829 19.0754C16.2615 19.0251 16.1314 18.9992 16 18.9992C15.8686 18.9992 15.7385 19.0251 15.6171 19.0754C15.4957 19.1258 15.3854 19.1995 15.2925 19.2925L11.2925 23.2925C11.1996 23.3854 11.1259 23.4957 11.0756 23.6171C11.0253 23.7385 10.9994 23.8686 10.9994 24C10.9994 24.1314 11.0253 24.2615 11.0756 24.3829C11.1259 24.5043 11.1996 24.6146 11.2925 24.7075C11.4801 24.8951 11.7346 25.0006 12 25.0006C12.1314 25.0006 12.2615 24.9747 12.3829 24.9244C12.5043 24.8741 12.6146 24.8004 12.7075 24.7075L15 22.4137V29C15 29.2652 15.1054 29.5196 15.2929 29.7071C15.4804 29.8946 15.7348 30 16 30C16.2652 30 16.5196 29.8946 16.7071 29.7071C16.8946 29.5196 17 29.2652 17 29V22.4137L19.2925 24.7075C19.3854 24.8004 19.4957 24.8741 19.6171 24.9244C19.7385 24.9747 19.8686 25.0006 20 25.0006C20.1314 25.0006 20.2615 24.9747 20.3829 24.9244C20.5043 24.8741 20.6146 24.8004 20.7075 24.7075C20.8004 24.6146 20.8741 24.5043 20.9244 24.3829C20.9747 24.2615 21.0006 24.1314 21.0006 24C21.0006 23.8686 20.9747 23.7385 20.9244 23.6171C20.8741 23.4957 20.8004 23.3854 20.7075 23.2925L16.7075 19.2925ZM29 15H22.4137L24.7075 12.7075C24.8004 12.6146 24.8741 12.5043 24.9244 12.3829C24.9747 12.2615 25.0006 12.1314 25.0006 12C25.0006 11.8686 24.9747 11.7385 24.9244 11.6171C24.8741 11.4957 24.8004 11.3854 24.7075 11.2925C24.6146 11.1996 24.5043 11.1259 24.3829 11.0756C24.2615 11.0253 24.1314 10.9994 24 10.9994C23.8686 10.9994 23.7385 11.0253 23.6171 11.0756C23.4957 11.1259 23.3854 11.1996 23.2925 11.2925L19.2925 15.2925C19.1995 15.3854 19.1258 15.4957 19.0754 15.6171C19.0251 15.7385 18.9992 15.8686 18.9992 16C18.9992 16.1314 19.0251 16.2615 19.0754 16.3829C19.1258 16.5043 19.1995 16.6146 19.2925 16.7075L23.2925 20.7075C23.3854 20.8004 23.4957 20.8741 23.6171 20.9244C23.7385 20.9747 23.8686 21.0006 24 21.0006C24.1314 21.0006 24.2615 20.9747 24.3829 20.9244C24.5043 20.8741 24.6146 20.8004 24.7075 20.7075C24.8004 20.6146 24.8741 20.5043 24.9244 20.3829C24.9747 20.2615 25.0006 20.1314 25.0006 20C25.0006 19.8686 24.9747 19.7385 24.9244 19.6171C24.8741 19.4957 24.8004 19.3854 24.7075 19.2925L22.4137 17H29C29.2652 17 29.5196 16.8946 29.7071 16.7071C29.8946 16.5196 30 16.2652 30 16C30 15.7348 29.8946 15.4804 29.7071 15.2929C29.5196 15.1054 29.2652 15 29 15ZM12.7075 15.2925L8.7075 11.2925C8.51986 11.1049 8.26536 10.9994 8 10.9994C7.73464 10.9994 7.48014 11.1049 7.2925 11.2925C7.10486 11.4801 6.99944 11.7346 6.99944 12C6.99944 12.2654 7.10486 12.5199 7.2925 12.7075L9.58625 15H3C2.73478 15 2.48043 15.1054 2.29289 15.2929C2.10536 15.4804 2 15.7348 2 16C2 16.2652 2.10536 16.5196 2.29289 16.7071C2.48043 16.8946 2.73478 17 3 17H9.58625L7.2925 19.2925C7.19959 19.3854 7.12589 19.4957 7.07561 19.6171C7.02532 19.7385 6.99944 19.8686 6.99944 20C6.99944 20.1314 7.02532 20.2615 7.07561 20.3829C7.12589 20.5043 7.19959 20.6146 7.2925 20.7075C7.38541 20.8004 7.49571 20.8741 7.6171 20.9244C7.7385 20.9747 7.86861 21.0006 8 21.0006C8.13139 21.0006 8.2615 20.9747 8.3829 20.9244C8.50429 20.8741 8.61459 20.8004 8.7075 20.7075L12.7075 16.7075C12.8005 16.6146 12.8742 16.5043 12.9246 16.3829C12.9749 16.2615 13.0008 16.1314 13.0008 16C13.0008 15.8686 12.9749 15.7385 12.9246 15.6171C12.8742 15.4957 12.8005 15.3854 12.7075 15.2925Z"
216
+ })
217
+ })
218
+ });
219
+ }
220
+ function IconArrowsOutCardinal(props) {
221
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
222
+ className: "icon fill icon-arrows-out-cardinal ".concat(props.className ? props.className : ''),
223
+ onClick: props.onClick ? props.onClick : undefined,
224
+ style: props.style ? props.style : undefined,
225
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
226
+ viewBox: "0 0 32 32",
227
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
228
+ d: "M11.2925 7.70755C11.1995 7.61468 11.1258 7.50439 11.0754 7.38299C11.0251 7.2616 10.9992 7.13147 10.9992 7.00005C10.9992 6.86864 11.0251 6.73851 11.0754 6.61711C11.1258 6.49572 11.1995 6.38543 11.2925 6.29255L15.2925 2.29255C15.3854 2.19958 15.4957 2.12582 15.6171 2.07549C15.7385 2.02517 15.8686 1.99927 16 1.99927C16.1314 1.99927 16.2615 2.02517 16.3829 2.07549C16.5043 2.12582 16.6146 2.19958 16.7075 2.29255L20.7075 6.29255C20.8951 6.4802 21.0005 6.73469 21.0005 7.00005C21.0005 7.26542 20.8951 7.51991 20.7075 7.70755C20.5199 7.8952 20.2654 8.00061 20 8.00061C19.7346 8.00061 19.4801 7.8952 19.2925 7.70755L17 5.4138V12.0001C17 12.2653 16.8946 12.5196 16.7071 12.7072C16.5196 12.8947 16.2652 13.0001 16 13.0001C15.7348 13.0001 15.4804 12.8947 15.2929 12.7072C15.1054 12.5196 15 12.2653 15 12.0001V5.4138L12.7075 7.70755C12.6146 7.80053 12.5043 7.87429 12.3829 7.92461C12.2615 7.97494 12.1314 8.00084 12 8.00084C11.8686 8.00084 11.7385 7.97494 11.6171 7.92461C11.4957 7.87429 11.3854 7.80053 11.2925 7.70755ZM19.2925 24.2926L17 26.5863V20.0001C17 19.7348 16.8946 19.4805 16.7071 19.2929C16.5196 19.1054 16.2652 19.0001 16 19.0001C15.7348 19.0001 15.4804 19.1054 15.2929 19.2929C15.1054 19.4805 15 19.7348 15 20.0001V26.5863L12.7075 24.2926C12.5199 24.1049 12.2654 23.9995 12 23.9995C11.7346 23.9995 11.4801 24.1049 11.2925 24.2926C11.1049 24.4802 10.9994 24.7347 10.9994 25.0001C10.9994 25.2654 11.1049 25.5199 11.2925 25.7076L15.2925 29.7076C15.3854 29.8005 15.4957 29.8743 15.6171 29.9246C15.7385 29.9749 15.8686 30.0008 16 30.0008C16.1314 30.0008 16.2615 29.9749 16.3829 29.9246C16.5043 29.8743 16.6146 29.8005 16.7075 29.7076L20.7075 25.7076C20.8951 25.5199 21.0005 25.2654 21.0005 25.0001C21.0005 24.7347 20.8951 24.4802 20.7075 24.2926C20.5199 24.1049 20.2654 23.9995 20 23.9995C19.7346 23.9995 19.4801 24.1049 19.2925 24.2926ZM29.7075 15.2926L25.7075 11.2926C25.5199 11.1049 25.2654 10.9995 25 10.9995C24.7346 10.9995 24.4801 11.1049 24.2925 11.2926C24.1049 11.4802 23.9994 11.7347 23.9994 12.0001C23.9994 12.2654 24.1049 12.5199 24.2925 12.7076L26.5862 15.0001H20C19.7348 15.0001 19.4804 15.1054 19.2929 15.2929C19.1053 15.4805 19 15.7348 19 16.0001C19 16.2653 19.1053 16.5196 19.2929 16.7072C19.4804 16.8947 19.7348 17.0001 20 17.0001H26.5862L24.2925 19.2926C24.1049 19.4802 23.9994 19.7347 23.9994 20.0001C23.9994 20.2654 24.1049 20.5199 24.2925 20.7076C24.4801 20.8952 24.7346 21.0006 25 21.0006C25.2654 21.0006 25.5199 20.8952 25.7075 20.7076L29.7075 16.7076C29.8005 16.6147 29.8742 16.5044 29.9246 16.383C29.9749 16.2616 30.0008 16.1315 30.0008 16.0001C30.0008 15.8686 29.9749 15.7385 29.9246 15.6171C29.8742 15.4957 29.8005 15.3854 29.7075 15.2926ZM5.41374 17.0001H12C12.2652 17.0001 12.5196 16.8947 12.7071 16.7072C12.8946 16.5196 13 16.2653 13 16.0001C13 15.7348 12.8946 15.4805 12.7071 15.2929C12.5196 15.1054 12.2652 15.0001 12 15.0001H5.41374L7.70749 12.7076C7.89513 12.5199 8.00055 12.2654 8.00055 12.0001C8.00055 11.7347 7.89513 11.4802 7.70749 11.2926C7.51985 11.1049 7.26536 10.9995 6.99999 10.9995C6.73463 10.9995 6.48013 11.1049 6.29249 11.2926L2.29249 15.2926C2.19952 15.3854 2.12576 15.4957 2.07543 15.6171C2.02511 15.7385 1.99921 15.8686 1.99921 16.0001C1.99921 16.1315 2.02511 16.2616 2.07543 16.383C2.12576 16.5044 2.19952 16.6147 2.29249 16.7076L6.29249 20.7076C6.48013 20.8952 6.73463 21.0006 6.99999 21.0006C7.26536 21.0006 7.51985 20.8952 7.70749 20.7076C7.89513 20.5199 8.00055 20.2654 8.00055 20.0001C8.00055 19.7347 7.89513 19.4802 7.70749 19.2926L5.41374 17.0001Z"
229
+ })
230
+ })
231
+ });
232
+ }
233
+ function IconArrowsIn(props) {
234
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
235
+ className: "icon fill icon-arrows-in-cardinal ".concat(props.className ? props.className : ''),
236
+ onClick: props.onClick ? props.onClick : undefined,
237
+ style: props.style ? props.style : undefined,
238
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
239
+ viewBox: "0 0 32 32",
240
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
241
+ d: "M18 13V8.00001C18 7.73479 18.1054 7.48044 18.2929 7.2929C18.4804 7.10536 18.7348 7.00001 19 7.00001C19.2652 7.00001 19.5196 7.10536 19.7071 7.2929C19.8947 7.48044 20 7.73479 20 8.00001V10.5863L25.2925 5.29251C25.4801 5.10487 25.7346 4.99945 26 4.99945C26.2654 4.99945 26.5199 5.10487 26.7075 5.29251C26.8951 5.48015 27.0006 5.73464 27.0006 6.00001C27.0006 6.26537 26.8951 6.51987 26.7075 6.70751L21.4138 12H24C24.2652 12 24.5196 12.1054 24.7071 12.2929C24.8947 12.4804 25 12.7348 25 13C25 13.2652 24.8947 13.5196 24.7071 13.7071C24.5196 13.8946 24.2652 14 24 14H19C18.7348 14 18.4804 13.8946 18.2929 13.7071C18.1054 13.5196 18 13.2652 18 13ZM13 18H8.00001C7.73479 18 7.48044 18.1054 7.2929 18.2929C7.10536 18.4804 7.00001 18.7348 7.00001 19C7.00001 19.2652 7.10536 19.5196 7.2929 19.7071C7.48044 19.8947 7.73479 20 8.00001 20H10.5863L5.29251 25.2925C5.10487 25.4801 4.99945 25.7346 4.99945 26C4.99945 26.2654 5.10487 26.5199 5.29251 26.7075C5.48015 26.8951 5.73464 27.0006 6.00001 27.0006C6.26537 27.0006 6.51987 26.8951 6.70751 26.7075L12 21.4138V24C12 24.2652 12.1054 24.5196 12.2929 24.7071C12.4804 24.8947 12.7348 25 13 25C13.2652 25 13.5196 24.8947 13.7071 24.7071C13.8946 24.5196 14 24.2652 14 24V19C14 18.7348 13.8946 18.4804 13.7071 18.2929C13.5196 18.1054 13.2652 18 13 18ZM21.4138 20H24C24.2652 20 24.5196 19.8947 24.7071 19.7071C24.8947 19.5196 25 19.2652 25 19C25 18.7348 24.8947 18.4804 24.7071 18.2929C24.5196 18.1054 24.2652 18 24 18H19C18.7348 18 18.4804 18.1054 18.2929 18.2929C18.1054 18.4804 18 18.7348 18 19V24C18 24.2652 18.1054 24.5196 18.2929 24.7071C18.4804 24.8947 18.7348 25 19 25C19.2652 25 19.5196 24.8947 19.7071 24.7071C19.8947 24.5196 20 24.2652 20 24V21.4138L25.2925 26.7075C25.3854 26.8004 25.4957 26.8741 25.6171 26.9244C25.7385 26.9747 25.8686 27.0006 26 27.0006C26.1314 27.0006 26.2615 26.9747 26.3829 26.9244C26.5043 26.8741 26.6146 26.8004 26.7075 26.7075C26.8004 26.6146 26.8741 26.5043 26.9244 26.3829C26.9747 26.2615 27.0006 26.1314 27.0006 26C27.0006 25.8686 26.9747 25.7385 26.9244 25.6171C26.8741 25.4957 26.8004 25.3854 26.7075 25.2925L21.4138 20ZM13 7.00001C12.7348 7.00001 12.4804 7.10536 12.2929 7.2929C12.1054 7.48044 12 7.73479 12 8.00001V10.5863L6.70751 5.29251C6.51987 5.10487 6.26537 4.99945 6.00001 4.99945C5.73464 4.99945 5.48015 5.10487 5.29251 5.29251C5.10487 5.48015 4.99945 5.73464 4.99945 6.00001C4.99945 6.26537 5.10487 6.51987 5.29251 6.70751L10.5863 12H8.00001C7.73479 12 7.48044 12.1054 7.2929 12.2929C7.10536 12.4804 7.00001 12.7348 7.00001 13C7.00001 13.2652 7.10536 13.5196 7.2929 13.7071C7.48044 13.8946 7.73479 14 8.00001 14H13C13.2652 14 13.5196 13.8946 13.7071 13.7071C13.8946 13.5196 14 13.2652 14 13V8.00001C14 7.73479 13.8946 7.48044 13.7071 7.2929C13.5196 7.10536 13.2652 7.00001 13 7.00001Z"
242
+ })
243
+ })
244
+ });
245
+ }
246
+ function IconArrowsOut(props) {
247
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
248
+ className: "icon fill icon-arrows-in-cardinal ".concat(props.className ? props.className : ''),
249
+ onClick: props.onClick ? props.onClick : undefined,
250
+ style: props.style ? props.style : undefined,
251
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
252
+ viewBox: "0 0 32 32",
253
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
254
+ d: "M27 6V12C27 12.2652 26.8946 12.5196 26.7071 12.7071C26.5196 12.8946 26.2652 13 26 13C25.7348 13 25.4804 12.8946 25.2929 12.7071C25.1054 12.5196 25 12.2652 25 12V8.41375L19.7075 13.7075C19.5199 13.8951 19.2654 14.0006 19 14.0006C18.7346 14.0006 18.4801 13.8951 18.2925 13.7075C18.1049 13.5199 17.9994 13.2654 17.9994 13C17.9994 12.7346 18.1049 12.4801 18.2925 12.2925L23.5863 7H20C19.7348 7 19.4804 6.89464 19.2929 6.70711C19.1054 6.51957 19 6.26522 19 6C19 5.73478 19.1054 5.48043 19.2929 5.29289C19.4804 5.10536 19.7348 5 20 5H26C26.2652 5 26.5196 5.10536 26.7071 5.29289C26.8946 5.48043 27 5.73478 27 6ZM12.2925 18.2925L7 23.5863V20C7 19.7348 6.89464 19.4804 6.70711 19.2929C6.51957 19.1054 6.26522 19 6 19C5.73478 19 5.48043 19.1054 5.29289 19.2929C5.10536 19.4804 5 19.7348 5 20V26C5 26.2652 5.10536 26.5196 5.29289 26.7071C5.48043 26.8946 5.73478 27 6 27H12C12.2652 27 12.5196 26.8946 12.7071 26.7071C12.8946 26.5196 13 26.2652 13 26C13 25.7348 12.8946 25.4804 12.7071 25.2929C12.5196 25.1054 12.2652 25 12 25H8.41375L13.7075 19.7075C13.8951 19.5199 14.0006 19.2654 14.0006 19C14.0006 18.7346 13.8951 18.4801 13.7075 18.2925C13.5199 18.1049 13.2654 17.9994 13 17.9994C12.7346 17.9994 12.4801 18.1049 12.2925 18.2925ZM26 19C25.7348 19 25.4804 19.1054 25.2929 19.2929C25.1054 19.4804 25 19.7348 25 20V23.5863L19.7075 18.2925C19.5199 18.1049 19.2654 17.9994 19 17.9994C18.7346 17.9994 18.4801 18.1049 18.2925 18.2925C18.1049 18.4801 17.9994 18.7346 17.9994 19C17.9994 19.2654 18.1049 19.5199 18.2925 19.7075L23.5863 25H20C19.7348 25 19.4804 25.1054 19.2929 25.2929C19.1054 25.4804 19 25.7348 19 26C19 26.2652 19.1054 26.5196 19.2929 26.7071C19.4804 26.8946 19.7348 27 20 27H26C26.2652 27 26.5196 26.8946 26.7071 26.7071C26.8946 26.5196 27 26.2652 27 26V20C27 19.7348 26.8946 19.4804 26.7071 19.2929C26.5196 19.1054 26.2652 19 26 19ZM8.41375 7H12C12.2652 7 12.5196 6.89464 12.7071 6.70711C12.8946 6.51957 13 6.26522 13 6C13 5.73478 12.8946 5.48043 12.7071 5.29289C12.5196 5.10536 12.2652 5 12 5H6C5.73478 5 5.48043 5.10536 5.29289 5.29289C5.10536 5.48043 5 5.73478 5 6V12C5 12.2652 5.10536 12.5196 5.29289 12.7071C5.48043 12.8946 5.73478 13 6 13C6.26522 13 6.51957 12.8946 6.70711 12.7071C6.89464 12.5196 7 12.2652 7 12V8.41375L12.2925 13.7075C12.4801 13.8951 12.7346 14.0006 13 14.0006C13.2654 14.0006 13.5199 13.8951 13.7075 13.7075C13.8951 13.5199 14.0006 13.2654 14.0006 13C14.0006 12.7346 13.8951 12.4801 13.7075 12.2925L8.41375 7Z"
255
+ })
256
+ })
257
+ });
188
258
  }
@@ -20,7 +20,7 @@ exports.IconCreditCard = IconCreditCard;
20
20
  exports.IconCurrencyRUB = IconCurrencyRUB;
21
21
  exports.IconEgg = IconEgg;
22
22
  exports.IconForkKnife = IconForkKnife;
23
- exports.IconGrain = IconGrain;
23
+ exports.IconGrains = IconGrains;
24
24
  exports.IconHamburger = IconHamburger;
25
25
  exports.IconHandCoins = IconHandCoins;
26
26
  exports.IconPintGlass = IconPintGlass;
@@ -358,7 +358,7 @@ function IconPintGlass(props) {
358
358
  }
359
359
  function IconCookie(props) {
360
360
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
361
- className: "icon fill icon-cooke ".concat(props.className ? props.className : ''),
361
+ className: "icon fill icon-cookie ".concat(props.className ? props.className : ''),
362
362
  onClick: props.onClick ? props.onClick : undefined,
363
363
  style: props.style ? props.style : undefined,
364
364
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
@@ -369,9 +369,9 @@ function IconCookie(props) {
369
369
  })
370
370
  });
371
371
  }
372
- function IconGrain(props) {
372
+ function IconGrains(props) {
373
373
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
374
- className: "icon fill icon-grain ".concat(props.className ? props.className : ''),
374
+ className: "icon fill icon-grains ".concat(props.className ? props.className : ''),
375
375
  onClick: props.onClick ? props.onClick : undefined,
376
376
  style: props.style ? props.style : undefined,
377
377
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
@@ -7,12 +7,16 @@ exports.IconCircle = IconCircle;
7
7
  exports.IconCirclesFour = IconCirclesFour;
8
8
  exports.IconCirclesThree = IconCirclesThree;
9
9
  exports.IconCirclesThreePlus = IconCirclesThreePlus;
10
+ exports.IconColumnsPlusLeft = IconColumnsPlusLeft;
11
+ exports.IconColumnsPlusRight = IconColumnsPlusRight;
10
12
  exports.IconEraser = IconEraser;
11
13
  exports.IconEye = IconEye;
12
14
  exports.IconEyeClosed = IconEyeClosed;
13
15
  exports.IconGridNine = IconGridNine;
14
16
  exports.IconHighlighter = IconHighlighter;
15
17
  exports.IconPalette = IconPalette;
18
+ exports.IconRowsPlusBottom = IconRowsPlusBottom;
19
+ exports.IconRowsPlusTop = IconRowsPlusTop;
16
20
  exports.IconRuler = IconRuler;
17
21
  exports.IconSquare = IconSquare;
18
22
  exports.IconSquaresFour = IconSquaresFour;
@@ -241,4 +245,56 @@ function IconEye(props) {
241
245
  })
242
246
  })
243
247
  });
248
+ }
249
+ function IconRowsPlusBottom(props) {
250
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
251
+ className: "icon fill icon-rows-plus-bottom ".concat(props.className ? props.className : ''),
252
+ onClick: props.onClick ? props.onClick : undefined,
253
+ style: props.style ? props.style : undefined,
254
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
255
+ viewBox: "0 0 32 32",
256
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
257
+ d: "M26 14H6C5.46957 14 4.96086 14.2107 4.58579 14.5858C4.21071 14.9609 4 15.4696 4 16V19C4 19.5304 4.21071 20.0391 4.58579 20.4142C4.96086 20.7893 5.46957 21 6 21H26C26.5304 21 27.0391 20.7893 27.4142 20.4142C27.7893 20.0391 28 19.5304 28 19V16C28 15.4696 27.7893 14.9609 27.4142 14.5858C27.0391 14.2107 26.5304 14 26 14ZM26 19H6V16H26V19ZM26 5H6C5.46957 5 4.96086 5.21071 4.58579 5.58579C4.21071 5.96086 4 6.46957 4 7V10C4 10.5304 4.21071 11.0391 4.58579 11.4142C4.96086 11.7893 5.46957 12 6 12H26C26.5304 12 27.0391 11.7893 27.4142 11.4142C27.7893 11.0391 28 10.5304 28 10V7C28 6.46957 27.7893 5.96086 27.4142 5.58579C27.0391 5.21071 26.5304 5 26 5ZM26 10H6V7H26V10ZM20 27C20 27.2652 19.8946 27.5196 19.7071 27.7071C19.5196 27.8946 19.2652 28 19 28H17V30C17 30.2652 16.8946 30.5196 16.7071 30.7071C16.5196 30.8946 16.2652 31 16 31C15.7348 31 15.4804 30.8946 15.2929 30.7071C15.1054 30.5196 15 30.2652 15 30V28H13C12.7348 28 12.4804 27.8946 12.2929 27.7071C12.1054 27.5196 12 27.2652 12 27C12 26.7348 12.1054 26.4804 12.2929 26.2929C12.4804 26.1054 12.7348 26 13 26H15V24C15 23.7348 15.1054 23.4804 15.2929 23.2929C15.4804 23.1054 15.7348 23 16 23C16.2652 23 16.5196 23.1054 16.7071 23.2929C16.8946 23.4804 17 23.7348 17 24V26H19C19.2652 26 19.5196 26.1054 19.7071 26.2929C19.8946 26.4804 20 26.7348 20 27Z"
258
+ })
259
+ })
260
+ });
261
+ }
262
+ function IconRowsPlusTop(props) {
263
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
264
+ className: "icon fill icon-rows-plus-top ".concat(props.className ? props.className : ''),
265
+ onClick: props.onClick ? props.onClick : undefined,
266
+ style: props.style ? props.style : undefined,
267
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
268
+ viewBox: "0 0 32 32",
269
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
270
+ d: "M26 20H6C5.46957 20 4.96086 20.2107 4.58579 20.5858C4.21071 20.9609 4 21.4696 4 22V25C4 25.5304 4.21071 26.0391 4.58579 26.4142C4.96086 26.7893 5.46957 27 6 27H26C26.5304 27 27.0391 26.7893 27.4142 26.4142C27.7893 26.0391 28 25.5304 28 25V22C28 21.4696 27.7893 20.9609 27.4142 20.5858C27.0391 20.2107 26.5304 20 26 20ZM26 25H6V22H26V25ZM26 11H6C5.46957 11 4.96086 11.2107 4.58579 11.5858C4.21071 11.9609 4 12.4696 4 13V16C4 16.5304 4.21071 17.0391 4.58579 17.4142C4.96086 17.7893 5.46957 18 6 18H26C26.5304 18 27.0391 17.7893 27.4142 17.4142C27.7893 17.0391 28 16.5304 28 16V13C28 12.4696 27.7893 11.9609 27.4142 11.5858C27.0391 11.2107 26.5304 11 26 11ZM26 16H6V13H26V16ZM12 5C12 4.73478 12.1054 4.48043 12.2929 4.29289C12.4804 4.10536 12.7348 4 13 4H15V2C15 1.73478 15.1054 1.48043 15.2929 1.29289C15.4804 1.10536 15.7348 1 16 1C16.2652 1 16.5196 1.10536 16.7071 1.29289C16.8946 1.48043 17 1.73478 17 2V4H19C19.2652 4 19.5196 4.10536 19.7071 4.29289C19.8946 4.48043 20 4.73478 20 5C20 5.26522 19.8946 5.51957 19.7071 5.70711C19.5196 5.89464 19.2652 6 19 6H17V8C17 8.26522 16.8946 8.51957 16.7071 8.70711C16.5196 8.89464 16.2652 9 16 9C15.7348 9 15.4804 8.89464 15.2929 8.70711C15.1054 8.51957 15 8.26522 15 8V6H13C12.7348 6 12.4804 5.89464 12.2929 5.70711C12.1054 5.51957 12 5.26522 12 5Z"
271
+ })
272
+ })
273
+ });
274
+ }
275
+ function IconColumnsPlusLeft(props) {
276
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
277
+ className: "icon fill icon-columns-plus-left ".concat(props.className ? props.className : ''),
278
+ onClick: props.onClick ? props.onClick : undefined,
279
+ style: props.style ? props.style : undefined,
280
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
281
+ viewBox: "0 0 32 32",
282
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
283
+ d: "M16 4H13C12.4696 4 11.9609 4.21071 11.5858 4.58579C11.2107 4.96086 11 5.46957 11 6V26C11 26.5304 11.2107 27.0391 11.5858 27.4142C11.9609 27.7893 12.4696 28 13 28H16C16.5304 28 17.0391 27.7893 17.4142 27.4142C17.7893 27.0391 18 26.5304 18 26V6C18 5.46957 17.7893 4.96086 17.4142 4.58579C17.0391 4.21071 16.5304 4 16 4ZM16 26H13V6H16V26ZM25 4H22C21.4696 4 20.9609 4.21071 20.5858 4.58579C20.2107 4.96086 20 5.46957 20 6V26C20 26.5304 20.2107 27.0391 20.5858 27.4142C20.9609 27.7893 21.4696 28 22 28H25C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26V6C27 5.46957 26.7893 4.96086 26.4142 4.58579C26.0391 4.21071 25.5304 4 25 4ZM25 26H22V6H25V26ZM9 16C9 16.2652 8.89464 16.5196 8.70711 16.7071C8.51957 16.8946 8.26522 17 8 17H6V19C6 19.2652 5.89464 19.5196 5.70711 19.7071C5.51957 19.8946 5.26522 20 5 20C4.73478 20 4.48043 19.8946 4.29289 19.7071C4.10536 19.5196 4 19.2652 4 19V17H2C1.73478 17 1.48043 16.8946 1.29289 16.7071C1.10536 16.5196 1 16.2652 1 16C1 15.7348 1.10536 15.4804 1.29289 15.2929C1.48043 15.1054 1.73478 15 2 15H4V13C4 12.7348 4.10536 12.4804 4.29289 12.2929C4.48043 12.1054 4.73478 12 5 12C5.26522 12 5.51957 12.1054 5.70711 12.2929C5.89464 12.4804 6 12.7348 6 13V15H8C8.26522 15 8.51957 15.1054 8.70711 15.2929C8.89464 15.4804 9 15.7348 9 16Z"
284
+ })
285
+ })
286
+ });
287
+ }
288
+ function IconColumnsPlusRight(props) {
289
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
290
+ className: "icon fill icon-columns-plus-right ".concat(props.className ? props.className : ''),
291
+ onClick: props.onClick ? props.onClick : undefined,
292
+ style: props.style ? props.style : undefined,
293
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
294
+ viewBox: "0 0 32 32",
295
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
296
+ d: "M10 4H7C6.46957 4 5.96086 4.21071 5.58579 4.58579C5.21071 4.96086 5 5.46957 5 6V26C5 26.5304 5.21071 27.0391 5.58579 27.4142C5.96086 27.7893 6.46957 28 7 28H10C10.5304 28 11.0391 27.7893 11.4142 27.4142C11.7893 27.0391 12 26.5304 12 26V6C12 5.46957 11.7893 4.96086 11.4142 4.58579C11.0391 4.21071 10.5304 4 10 4ZM10 26H7V6H10V26ZM19 4H16C15.4696 4 14.9609 4.21071 14.5858 4.58579C14.2107 4.96086 14 5.46957 14 6V26C14 26.5304 14.2107 27.0391 14.5858 27.4142C14.9609 27.7893 15.4696 28 16 28H19C19.5304 28 20.0391 27.7893 20.4142 27.4142C20.7893 27.0391 21 26.5304 21 26V6C21 5.46957 20.7893 4.96086 20.4142 4.58579C20.0391 4.21071 19.5304 4 19 4ZM19 26H16V6H19V26ZM31 16C31 16.2652 30.8946 16.5196 30.7071 16.7071C30.5196 16.8946 30.2652 17 30 17H28V19C28 19.2652 27.8946 19.5196 27.7071 19.7071C27.5196 19.8946 27.2652 20 27 20C26.7348 20 26.4804 19.8946 26.2929 19.7071C26.1054 19.5196 26 19.2652 26 19V17H24C23.7348 17 23.4804 16.8946 23.2929 16.7071C23.1054 16.5196 23 16.2652 23 16C23 15.7348 23.1054 15.4804 23.2929 15.2929C23.4804 15.1054 23.7348 15 24 15H26V13C26 12.7348 26.1054 12.4804 26.2929 12.2929C26.4804 12.1054 26.7348 12 27 12C27.2652 12 27.5196 12.1054 27.7071 12.2929C27.8946 12.4804 28 12.7348 28 13V15H30C30.2652 15 30.5196 15.1054 30.7071 15.2929C30.8946 15.4804 31 15.7348 31 16Z"
297
+ })
298
+ })
299
+ });
244
300
  }
@@ -3,26 +3,12 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.IconCalendar = IconCalendar;
7
6
  exports.IconFlag = IconFlag;
8
7
  exports.IconFlagPennant = IconFlagPennant;
9
8
  exports.IconMapPin = IconMapPin;
10
9
  exports.IconMapPinSimpleArea = IconMapPinSimpleArea;
11
10
  exports.IconTruck = IconTruck;
12
11
  var _jsxRuntime = require("react/jsx-runtime");
13
- function IconCalendar(props) {
14
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
15
- className: "icon fill icon-calendar ".concat(props.className ? props.className : ''),
16
- onClick: props.onClick ? props.onClick : undefined,
17
- style: props.style ? props.style : undefined,
18
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
19
- viewBox: "0 0 32 32",
20
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
21
- d: "M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z"
22
- })
23
- })
24
- });
25
- }
26
12
  function IconFlag(props) {
27
13
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
28
14
  className: "icon fill icon-flag ".concat(props.className ? props.className : ''),
@@ -39,6 +39,10 @@ exports.IconFolderPlus = IconFolderPlus;
39
39
  exports.IconFolderSimpleDashed = IconFolderSimpleDashed;
40
40
  exports.IconFolderSimpleMinus = IconFolderSimpleMinus;
41
41
  exports.IconFolderSimplePlus = IconFolderSimplePlus;
42
+ exports.IconFunnel = IconFunnel;
43
+ exports.IconFunnelSimple = IconFunnelSimple;
44
+ exports.IconFunnelSimpleX = IconFunnelSimpleX;
45
+ exports.IconFunnelX = IconFunnelX;
42
46
  exports.IconList = IconList;
43
47
  exports.IconListDashes = IconListDashes;
44
48
  exports.IconListNumbers = IconListNumbers;
@@ -49,6 +53,9 @@ exports.IconPaperClip = IconPaperClip;
49
53
  exports.IconParagraph = IconParagraph;
50
54
  exports.IconSortAscending = IconSortAscending;
51
55
  exports.IconSortDescending = IconSortDescending;
56
+ exports.IconTextAlignCenter = IconTextAlignCenter;
57
+ exports.IconTextAlignLeft = IconTextAlignLeft;
58
+ exports.IconTextAlignRight = IconTextAlignRight;
52
59
  exports.IconTextB = IconTextB;
53
60
  exports.IconTextH = IconTextH;
54
61
  exports.IconTextHFive = IconTextHFive;
@@ -843,4 +850,95 @@ function IconFolderSimplePlus(props) {
843
850
  })
844
851
  })
845
852
  });
853
+ }
854
+ function IconFunnel(props) {
855
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
856
+ className: "icon fill icon-funnel ".concat(props.className ? props.className : ''),
857
+ onClick: props.onClick ? props.onClick : undefined,
858
+ style: props.style ? props.style : undefined,
859
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
860
+ viewBox: "0 0 32 32",
861
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
862
+ d: "M28.825 6.19122C28.6711 5.83561 28.416 5.53309 28.0915 5.32129C27.767 5.10949 27.3875 4.99775 27 4.99997H4.99997C4.61288 5.00073 4.23433 5.11381 3.91025 5.32548C3.58616 5.53715 3.33047 5.83832 3.17418 6.19245C3.01789 6.54658 2.96772 6.93846 3.02977 7.32054C3.09181 7.70262 3.2634 8.05849 3.52372 8.34497L3.53372 8.35622L12 17.3962V27C11.9999 27.3619 12.098 27.7172 12.284 28.0277C12.4699 28.3383 12.7366 28.5926 13.0557 28.7635C13.3748 28.9344 13.7343 29.0155 14.0958 28.9981C14.4574 28.9808 14.8075 28.8656 15.1087 28.665L19.1087 25.9975C19.3829 25.8148 19.6078 25.5673 19.7632 25.2768C19.9187 24.9863 20 24.6619 20 24.3325V17.3962L28.4675 8.35622L28.4775 8.34497C28.7405 8.0598 28.9138 7.70346 28.9756 7.32043C29.0374 6.93741 28.985 6.54466 28.825 6.19122ZM18.2725 16.3225C18.0995 16.5059 18.0021 16.7479 18 17V24.3325L14 27V17C14 16.746 13.9035 16.5016 13.73 16.3162L4.99997 6.99997H27L18.2725 16.3225Z"
863
+ })
864
+ })
865
+ });
866
+ }
867
+ function IconFunnelX(props) {
868
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
869
+ className: "icon fill icon-funnel-x ".concat(props.className ? props.className : ''),
870
+ onClick: props.onClick ? props.onClick : undefined,
871
+ style: props.style ? props.style : undefined,
872
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
873
+ viewBox: "0 0 32 32",
874
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
875
+ d: "M28.4775 8.345C28.7379 8.05844 28.9095 7.70246 28.9715 7.32026C29.0335 6.93807 28.9832 6.54609 28.8268 6.19191C28.6703 5.83773 28.4144 5.53657 28.0901 5.325C27.7659 5.11342 27.3872 5.00052 27 5H4.99997C4.61288 5.00076 4.23433 5.11384 3.91025 5.32551C3.58616 5.53718 3.33047 5.83835 3.17418 6.19248C3.01789 6.54661 2.96772 6.93849 3.02977 7.32057C3.09181 7.70265 3.2634 8.05852 3.52372 8.345L3.53372 8.35625L12 17.3962V27C11.9999 27.362 12.098 27.7172 12.284 28.0278C12.4699 28.3383 12.7366 28.5926 13.0557 28.7635C13.3748 28.9344 13.7343 29.0155 14.0958 28.9982C14.4574 28.9808 14.8075 28.8657 15.1087 28.665L19.1087 25.9975C19.3829 25.8149 19.6078 25.5673 19.7632 25.2768C19.9187 24.9864 20 24.662 20 24.3325V17.3962L28.4662 8.35625L28.4775 8.345ZM18.2737 16.3237C18.1006 16.5066 18.0028 16.7482 18 17V24.3325L14 27V17C13.9997 16.7465 13.9032 16.5026 13.73 16.3175L4.99997 7H27L18.2737 16.3237ZM30.71 26.3C30.8976 26.4876 31.003 26.7421 31.003 27.0075C31.003 27.2729 30.8976 27.5274 30.71 27.715C30.5223 27.9026 30.2678 28.0081 30.0025 28.0081C29.7371 28.0081 29.4826 27.9026 29.295 27.715L27 25.415L24.7075 27.7087C24.5198 27.8962 24.2654 28.0015 24.0002 28.0014C23.7349 28.0012 23.4806 27.8958 23.2931 27.7081C23.1056 27.5205 23.0004 27.2661 23.0005 27.0008C23.0006 26.7356 23.1061 26.4812 23.2937 26.2938L25.5862 24L23.2937 21.7062C23.1141 21.5172 23.0154 21.2654 23.0188 21.0047C23.0221 20.7439 23.1272 20.4948 23.3116 20.3104C23.496 20.126 23.7451 20.0209 24.0059 20.0176C24.2667 20.0142 24.5184 20.1129 24.7075 20.2925L27 22.5863L29.2925 20.2938C29.4799 20.1061 29.7343 20.0006 29.9995 20.0005C30.2648 20.0004 30.5192 20.1056 30.7068 20.2931C30.8945 20.4806 31 20.7349 31.0001 21.0002C31.0002 21.2654 30.8949 21.5199 30.7075 21.7075L28.4137 24L30.71 26.3Z"
876
+ })
877
+ })
878
+ });
879
+ }
880
+ function IconFunnelSimple(props) {
881
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
882
+ className: "icon fill icon-funnel-simple ".concat(props.className ? props.className : ''),
883
+ onClick: props.onClick ? props.onClick : undefined,
884
+ style: props.style ? props.style : undefined,
885
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
886
+ viewBox: "0 0 32 32",
887
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
888
+ d: "M25 17C25 17.2652 24.8946 17.5196 24.7071 17.7071C24.5196 17.8946 24.2652 18 24 18H8C7.73478 18 7.48043 17.8946 7.29289 17.7071C7.10536 17.5196 7 17.2652 7 17C7 16.7348 7.10536 16.4804 7.29289 16.2929C7.48043 16.1054 7.73478 16 8 16H24C24.2652 16 24.5196 16.1054 24.7071 16.2929C24.8946 16.4804 25 16.7348 25 17ZM29 10H3C2.73478 10 2.48043 10.1054 2.29289 10.2929C2.10536 10.4804 2 10.7348 2 11C2 11.2652 2.10536 11.5196 2.29289 11.7071C2.48043 11.8946 2.73478 12 3 12H29C29.2652 12 29.5196 11.8946 29.7071 11.7071C29.8946 11.5196 30 11.2652 30 11C30 10.7348 29.8946 10.4804 29.7071 10.2929C29.5196 10.1054 29.2652 10 29 10ZM19 22H13C12.7348 22 12.4804 22.1054 12.2929 22.2929C12.1054 22.4804 12 22.7348 12 23C12 23.2652 12.1054 23.5196 12.2929 23.7071C12.4804 23.8946 12.7348 24 13 24H19C19.2652 24 19.5196 23.8946 19.7071 23.7071C19.8946 23.5196 20 23.2652 20 23C20 22.7348 19.8946 22.4804 19.7071 22.2929C19.5196 22.1054 19.2652 22 19 22Z"
889
+ })
890
+ })
891
+ });
892
+ }
893
+ function IconFunnelSimpleX(props) {
894
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
895
+ className: "icon fill icon-funnel-simple-x ".concat(props.className ? props.className : ''),
896
+ onClick: props.onClick ? props.onClick : undefined,
897
+ style: props.style ? props.style : undefined,
898
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
899
+ viewBox: "0 0 32 32",
900
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
901
+ d: "M24 18H8C7.73478 18 7.48043 17.8946 7.29289 17.7071C7.10536 17.5196 7 17.2652 7 17C7 16.7348 7.10536 16.4804 7.29289 16.2929C7.48043 16.1054 7.73478 16 8 16H24C24.2652 16 24.5196 16.1054 24.7071 16.2929C24.8946 16.4804 25 16.7348 25 17C25 17.2652 24.8946 17.5196 24.7071 17.7071C24.5196 17.8946 24.2652 18 24 18ZM29 10H3C2.73478 10 2.48043 10.1054 2.29289 10.2929C2.10536 10.4804 2 10.7348 2 11C2 11.2652 2.10536 11.5196 2.29289 11.7071C2.48043 11.8946 2.73478 12 3 12H29C29.2652 12 29.5196 11.8946 29.7071 11.7071C29.8946 11.5196 30 11.2652 30 11C30 10.7348 29.8946 10.4804 29.7071 10.2929C29.5196 10.1054 29.2652 10 29 10ZM16 22H13C12.7348 22 12.4804 22.1054 12.2929 22.2929C12.1054 22.4804 12 22.7348 12 23C12 23.2652 12.1054 23.5196 12.2929 23.7071C12.4804 23.8946 12.7348 24 13 24H16C16.2652 24 16.5196 23.8946 16.7071 23.7071C16.8946 23.5196 17 23.2652 17 23C17 22.7348 16.8946 22.4804 16.7071 22.2929C16.5196 22.1054 16.2652 22 16 22ZM27.7075 21.2925C27.6146 21.1995 27.5043 21.1258 27.3829 21.0754C27.2615 21.0251 27.1314 20.9992 27 20.9992C26.8686 20.9992 26.7385 21.0251 26.6171 21.0754C26.4957 21.1258 26.3854 21.1995 26.2925 21.2925L24 23.5863L21.7075 21.2925C21.5199 21.1049 21.2654 20.9994 21 20.9994C20.7346 20.9994 20.4801 21.1049 20.2925 21.2925C20.1049 21.4801 19.9994 21.7346 19.9994 22C19.9994 22.2654 20.1049 22.5199 20.2925 22.7075L22.5863 25L20.2925 27.2925C20.1049 27.4801 19.9994 27.7346 19.9994 28C19.9994 28.2654 20.1049 28.5199 20.2925 28.7075C20.4801 28.8951 20.7346 29.0006 21 29.0006C21.2654 29.0006 21.5199 28.8951 21.7075 28.7075L24 26.4137L26.2925 28.7075C26.3854 28.8004 26.4957 28.8741 26.6171 28.9244C26.7385 28.9747 26.8686 29.0006 27 29.0006C27.1314 29.0006 27.2615 28.9747 27.3829 28.9244C27.5043 28.8741 27.6146 28.8004 27.7075 28.7075C27.8004 28.6146 27.8741 28.5043 27.9244 28.3829C27.9747 28.2615 28.0006 28.1314 28.0006 28C28.0006 27.8686 27.9747 27.7385 27.9244 27.6171C27.8741 27.4957 27.8004 27.3854 27.7075 27.2925L25.4137 25L27.7075 22.7075C27.8005 22.6146 27.8742 22.5043 27.9246 22.3829C27.9749 22.2615 28.0008 22.1314 28.0008 22C28.0008 21.8686 27.9749 21.7385 27.9246 21.6171C27.8742 21.4957 27.8005 21.3854 27.7075 21.2925Z"
902
+ })
903
+ })
904
+ });
905
+ }
906
+ function IconTextAlignLeft(props) {
907
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
908
+ className: "icon fill icon-text-align-left ".concat(props.className ? props.className : ''),
909
+ onClick: props.onClick ? props.onClick : undefined,
910
+ style: props.style ? props.style : undefined,
911
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
912
+ viewBox: "0 0 32 32",
913
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
914
+ d: "M4 8C4 7.73478 4.10536 7.48043 4.29289 7.29289C4.48043 7.10536 4.73478 7 5 7H27C27.2652 7 27.5196 7.10536 27.7071 7.29289C27.8946 7.48043 28 7.73478 28 8C28 8.26522 27.8946 8.51957 27.7071 8.70711C27.5196 8.89464 27.2652 9 27 9H5C4.73478 9 4.48043 8.89464 4.29289 8.70711C4.10536 8.51957 4 8.26522 4 8ZM5 14H21C21.2652 14 21.5196 13.8946 21.7071 13.7071C21.8946 13.5196 22 13.2652 22 13C22 12.7348 21.8946 12.4804 21.7071 12.2929C21.5196 12.1054 21.2652 12 21 12H5C4.73478 12 4.48043 12.1054 4.29289 12.2929C4.10536 12.4804 4 12.7348 4 13C4 13.2652 4.10536 13.5196 4.29289 13.7071C4.48043 13.8946 4.73478 14 5 14ZM27 17H5C4.73478 17 4.48043 17.1054 4.29289 17.2929C4.10536 17.4804 4 17.7348 4 18C4 18.2652 4.10536 18.5196 4.29289 18.7071C4.48043 18.8946 4.73478 19 5 19H27C27.2652 19 27.5196 18.8946 27.7071 18.7071C27.8946 18.5196 28 18.2652 28 18C28 17.7348 27.8946 17.4804 27.7071 17.2929C27.5196 17.1054 27.2652 17 27 17ZM21 22H5C4.73478 22 4.48043 22.1054 4.29289 22.2929C4.10536 22.4804 4 22.7348 4 23C4 23.2652 4.10536 23.5196 4.29289 23.7071C4.48043 23.8946 4.73478 24 5 24H21C21.2652 24 21.5196 23.8946 21.7071 23.7071C21.8946 23.5196 22 23.2652 22 23C22 22.7348 21.8946 22.4804 21.7071 22.2929C21.5196 22.1054 21.2652 22 21 22Z"
915
+ })
916
+ })
917
+ });
918
+ }
919
+ function IconTextAlignRight(props) {
920
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
921
+ className: "icon fill icon-text-align-right ".concat(props.className ? props.className : ''),
922
+ onClick: props.onClick ? props.onClick : undefined,
923
+ style: props.style ? props.style : undefined,
924
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
925
+ viewBox: "0 0 32 32",
926
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
927
+ d: "M4 8C4 7.73478 4.10536 7.48043 4.29289 7.29289C4.48043 7.10536 4.73478 7 5 7H27C27.2652 7 27.5196 7.10536 27.7071 7.29289C27.8946 7.48043 28 7.73478 28 8C28 8.26522 27.8946 8.51957 27.7071 8.70711C27.5196 8.89464 27.2652 9 27 9H5C4.73478 9 4.48043 8.89464 4.29289 8.70711C4.10536 8.51957 4 8.26522 4 8ZM27 12H11C10.7348 12 10.4804 12.1054 10.2929 12.2929C10.1054 12.4804 10 12.7348 10 13C10 13.2652 10.1054 13.5196 10.2929 13.7071C10.4804 13.8946 10.7348 14 11 14H27C27.2652 14 27.5196 13.8946 27.7071 13.7071C27.8946 13.5196 28 13.2652 28 13C28 12.7348 27.8946 12.4804 27.7071 12.2929C27.5196 12.1054 27.2652 12 27 12ZM27 17H5C4.73478 17 4.48043 17.1054 4.29289 17.2929C4.10536 17.4804 4 17.7348 4 18C4 18.2652 4.10536 18.5196 4.29289 18.7071C4.48043 18.8946 4.73478 19 5 19H27C27.2652 19 27.5196 18.8946 27.7071 18.7071C27.8946 18.5196 28 18.2652 28 18C28 17.7348 27.8946 17.4804 27.7071 17.2929C27.5196 17.1054 27.2652 17 27 17ZM27 22H11C10.7348 22 10.4804 22.1054 10.2929 22.2929C10.1054 22.4804 10 22.7348 10 23C10 23.2652 10.1054 23.5196 10.2929 23.7071C10.4804 23.8946 10.7348 24 11 24H27C27.2652 24 27.5196 23.8946 27.7071 23.7071C27.8946 23.5196 28 23.2652 28 23C28 22.7348 27.8946 22.4804 27.7071 22.2929C27.5196 22.1054 27.2652 22 27 22Z"
928
+ })
929
+ })
930
+ });
931
+ }
932
+ function IconTextAlignCenter(props) {
933
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
934
+ className: "icon fill icon-text-align-center ".concat(props.className ? props.className : ''),
935
+ onClick: props.onClick ? props.onClick : undefined,
936
+ style: props.style ? props.style : undefined,
937
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
938
+ viewBox: "0 0 32 32",
939
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
940
+ d: "M4 8C4 7.73478 4.10536 7.48043 4.29289 7.29289C4.48043 7.10536 4.73478 7 5 7H27C27.2652 7 27.5196 7.10536 27.7071 7.29289C27.8946 7.48043 28 7.73478 28 8C28 8.26522 27.8946 8.51957 27.7071 8.70711C27.5196 8.89464 27.2652 9 27 9H5C4.73478 9 4.48043 8.89464 4.29289 8.70711C4.10536 8.51957 4 8.26522 4 8ZM8 12C7.73478 12 7.48043 12.1054 7.29289 12.2929C7.10536 12.4804 7 12.7348 7 13C7 13.2652 7.10536 13.5196 7.29289 13.7071C7.48043 13.8946 7.73478 14 8 14H24C24.2652 14 24.5196 13.8946 24.7071 13.7071C24.8946 13.5196 25 13.2652 25 13C25 12.7348 24.8946 12.4804 24.7071 12.2929C24.5196 12.1054 24.2652 12 24 12H8ZM27 17H5C4.73478 17 4.48043 17.1054 4.29289 17.2929C4.10536 17.4804 4 17.7348 4 18C4 18.2652 4.10536 18.5196 4.29289 18.7071C4.48043 18.8946 4.73478 19 5 19H27C27.2652 19 27.5196 18.8946 27.7071 18.7071C27.8946 18.5196 28 18.2652 28 18C28 17.7348 27.8946 17.4804 27.7071 17.2929C27.5196 17.1054 27.2652 17 27 17ZM24 22H8C7.73478 22 7.48043 22.1054 7.29289 22.2929C7.10536 22.4804 7 22.7348 7 23C7 23.2652 7.10536 23.5196 7.29289 23.7071C7.48043 23.8946 7.73478 24 8 24H24C24.2652 24 24.5196 23.8946 24.7071 23.7071C24.8946 23.5196 25 23.2652 25 23C25 22.7348 24.8946 22.4804 24.7071 22.2929C24.5196 22.1054 24.2652 22 24 22Z"
941
+ })
942
+ })
943
+ });
846
944
  }
@@ -50,54 +50,54 @@ function IconCalendarDots(props) {
50
50
  })
51
51
  });
52
52
  }
53
- function IconClockClockwise(props) {
53
+ function IconClock(props) {
54
54
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
55
- className: "icon fill icon-clock-clockwise ".concat(props.className ? props.className : ''),
55
+ className: "icon fill icon-clock ".concat(props.className ? props.className : ''),
56
56
  onClick: props.onClick ? props.onClick : undefined,
57
57
  style: props.style ? props.style : undefined,
58
58
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
59
59
  viewBox: "0 0 32 32",
60
60
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
61
- d: "M16.9998 10V15.4338L21.5148 18.1425C21.7422 18.2791 21.906 18.5005 21.9703 18.7579C22.0345 19.0153 21.9939 19.2876 21.8573 19.515C21.7207 19.7425 21.4993 19.9063 21.242 19.9705C20.9846 20.0348 20.7122 19.9941 20.4848 19.8575L15.4848 16.8575C15.3368 16.7686 15.2143 16.6429 15.1293 16.4927C15.0444 16.3424 14.9997 16.1727 14.9998 16V10C14.9998 9.73483 15.1051 9.48047 15.2927 9.29294C15.4802 9.1054 15.7346 9.00004 15.9998 9.00004C16.265 9.00004 16.5193 9.1054 16.7069 9.29294C16.8944 9.48047 16.9998 9.73483 16.9998 10ZM27.9998 7.00004C27.7346 7.00004 27.4802 7.1054 27.2927 7.29294C27.1051 7.48047 26.9998 7.73483 26.9998 8.00004V10.25C26.206 9.33004 25.396 8.44379 24.4848 7.52129C22.8171 5.85343 20.6949 4.71399 18.3833 4.24536C16.0717 3.77673 13.6733 3.99969 11.4878 4.88638C9.30218 5.77306 7.42636 7.28416 6.09469 9.23085C4.76302 11.1775 4.03454 13.4735 4.00029 15.8318C3.96604 18.1902 4.62752 20.5063 5.9021 22.4909C7.17667 24.4754 9.00781 26.0403 11.1667 26.9901C13.3256 27.9399 15.7165 28.2324 18.0407 27.8311C20.3649 27.4298 22.5194 26.3525 24.2348 24.7338C24.3303 24.6435 24.4071 24.5353 24.4608 24.4153C24.5146 24.2953 24.5441 24.166 24.5478 24.0346C24.5515 23.9032 24.5293 23.7723 24.4825 23.6495C24.4356 23.5267 24.3651 23.4143 24.2748 23.3188C24.1845 23.2233 24.0763 23.1464 23.9563 23.0927C23.8363 23.039 23.707 23.0094 23.5756 23.0057C23.4442 23.002 23.3133 23.0242 23.1905 23.0711C23.0677 23.1179 22.9553 23.1885 22.8598 23.2788C21.4298 24.6264 19.6346 25.5229 17.6982 25.8563C15.7618 26.1897 13.7701 25.9452 11.9718 25.1535C10.1735 24.3617 8.64829 23.0577 7.58666 21.4043C6.52503 19.7509 5.97401 17.8214 6.00241 15.8567C6.03081 13.892 6.63738 11.9793 7.74636 10.3573C8.85534 8.73525 10.4176 7.47589 12.238 6.73643C14.0585 5.99698 16.0564 5.81021 17.9823 6.19945C19.9083 6.58868 21.6769 7.53668 23.0673 8.92504C24.0848 9.95504 24.976 10.9475 25.8748 12H22.9998C22.7346 12 22.4802 12.1054 22.2927 12.2929C22.1051 12.4805 21.9998 12.7348 21.9998 13C21.9998 13.2653 22.1051 13.5196 22.2927 13.7071C22.4802 13.8947 22.7346 14 22.9998 14H27.9998C28.265 14 28.5193 13.8947 28.7069 13.7071C28.8944 13.5196 28.9998 13.2653 28.9998 13V8.00004C28.9998 7.73483 28.8944 7.48047 28.7069 7.29294C28.5193 7.1054 28.265 7.00004 27.9998 7.00004Z"
61
+ d: "M16 3C13.4288 3 10.9154 3.76244 8.77759 5.1909C6.63975 6.61935 4.97351 8.64968 3.98957 11.0251C3.00563 13.4006 2.74819 16.0144 3.2498 18.5362C3.75141 21.0579 4.98953 23.3743 6.80762 25.1924C8.6257 27.0105 10.9421 28.2486 13.4638 28.7502C15.9856 29.2518 18.5995 28.9944 20.9749 28.0104C23.3503 27.0265 25.3807 25.3603 26.8091 23.2224C28.2376 21.0846 29 18.5712 29 16C28.9964 12.5533 27.6256 9.24882 25.1884 6.81163C22.7512 4.37445 19.4467 3.00364 16 3ZM16 27C13.8244 27 11.6977 26.3549 9.88873 25.1462C8.07979 23.9375 6.66989 22.2195 5.83733 20.2095C5.00477 18.1995 4.78693 15.9878 5.21137 13.854C5.63581 11.7202 6.68345 9.7602 8.22183 8.22183C9.76021 6.68345 11.7202 5.6358 13.854 5.21136C15.9878 4.78692 18.1995 5.00476 20.2095 5.83733C22.2195 6.66989 23.9375 8.07979 25.1462 9.88873C26.3549 11.6977 27 13.8244 27 16C26.9967 18.9164 25.8367 21.7123 23.7745 23.7745C21.7123 25.8367 18.9164 26.9967 16 27ZM24 16C24 16.2652 23.8946 16.5196 23.7071 16.7071C23.5196 16.8946 23.2652 17 23 17H16C15.7348 17 15.4804 16.8946 15.2929 16.7071C15.1054 16.5196 15 16.2652 15 16V9C15 8.73478 15.1054 8.48043 15.2929 8.29289C15.4804 8.10536 15.7348 8 16 8C16.2652 8 16.5196 8.10536 16.7071 8.29289C16.8946 8.48043 17 8.73478 17 9V15H23C23.2652 15 23.5196 15.1054 23.7071 15.2929C23.8946 15.4804 24 15.7348 24 16Z"
62
62
  })
63
63
  })
64
64
  });
65
65
  }
66
- function IconClockCounterClockwise(props) {
66
+ function IconClockClockwise(props) {
67
67
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
68
- className: "icon fill icon-clock-counter-clockwise ".concat(props.className ? props.className : ''),
68
+ className: "icon fill icon-clock-clockwise ".concat(props.className ? props.className : ''),
69
69
  onClick: props.onClick ? props.onClick : undefined,
70
70
  style: props.style ? props.style : undefined,
71
71
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
72
72
  viewBox: "0 0 32 32",
73
73
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
74
- d: "M17 10V15.4338L21.515 18.1425C21.7424 18.2791 21.9063 18.5005 21.9705 18.7579C22.0347 19.0152 21.9941 19.2876 21.8575 19.515C21.7209 19.7425 21.4996 19.9063 21.2422 19.9705C20.9848 20.0348 20.7124 19.9941 20.485 19.8575L15.485 16.8575C15.337 16.7686 15.2146 16.6429 15.1296 16.4927C15.0446 16.3424 14.9999 16.1727 15 16V10C15 9.73482 15.1054 9.48047 15.2929 9.29293C15.4804 9.10539 15.7348 9.00004 16 9.00004C16.2652 9.00004 16.5196 9.10539 16.7071 9.29293C16.8946 9.48047 17 9.73482 17 10ZM16 4.00004C14.4225 3.99611 12.8599 4.30508 11.4026 4.90907C9.94527 5.51306 8.62222 6.40008 7.51 7.51879C6.60125 8.43879 5.79375 9.32379 5 10.25V8.00004C5 7.73482 4.89464 7.48047 4.70711 7.29293C4.51957 7.10539 4.26522 7.00004 4 7.00004C3.73478 7.00004 3.48043 7.10539 3.29289 7.29293C3.10536 7.48047 3 7.73482 3 8.00004V13C3 13.2653 3.10536 13.5196 3.29289 13.7071C3.48043 13.8947 3.73478 14 4 14H9C9.26522 14 9.51957 13.8947 9.70711 13.7071C9.89464 13.5196 10 13.2653 10 13C10 12.7348 9.89464 12.4805 9.70711 12.2929C9.51957 12.1054 9.26522 12 9 12H6.125C7.01875 10.9475 7.90875 9.95629 8.92375 8.92879C10.3136 7.53898 12.0821 6.58955 14.0085 6.19913C15.9348 5.80872 17.9335 5.99463 19.7547 6.73364C21.576 7.47266 23.1391 8.73199 24.2487 10.3543C25.3584 11.9766 25.9653 13.8899 25.9938 15.8552C26.0222 17.8205 25.4708 19.7506 24.4086 21.4043C23.3463 23.0581 21.8203 24.3621 20.0212 25.1535C18.2221 25.9448 16.2296 26.1885 14.2928 25.854C12.356 25.5194 10.5607 24.6216 9.13125 23.2725C9.03571 23.1823 8.92333 23.1117 8.80052 23.0648C8.6777 23.018 8.54686 22.9958 8.41547 22.9995C8.28407 23.0032 8.15469 23.0328 8.03472 23.0865C7.91475 23.1402 7.80653 23.217 7.71625 23.3125C7.62597 23.4081 7.55538 23.5205 7.50853 23.6433C7.46168 23.7661 7.43948 23.8969 7.44319 24.0283C7.44691 24.1597 7.47647 24.2891 7.53018 24.4091C7.58389 24.529 7.66071 24.6373 7.75625 24.7275C9.18056 26.0716 10.9122 27.0467 12.8 27.5677C14.6878 28.0886 16.6744 28.1396 18.5865 27.7162C20.4986 27.2929 22.278 26.4079 23.7694 25.1387C25.2608 23.8695 26.4189 22.2545 27.1427 20.4348C27.8664 18.6151 28.1338 16.6459 27.9215 14.699C27.7091 12.7522 27.0236 10.8869 25.9246 9.26595C24.8256 7.64501 23.3466 6.31766 21.6166 5.39977C19.8867 4.48187 17.9584 4.00131 16 4.00004Z"
74
+ d: "M16.9998 10V15.4338L21.5148 18.1425C21.7422 18.2791 21.906 18.5005 21.9703 18.7579C22.0345 19.0153 21.9939 19.2876 21.8573 19.515C21.7207 19.7425 21.4993 19.9063 21.242 19.9705C20.9846 20.0348 20.7122 19.9941 20.4848 19.8575L15.4848 16.8575C15.3368 16.7686 15.2143 16.6429 15.1293 16.4927C15.0444 16.3424 14.9997 16.1727 14.9998 16V10C14.9998 9.73483 15.1051 9.48047 15.2927 9.29294C15.4802 9.1054 15.7346 9.00004 15.9998 9.00004C16.265 9.00004 16.5193 9.1054 16.7069 9.29294C16.8944 9.48047 16.9998 9.73483 16.9998 10ZM27.9998 7.00004C27.7346 7.00004 27.4802 7.1054 27.2927 7.29294C27.1051 7.48047 26.9998 7.73483 26.9998 8.00004V10.25C26.206 9.33004 25.396 8.44379 24.4848 7.52129C22.8171 5.85343 20.6949 4.71399 18.3833 4.24536C16.0717 3.77673 13.6733 3.99969 11.4878 4.88638C9.30218 5.77306 7.42636 7.28416 6.09469 9.23085C4.76302 11.1775 4.03454 13.4735 4.00029 15.8318C3.96604 18.1902 4.62752 20.5063 5.9021 22.4909C7.17667 24.4754 9.00781 26.0403 11.1667 26.9901C13.3256 27.9399 15.7165 28.2324 18.0407 27.8311C20.3649 27.4298 22.5194 26.3525 24.2348 24.7338C24.3303 24.6435 24.4071 24.5353 24.4608 24.4153C24.5146 24.2953 24.5441 24.166 24.5478 24.0346C24.5515 23.9032 24.5293 23.7723 24.4825 23.6495C24.4356 23.5267 24.3651 23.4143 24.2748 23.3188C24.1845 23.2233 24.0763 23.1464 23.9563 23.0927C23.8363 23.039 23.707 23.0094 23.5756 23.0057C23.4442 23.002 23.3133 23.0242 23.1905 23.0711C23.0677 23.1179 22.9553 23.1885 22.8598 23.2788C21.4298 24.6264 19.6346 25.5229 17.6982 25.8563C15.7618 26.1897 13.7701 25.9452 11.9718 25.1535C10.1735 24.3617 8.64829 23.0577 7.58666 21.4043C6.52503 19.7509 5.97401 17.8214 6.00241 15.8567C6.03081 13.892 6.63738 11.9793 7.74636 10.3573C8.85534 8.73525 10.4176 7.47589 12.238 6.73643C14.0585 5.99698 16.0564 5.81021 17.9823 6.19945C19.9083 6.58868 21.6769 7.53668 23.0673 8.92504C24.0848 9.95504 24.976 10.9475 25.8748 12H22.9998C22.7346 12 22.4802 12.1054 22.2927 12.2929C22.1051 12.4805 21.9998 12.7348 21.9998 13C21.9998 13.2653 22.1051 13.5196 22.2927 13.7071C22.4802 13.8947 22.7346 14 22.9998 14H27.9998C28.265 14 28.5193 13.8947 28.7069 13.7071C28.8944 13.5196 28.9998 13.2653 28.9998 13V8.00004C28.9998 7.73483 28.8944 7.48047 28.7069 7.29294C28.5193 7.1054 28.265 7.00004 27.9998 7.00004Z"
75
75
  })
76
76
  })
77
77
  });
78
78
  }
79
- function IconHourglass(props) {
79
+ function IconClockCounterClockwise(props) {
80
80
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
81
- className: "icon fill icon-hourglass ".concat(props.className ? props.className : ''),
81
+ className: "icon fill icon-clock-counter-clockwise ".concat(props.className ? props.className : ''),
82
82
  onClick: props.onClick ? props.onClick : undefined,
83
83
  style: props.style ? props.style : undefined,
84
84
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
85
85
  viewBox: "0 0 32 32",
86
86
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
87
- d: "M25 9.455V5C25 4.46957 24.7893 3.96086 24.4142 3.58579C24.0391 3.21071 23.5304 3 23 3H9C8.46957 3 7.96086 3.21071 7.58579 3.58579C7.21071 3.96086 7 4.46957 7 5V9.5C7.00068 9.81037 7.07326 10.1164 7.21206 10.394C7.35087 10.6716 7.55211 10.9132 7.8 11.1L14.3337 16L7.8 20.9C7.55211 21.0868 7.35087 21.3284 7.21206 21.606C7.07326 21.8836 7.00068 22.1896 7 22.5V27C7 27.5304 7.21071 28.0391 7.58579 28.4142C7.96086 28.7893 8.46957 29 9 29H23C23.5304 29 24.0391 28.7893 24.4142 28.4142C24.7893 28.0391 25 27.5304 25 27V22.545C24.9993 22.2358 24.9273 21.931 24.7896 21.6541C24.652 21.3773 24.4523 21.1359 24.2062 20.9487L17.6588 16L24.2062 11.05C24.4525 10.8632 24.6522 10.6221 24.7899 10.3454C24.9276 10.0688 24.9995 9.76403 25 9.455ZM23 27H9V22.5L16 17.25L23 22.5438V27ZM23 9.455L16 14.75L9 9.5V5H23V9.455Z"
87
+ d: "M17 10V15.4338L21.515 18.1425C21.7424 18.2791 21.9063 18.5005 21.9705 18.7579C22.0347 19.0152 21.9941 19.2876 21.8575 19.515C21.7209 19.7425 21.4996 19.9063 21.2422 19.9705C20.9848 20.0348 20.7124 19.9941 20.485 19.8575L15.485 16.8575C15.337 16.7686 15.2146 16.6429 15.1296 16.4927C15.0446 16.3424 14.9999 16.1727 15 16V10C15 9.73482 15.1054 9.48047 15.2929 9.29293C15.4804 9.10539 15.7348 9.00004 16 9.00004C16.2652 9.00004 16.5196 9.10539 16.7071 9.29293C16.8946 9.48047 17 9.73482 17 10ZM16 4.00004C14.4225 3.99611 12.8599 4.30508 11.4026 4.90907C9.94527 5.51306 8.62222 6.40008 7.51 7.51879C6.60125 8.43879 5.79375 9.32379 5 10.25V8.00004C5 7.73482 4.89464 7.48047 4.70711 7.29293C4.51957 7.10539 4.26522 7.00004 4 7.00004C3.73478 7.00004 3.48043 7.10539 3.29289 7.29293C3.10536 7.48047 3 7.73482 3 8.00004V13C3 13.2653 3.10536 13.5196 3.29289 13.7071C3.48043 13.8947 3.73478 14 4 14H9C9.26522 14 9.51957 13.8947 9.70711 13.7071C9.89464 13.5196 10 13.2653 10 13C10 12.7348 9.89464 12.4805 9.70711 12.2929C9.51957 12.1054 9.26522 12 9 12H6.125C7.01875 10.9475 7.90875 9.95629 8.92375 8.92879C10.3136 7.53898 12.0821 6.58955 14.0085 6.19913C15.9348 5.80872 17.9335 5.99463 19.7547 6.73364C21.576 7.47266 23.1391 8.73199 24.2487 10.3543C25.3584 11.9766 25.9653 13.8899 25.9938 15.8552C26.0222 17.8205 25.4708 19.7506 24.4086 21.4043C23.3463 23.0581 21.8203 24.3621 20.0212 25.1535C18.2221 25.9448 16.2296 26.1885 14.2928 25.854C12.356 25.5194 10.5607 24.6216 9.13125 23.2725C9.03571 23.1823 8.92333 23.1117 8.80052 23.0648C8.6777 23.018 8.54686 22.9958 8.41547 22.9995C8.28407 23.0032 8.15469 23.0328 8.03472 23.0865C7.91475 23.1402 7.80653 23.217 7.71625 23.3125C7.62597 23.4081 7.55538 23.5205 7.50853 23.6433C7.46168 23.7661 7.43948 23.8969 7.44319 24.0283C7.44691 24.1597 7.47647 24.2891 7.53018 24.4091C7.58389 24.529 7.66071 24.6373 7.75625 24.7275C9.18056 26.0716 10.9122 27.0467 12.8 27.5677C14.6878 28.0886 16.6744 28.1396 18.5865 27.7162C20.4986 27.2929 22.278 26.4079 23.7694 25.1387C25.2608 23.8695 26.4189 22.2545 27.1427 20.4348C27.8664 18.6151 28.1338 16.6459 27.9215 14.699C27.7091 12.7522 27.0236 10.8869 25.9246 9.26595C24.8256 7.64501 23.3466 6.31766 21.6166 5.39977C19.8867 4.48187 17.9584 4.00131 16 4.00004Z"
88
88
  })
89
89
  })
90
90
  });
91
91
  }
92
- function IconClock(props) {
92
+ function IconHourglass(props) {
93
93
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
94
- className: "icon fill icon-clock ".concat(props.className ? props.className : ''),
94
+ className: "icon fill icon-hourglass ".concat(props.className ? props.className : ''),
95
95
  onClick: props.onClick ? props.onClick : undefined,
96
96
  style: props.style ? props.style : undefined,
97
97
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
98
98
  viewBox: "0 0 32 32",
99
99
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
100
- d: "M16 3C13.4288 3 10.9154 3.76244 8.77759 5.1909C6.63975 6.61935 4.97351 8.64968 3.98957 11.0251C3.00563 13.4006 2.74819 16.0144 3.2498 18.5362C3.75141 21.0579 4.98953 23.3743 6.80762 25.1924C8.6257 27.0105 10.9421 28.2486 13.4638 28.7502C15.9856 29.2518 18.5995 28.9944 20.9749 28.0104C23.3503 27.0265 25.3807 25.3603 26.8091 23.2224C28.2376 21.0846 29 18.5712 29 16C28.9964 12.5533 27.6256 9.24882 25.1884 6.81163C22.7512 4.37445 19.4467 3.00364 16 3ZM16 27C13.8244 27 11.6977 26.3549 9.88873 25.1462C8.07979 23.9375 6.66989 22.2195 5.83733 20.2095C5.00477 18.1995 4.78693 15.9878 5.21137 13.854C5.63581 11.7202 6.68345 9.7602 8.22183 8.22183C9.76021 6.68345 11.7202 5.6358 13.854 5.21136C15.9878 4.78692 18.1995 5.00476 20.2095 5.83733C22.2195 6.66989 23.9375 8.07979 25.1462 9.88873C26.3549 11.6977 27 13.8244 27 16C26.9967 18.9164 25.8367 21.7123 23.7745 23.7745C21.7123 25.8367 18.9164 26.9967 16 27ZM24 16C24 16.2652 23.8946 16.5196 23.7071 16.7071C23.5196 16.8946 23.2652 17 23 17H16C15.7348 17 15.4804 16.8946 15.2929 16.7071C15.1054 16.5196 15 16.2652 15 16V9C15 8.73478 15.1054 8.48043 15.2929 8.29289C15.4804 8.10536 15.7348 8 16 8C16.2652 8 16.5196 8.10536 16.7071 8.29289C16.8946 8.48043 17 8.73478 17 9V15H23C23.2652 15 23.5196 15.1054 23.7071 15.2929C23.8946 15.4804 24 15.7348 24 16Z"
100
+ d: "M25 9.455V5C25 4.46957 24.7893 3.96086 24.4142 3.58579C24.0391 3.21071 23.5304 3 23 3H9C8.46957 3 7.96086 3.21071 7.58579 3.58579C7.21071 3.96086 7 4.46957 7 5V9.5C7.00068 9.81037 7.07326 10.1164 7.21206 10.394C7.35087 10.6716 7.55211 10.9132 7.8 11.1L14.3337 16L7.8 20.9C7.55211 21.0868 7.35087 21.3284 7.21206 21.606C7.07326 21.8836 7.00068 22.1896 7 22.5V27C7 27.5304 7.21071 28.0391 7.58579 28.4142C7.96086 28.7893 8.46957 29 9 29H23C23.5304 29 24.0391 28.7893 24.4142 28.4142C24.7893 28.0391 25 27.5304 25 27V22.545C24.9993 22.2358 24.9273 21.931 24.7896 21.6541C24.652 21.3773 24.4523 21.1359 24.2062 20.9487L17.6588 16L24.2062 11.05C24.4525 10.8632 24.6522 10.6221 24.7899 10.3454C24.9276 10.0688 24.9995 9.76403 25 9.455ZM23 27H9V22.5L16 17.25L23 22.5438V27ZM23 9.455L16 14.75L9 9.5V5H23V9.455Z"
101
101
  })
102
102
  })
103
103
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsgngo/common-icons",
3
- "version": "2.2.0",
3
+ "version": "3.0.2",
4
4
  "description": "Mini set of icons for projects",
5
5
  "main": "dist/index.js",
6
6
  "files": ["dist"],