@dsgngo/common-icons 3.0.4 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons-ui-arrows.js +56 -0
- package/dist/icons-ui-design.js +56 -0
- package/package.json +1 -1
package/dist/icons-ui-arrows.js
CHANGED
|
@@ -9,16 +9,20 @@ exports.IconArrowClockwise = IconArrowClockwise;
|
|
|
9
9
|
exports.IconArrowElbowDownLeft = IconArrowElbowDownLeft;
|
|
10
10
|
exports.IconArrowLeft = IconArrowLeft;
|
|
11
11
|
exports.IconArrowRight = IconArrowRight;
|
|
12
|
+
exports.IconArrowSquareIn = IconArrowSquareIn;
|
|
13
|
+
exports.IconArrowSquareOut = IconArrowSquareOut;
|
|
12
14
|
exports.IconArrowUDownLeft = IconArrowUDownLeft;
|
|
13
15
|
exports.IconArrowsIn = IconArrowsIn;
|
|
14
16
|
exports.IconArrowsInCardinal = IconArrowsInCardinal;
|
|
15
17
|
exports.IconArrowsInLineHorizontal = IconArrowsInLineHorizontal;
|
|
16
18
|
exports.IconArrowsInLineVertical = IconArrowsInLineVertical;
|
|
19
|
+
exports.IconArrowsInSimple = IconArrowsInSimple;
|
|
17
20
|
exports.IconArrowsLeftRight = IconArrowsLeftRight;
|
|
18
21
|
exports.IconArrowsOut = IconArrowsOut;
|
|
19
22
|
exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
|
|
20
23
|
exports.IconArrowsOutLineHorizontal = IconArrowsOutLineHorizontal;
|
|
21
24
|
exports.IconArrowsOutLineVertical = IconArrowsOutLineVertical;
|
|
25
|
+
exports.IconArrowsOutSimple = IconArrowsOutSimple;
|
|
22
26
|
exports.IconCaretDoubleDown = IconCaretDoubleDown;
|
|
23
27
|
exports.IconCaretDoubleLeft = IconCaretDoubleLeft;
|
|
24
28
|
exports.IconCaretDoubleRight = IconCaretDoubleRight;
|
|
@@ -339,4 +343,56 @@ function IconArrowsInLineVertical(props) {
|
|
|
339
343
|
})
|
|
340
344
|
})
|
|
341
345
|
});
|
|
346
|
+
}
|
|
347
|
+
function IconArrowsInSimple(props) {
|
|
348
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
349
|
+
className: "icon fill icon-arrows-in-simple ".concat(props.className ? props.className : ''),
|
|
350
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
351
|
+
style: props.style ? props.style : undefined,
|
|
352
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
353
|
+
viewBox: "0 0 32 32",
|
|
354
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
355
|
+
d: "M26.7075 6.70751L20.4138 13H24C24.2652 13 24.5196 13.1054 24.7071 13.2929C24.8947 13.4804 25 13.7348 25 14C25 14.2652 24.8947 14.5196 24.7071 14.7071C24.5196 14.8946 24.2652 15 24 15H18C17.7348 15 17.4804 14.8946 17.2929 14.7071C17.1054 14.5196 17 14.2652 17 14V8.00001C17 7.73479 17.1054 7.48044 17.2929 7.2929C17.4804 7.10536 17.7348 7.00001 18 7.00001C18.2652 7.00001 18.5196 7.10536 18.7071 7.2929C18.8947 7.48044 19 7.73479 19 8.00001V11.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.70751ZM14 17H8.00001C7.73479 17 7.48044 17.1054 7.2929 17.2929C7.10536 17.4804 7.00001 17.7348 7.00001 18C7.00001 18.2652 7.10536 18.5196 7.2929 18.7071C7.48044 18.8947 7.73479 19 8.00001 19H11.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.7075L13 20.4138V24C13 24.2652 13.1054 24.5196 13.2929 24.7071C13.4804 24.8947 13.7348 25 14 25C14.2652 25 14.5196 24.8947 14.7071 24.7071C14.8946 24.5196 15 24.2652 15 24V18C15 17.7348 14.8946 17.4804 14.7071 17.2929C14.5196 17.1054 14.2652 17 14 17Z"
|
|
356
|
+
})
|
|
357
|
+
})
|
|
358
|
+
});
|
|
359
|
+
}
|
|
360
|
+
function IconArrowsOutSimple(props) {
|
|
361
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
362
|
+
className: "icon fill icon-arrows-out-simple ".concat(props.className ? props.className : ''),
|
|
363
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
364
|
+
style: props.style ? props.style : undefined,
|
|
365
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
366
|
+
viewBox: "0 0 32 32",
|
|
367
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
368
|
+
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.41375L18.7075 14.7075C18.5199 14.8951 18.2654 15.0006 18 15.0006C17.7346 15.0006 17.4801 14.8951 17.2925 14.7075C17.1049 14.5199 16.9994 14.2654 16.9994 14C16.9994 13.7346 17.1049 13.4801 17.2925 13.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 6ZM13.2925 17.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.41375L14.7075 18.7075C14.8951 18.5199 15.0006 18.2654 15.0006 18C15.0006 17.7346 14.8951 17.4801 14.7075 17.2925C14.5199 17.1049 14.2654 16.9994 14 16.9994C13.7346 16.9994 13.4801 17.1049 13.2925 17.2925Z"
|
|
369
|
+
})
|
|
370
|
+
})
|
|
371
|
+
});
|
|
372
|
+
}
|
|
373
|
+
function IconArrowSquareIn(props) {
|
|
374
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
375
|
+
className: "icon fill icon-arrows-square-in ".concat(props.className ? props.className : ''),
|
|
376
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
377
|
+
style: props.style ? props.style : undefined,
|
|
378
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
379
|
+
viewBox: "0 0 32 32",
|
|
380
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
381
|
+
d: "M16 17V25C16 25.2652 15.8946 25.5196 15.7071 25.7071C15.5196 25.8946 15.2652 26 15 26C14.7348 26 14.4804 25.8946 14.2929 25.7071C14.1054 25.5196 14 25.2652 14 25V19.415L5.70751 27.7075C5.6146 27.8004 5.5043 27.8741 5.3829 27.9244C5.26151 27.9747 5.1314 28.0006 5.00001 28.0006C4.86861 28.0006 4.7385 27.9747 4.61711 27.9244C4.49572 27.8741 4.38542 27.8004 4.29251 27.7075C4.1996 27.6146 4.1259 27.5043 4.07561 27.3829C4.02533 27.2615 3.99945 27.1314 3.99945 27C3.99945 26.8686 4.02533 26.7385 4.07561 26.6171C4.1259 26.4957 4.1996 26.3854 4.29251 26.2925L12.585 18H7.00001C6.73479 18 6.48044 17.8946 6.2929 17.7071C6.10536 17.5196 6.00001 17.2652 6.00001 17C6.00001 16.7348 6.10536 16.4804 6.2929 16.2929C6.48044 16.1054 6.73479 16 7.00001 16H15C15.2652 16 15.5196 16.1054 15.7071 16.2929C15.8946 16.4804 16 16.7348 16 17ZM26 4H10C9.46957 4 8.96087 4.21071 8.58579 4.58579C8.21072 4.96086 8.00001 5.46957 8.00001 6V12C8.00001 12.2652 8.10536 12.5196 8.2929 12.7071C8.48044 12.8946 8.73479 13 9.00001 13C9.26522 13 9.51958 12.8946 9.70711 12.7071C9.89465 12.5196 10 12.2652 10 12V6H26V22H20C19.7348 22 19.4804 22.1054 19.2929 22.2929C19.1054 22.4804 19 22.7348 19 23C19 23.2652 19.1054 23.5196 19.2929 23.7071C19.4804 23.8946 19.7348 24 20 24H26C26.5304 24 27.0391 23.7893 27.4142 23.4142C27.7893 23.0391 28 22.5304 28 22V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4Z"
|
|
382
|
+
})
|
|
383
|
+
})
|
|
384
|
+
});
|
|
385
|
+
}
|
|
386
|
+
function IconArrowSquareOut(props) {
|
|
387
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
388
|
+
className: "icon fill icon-arrows-square-out ".concat(props.className ? props.className : ''),
|
|
389
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
390
|
+
style: props.style ? props.style : undefined,
|
|
391
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
392
|
+
viewBox: "0 0 32 32",
|
|
393
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
394
|
+
d: "M28 13C28 13.2652 27.8946 13.5196 27.7071 13.7071C27.5196 13.8946 27.2652 14 27 14C26.7348 14 26.4804 13.8946 26.2929 13.7071C26.1054 13.5196 26 13.2652 26 13V7.415L17.7087 15.7075C17.5211 15.8951 17.2666 16.0006 17.0012 16.0006C16.7359 16.0006 16.4814 15.8951 16.2938 15.7075C16.1061 15.5199 16.0007 15.2654 16.0007 15C16.0007 14.7346 16.1061 14.4801 16.2938 14.2925L24.585 6H19C18.7348 6 18.4804 5.89464 18.2929 5.70711C18.1054 5.51957 18 5.26522 18 5C18 4.73478 18.1054 4.48043 18.2929 4.29289C18.4804 4.10536 18.7348 4 19 4H27C27.2652 4 27.5196 4.10536 27.7071 4.29289C27.8946 4.48043 28 4.73478 28 5V13ZM23 16C22.7348 16 22.4804 16.1054 22.2929 16.2929C22.1054 16.4804 22 16.7348 22 17V26H6V10H15C15.2652 10 15.5196 9.89464 15.7071 9.70711C15.8946 9.51957 16 9.26522 16 9C16 8.73478 15.8946 8.48043 15.7071 8.29289C15.5196 8.10536 15.2652 8 15 8H6C5.46957 8 4.96086 8.21071 4.58579 8.58579C4.21071 8.96086 4 9.46957 4 10V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H22C22.5304 28 23.0391 27.7893 23.4142 27.4142C23.7893 27.0391 24 26.5304 24 26V17C24 16.7348 23.8946 16.4804 23.7071 16.2929C23.5196 16.1054 23.2652 16 23 16Z"
|
|
395
|
+
})
|
|
396
|
+
})
|
|
397
|
+
});
|
|
342
398
|
}
|
package/dist/icons-ui-design.js
CHANGED
|
@@ -14,6 +14,10 @@ exports.IconEye = IconEye;
|
|
|
14
14
|
exports.IconEyeClosed = IconEyeClosed;
|
|
15
15
|
exports.IconGridNine = IconGridNine;
|
|
16
16
|
exports.IconHighlighter = IconHighlighter;
|
|
17
|
+
exports.IconPaintBrush = IconPaintBrush;
|
|
18
|
+
exports.IconPaintBrushHousehold = IconPaintBrushHousehold;
|
|
19
|
+
exports.IconPaintBucket = IconPaintBucket;
|
|
20
|
+
exports.IconPaintRoller = IconPaintRoller;
|
|
17
21
|
exports.IconPalette = IconPalette;
|
|
18
22
|
exports.IconRowsPlusBottom = IconRowsPlusBottom;
|
|
19
23
|
exports.IconRowsPlusTop = IconRowsPlusTop;
|
|
@@ -297,4 +301,56 @@ function IconColumnsPlusRight(props) {
|
|
|
297
301
|
})
|
|
298
302
|
})
|
|
299
303
|
});
|
|
304
|
+
}
|
|
305
|
+
function IconPaintBucket(props) {
|
|
306
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
307
|
+
className: "icon fill icon-paint-bucket ".concat(props.className ? props.className : ''),
|
|
308
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
309
|
+
style: props.style ? props.style : undefined,
|
|
310
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
311
|
+
viewBox: "0 0 32 32",
|
|
312
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
313
|
+
d: "M29.3162 17.3837C29.4778 17.3298 29.6229 17.2355 29.7378 17.1098C29.8528 16.984 29.9336 16.831 29.9728 16.6652C30.012 16.4994 30.0082 16.3264 29.9618 16.1625C29.9153 15.9986 29.8278 15.8493 29.7074 15.7287L15.2712 1.29248C15.0837 1.10508 14.8294 0.999817 14.5643 0.999817C14.2992 0.999817 14.045 1.10508 13.8574 1.29248L8.7812 6.37498L5.7062 3.29248C5.51856 3.105 5.26413 2.99975 4.99888 2.99986C4.73363 2.99998 4.4793 3.10546 4.29182 3.2931C4.10435 3.48074 3.99909 3.73517 3.99921 4.00042C3.99933 4.26567 4.10481 4.52 4.29245 4.70748L7.36745 7.78248L1.87495 13.2712C1.31238 13.8338 0.996338 14.5969 0.996338 15.3925C0.996338 16.1881 1.31238 16.9511 1.87495 17.5137L12.4862 28.125C13.0488 28.6875 13.8118 29.0036 14.6074 29.0036C15.4031 29.0036 16.1661 28.6875 16.7287 28.125L26.5399 18.3137L29.3162 17.3837ZM25.2924 16.7287L15.3137 26.7075C15.1262 26.8949 14.8719 27.0001 14.6068 27.0001C14.3417 27.0001 14.0875 26.8949 13.8999 26.7075L3.29245 16.1C3.10505 15.9125 2.99979 15.6582 2.99979 15.3931C2.99979 15.128 3.10505 14.8737 3.29245 14.6862L8.7812 9.19623L12.4212 12.8362C12.0217 13.5759 11.9018 14.4347 12.0835 15.2556C12.2651 16.0764 12.7362 16.8045 13.4104 17.3066C14.0847 17.8087 14.9172 18.0513 15.7557 17.9901C16.5942 17.9289 17.3826 17.5679 17.9768 16.9731C18.571 16.3784 18.9313 15.5897 18.9917 14.7512C19.0522 13.9126 18.8089 13.0804 18.3062 12.4065C17.8035 11.7327 17.075 11.2623 16.254 11.0814C15.433 10.9005 14.5743 11.0211 13.8349 11.4212L10.1962 7.78248L14.5712 3.41373L27.1487 16L25.6837 16.4875C25.5365 16.5368 25.4026 16.6193 25.2924 16.7287ZM14.4387 13.44C14.7208 13.1034 15.125 12.8926 15.5625 12.8538C15.9999 12.815 16.4349 12.9514 16.7719 13.2331C17.1088 13.5147 17.3203 13.9186 17.3597 14.356C17.3991 14.7934 17.2634 15.2286 16.9822 15.5659C16.7011 15.9033 16.2975 16.1153 15.8602 16.1554C15.4228 16.1955 14.9875 16.0604 14.6497 15.7797C14.3119 15.4991 14.0993 15.0958 14.0585 14.6585C14.0178 14.2213 14.1523 13.7857 14.4324 13.4475C14.4324 13.4475 14.4387 13.4412 14.4387 13.44ZM29.8324 20.44C29.7412 20.3028 29.6174 20.1903 29.4722 20.1125C29.3269 20.0347 29.1647 19.994 28.9999 19.994C28.8352 19.994 28.673 20.0347 28.5277 20.1125C28.3825 20.1903 28.2587 20.3028 28.1674 20.44C27.9462 20.7787 25.9999 23.7612 25.9999 26C25.9999 26.7956 26.316 27.5587 26.8786 28.1213C27.4412 28.6839 28.2043 29 28.9999 29C29.7956 29 30.5587 28.6839 31.1213 28.1213C31.6839 27.5587 31.9999 26.7956 31.9999 26C31.9999 23.7612 30.0537 20.7787 29.8324 20.445V20.44ZM28.9999 27C28.7347 27 28.4804 26.8946 28.2928 26.7071C28.1053 26.5196 27.9999 26.2652 27.9999 26C27.9999 25.15 28.4999 23.96 28.9999 22.99C29.4999 23.96 29.9999 25.1575 29.9999 26C29.9999 26.2652 29.8946 26.5196 29.7071 26.7071C29.5195 26.8946 29.2652 27 28.9999 27Z"
|
|
314
|
+
})
|
|
315
|
+
})
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
function IconPaintBrushHousehold(props) {
|
|
319
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
320
|
+
className: "icon fill icon-paint-brush-household ".concat(props.className ? props.className : ''),
|
|
321
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
322
|
+
style: props.style ? props.style : undefined,
|
|
323
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
324
|
+
viewBox: "0 0 32 32",
|
|
325
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
326
|
+
d: "M28.83 3.17C28.4585 2.79847 28.0175 2.50375 27.5322 2.30268C27.0468 2.1016 26.5266 1.99811 26.0012 1.99811C25.4759 1.99811 24.9556 2.1016 24.4703 2.30268C23.9849 2.50375 23.5439 2.79847 23.1725 3.17C23.155 3.1875 23.1375 3.20625 23.12 3.22625L16.4437 11.0275L15.125 9.705C14.8464 9.42626 14.5156 9.20514 14.1515 9.05428C13.7874 8.90342 13.3972 8.82577 13.0031 8.82577C12.609 8.82577 12.2188 8.90342 11.8547 9.05428C11.4906 9.20514 11.1598 9.42626 10.8812 9.705L1.29498 19.2925C1.10759 19.48 1.00232 19.7343 1.00232 19.9994C1.00232 20.2645 1.10759 20.5187 1.29498 20.7063L11.295 30.7063C11.4825 30.8936 11.7368 30.9989 12.0019 30.9989C12.267 30.9989 12.5212 30.8936 12.7087 30.7063L22.295 21.125C22.5737 20.8464 22.7948 20.5156 22.9457 20.1515C23.0966 19.7875 23.1742 19.3972 23.1742 19.0031C23.1742 18.609 23.0966 18.2188 22.9457 17.8547C22.7948 17.4906 22.5737 17.1599 22.295 16.8813L20.9725 15.56L28.7737 8.875C28.7925 8.8575 28.8125 8.84 28.83 8.82125C29.5784 8.07134 29.9988 7.05512 29.9988 5.99563C29.9988 4.93614 29.5784 3.91992 28.83 3.17ZM12 28.5863L9.91498 26.5L12.7075 23.7063C12.8871 23.5172 12.9858 23.2654 12.9824 23.0047C12.9791 22.7439 12.874 22.4948 12.6896 22.3104C12.5052 22.126 12.2561 22.0209 11.9953 22.0176C11.7345 22.0142 11.4828 22.1129 11.2937 22.2925L8.49998 25.085L6.91498 23.5L9.70748 20.7063C9.8871 20.5172 9.98576 20.2654 9.98242 20.0047C9.97908 19.7439 9.87401 19.4948 9.68961 19.3104C9.50521 19.126 9.25607 19.0209 8.99531 19.0176C8.73454 19.0142 8.48279 19.1129 8.29373 19.2925L5.49998 22.085L3.41373 20L8.99998 14.4138L17.5862 23L12 28.5863ZM27.44 7.3875L18.8512 14.7388C18.7464 14.8283 18.6612 14.9387 18.601 15.0628C18.5408 15.1869 18.5069 15.3221 18.5015 15.4599C18.4961 15.5978 18.5193 15.7352 18.5696 15.8636C18.6199 15.9921 18.6962 16.1087 18.7937 16.2063L20.875 18.2925C21.0624 18.48 21.1676 18.7343 21.1676 18.9994C21.1676 19.2645 21.0624 19.5187 20.875 19.7063L19 21.5813L10.415 13L12.29 11.125C12.4775 10.9376 12.7318 10.8323 12.9969 10.8323C13.262 10.8323 13.5162 10.9376 13.7037 11.125L15.79 13.2113C15.8875 13.3088 16.0042 13.3851 16.1326 13.4354C16.261 13.4857 16.3985 13.5088 16.5363 13.5034C16.6741 13.498 16.8094 13.4642 16.9335 13.404C17.0576 13.3438 17.1679 13.2586 17.2575 13.1538L24.6125 4.56C24.9906 4.20076 25.4941 4.00345 26.0156 4.01012C26.5372 4.0168 27.0354 4.22694 27.4042 4.59575C27.773 4.96455 27.9832 5.46283 27.9899 5.98436C27.9965 6.50588 27.7992 7.00938 27.44 7.3875Z"
|
|
327
|
+
})
|
|
328
|
+
})
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
function IconPaintBrush(props) {
|
|
332
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
333
|
+
className: "icon fill icon-paint-brush ".concat(props.className ? props.className : ''),
|
|
334
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
335
|
+
style: props.style ? props.style : undefined,
|
|
336
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
337
|
+
viewBox: "0 0 32 32",
|
|
338
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
339
|
+
d: "M29 4C29 3.73478 28.8946 3.48043 28.7071 3.29289C28.5196 3.10536 28.2652 3 28 3C22.49 3 16.8362 9.21375 13.6962 13.3287C12.5748 12.9853 11.3885 12.9096 10.2325 13.1078C9.07658 13.306 7.98321 13.7726 7.04026 14.47C6.09731 15.1674 5.33105 16.0762 4.80304 17.1234C4.27503 18.1707 3.99998 19.3272 3.99999 20.5C3.99999 24.36 1.55749 26.0912 1.44124 26.1712C1.26385 26.291 1.12957 26.4646 1.05816 26.6664C0.986742 26.8681 0.981954 27.0875 1.0445 27.2922C1.10704 27.4969 1.23362 27.6761 1.40561 27.8035C1.57761 27.931 1.78594 27.9998 1.99999 28H11.5C12.6728 28 13.8293 27.725 14.8765 27.1969C15.9238 26.6689 16.8326 25.9027 17.53 24.9597C18.2274 24.0168 18.6939 22.9234 18.8921 21.7675C19.0903 20.6115 19.0147 19.4252 18.6712 18.3037C22.7875 15.1637 29 9.51 29 4ZM11.5 26H4.32874C5.17249 24.8013 5.99999 22.99 5.99999 20.5C5.99999 19.4122 6.32256 18.3488 6.9269 17.4444C7.53125 16.5399 8.39023 15.8349 9.39523 15.4187C10.4002 15.0024 11.5061 14.8935 12.573 15.1057C13.6399 15.3179 14.6199 15.8417 15.3891 16.6109C16.1583 17.3801 16.6821 18.3601 16.8943 19.427C17.1065 20.4939 16.9976 21.5998 16.5813 22.6048C16.165 23.6098 15.4601 24.4687 14.5556 25.0731C13.6512 25.6774 12.5878 26 11.5 26ZM15.5525 14.1938C15.9808 13.6388 16.4012 13.1158 16.8137 12.625C17.8234 13.3071 18.6929 14.1766 19.375 15.1862C18.8833 15.5979 18.3604 16.0183 17.8062 16.4475C17.2235 15.5448 16.4552 14.7765 15.5525 14.1938ZM20.89 13.8588C20.135 12.7935 19.2052 11.8637 18.14 11.1088C22.1125 6.7925 25.1087 5.48375 26.8775 5.12C26.5212 6.89 25.2062 9.88625 20.89 13.8588Z"
|
|
340
|
+
})
|
|
341
|
+
})
|
|
342
|
+
});
|
|
343
|
+
}
|
|
344
|
+
function IconPaintRoller(props) {
|
|
345
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
346
|
+
className: "icon fill icon-paint-roller ".concat(props.className ? props.className : ''),
|
|
347
|
+
onClick: props.onClick ? props.onClick : undefined,
|
|
348
|
+
style: props.style ? props.style : undefined,
|
|
349
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
350
|
+
viewBox: "0 0 32 32",
|
|
351
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
352
|
+
d: "M29 11H27V8C27 7.46957 26.7893 6.96086 26.4142 6.58579C26.0391 6.21071 25.5304 6 25 6H6C5.46957 6 4.96086 6.21071 4.58579 6.58579C4.21071 6.96086 4 7.46957 4 8V11H2C1.73478 11 1.48043 11.1054 1.29289 11.2929C1.10536 11.4804 1 11.7348 1 12C1 12.2652 1.10536 12.5196 1.29289 12.7071C1.48043 12.8946 1.73478 13 2 13H4V16C4 16.5304 4.21071 17.0391 4.58579 17.4142C4.96086 17.7893 5.46957 18 6 18H25C25.5304 18 26.0391 17.7893 26.4142 17.4142C26.7893 17.0391 27 16.5304 27 16V13H29V19.25L16.45 22.8312C16.0336 22.9518 15.6675 23.2038 15.4061 23.5496C15.1448 23.8955 15.0023 24.3165 15 24.75V29C15 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 29V24.75L29.55 21.165C29.9657 21.0446 30.3315 20.7932 30.5928 20.4481C30.854 20.103 30.9969 19.6828 31 19.25V13C31 12.4696 30.7893 11.9609 30.4142 11.5858C30.0391 11.2107 29.5304 11 29 11ZM25 16H6V8H25V16Z"
|
|
353
|
+
})
|
|
354
|
+
})
|
|
355
|
+
});
|
|
300
356
|
}
|