elementa-icons 1.6.0 → 1.7.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/dist/icons/arrows-directions/ArrowRight.js +20 -0
- package/dist/icons/arrows-directions/ChevronDown.js +21 -0
- package/dist/icons/arrows-directions/ChevronLeft.js +21 -0
- package/dist/icons/arrows-directions/ChevronRight.js +21 -0
- package/dist/icons/arrows-directions/ChevronUp.js +21 -0
- package/dist/icons/user-interface-controls/Search.js +6 -8
- package/dist/index.esm.js +1 -1
- package/dist/index.js +6 -2
- package/dist/types/icons/arrows-directions/ArrowRight.d.ts +13 -0
- package/dist/types/icons/arrows-directions/ChevronDown.d.ts +13 -0
- package/dist/types/icons/arrows-directions/ChevronLeft.d.ts +13 -0
- package/dist/types/icons/arrows-directions/ChevronRight.d.ts +13 -0
- package/dist/types/icons/arrows-directions/ChevronUp.d.ts +13 -0
- package/dist/types/icons/user-interface-controls/Search.d.ts +3 -3
- package/dist/types/index.d.ts +6 -1
- package/package.json +2 -2
- package/src/index.ts +15 -2
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a left arrow.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-09-08
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.7.0
|
|
11
|
+
*/
|
|
12
|
+
const ArrowRight = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
13
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
14
|
+
fillRule: 'evenodd',
|
|
15
|
+
clipRule: 'evenodd',
|
|
16
|
+
strokeLinejoin: 'round',
|
|
17
|
+
strokeMiterlimit: 2
|
|
18
|
+
}, viewBox: "0 0 29 25", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M14.002.92s3.823 3.77 7.4 7.173c.868.826 1.725 1.623 2.508 2.34 1.03.948 1.934 1.749 2.546 2.3l-.003.004.004.005c-1.065.983-3.022 2.746-5.043 4.654-3.588 3.388-7.412 7.158-7.412 7.158a.244.244 0 0 0 .32.367s4.267-3.258 8.124-6.337c2.172-1.734 4.192-3.424 5.314-4.341a1.988 1.988 0 0 0 .001-3.012c-.632-.528-1.552-1.311-2.633-2.2-.82-.673-1.729-1.411-2.67-2.155C18.59 3.81 14.322.554 14.322.554a.244.244 0 0 0-.32.367" }), _jsx("path", { d: "M23.373 12.494s-1.068-.113-2.764-.26c-1.15-.1-2.571-.225-4.144-.325a91 91 0 0 0-2.763-.135 49 49 0 0 0-1.842-.036c-.617 0-1.233.019-1.842.042a164.883 164.883 0 0 0-5.526.349c-2.47.198-4.145.365-4.145.365a.243.243 0 0 0 0 .487s1.674.166 4.145.364c.844.068 1.773.137 2.763.2.887.056 1.814.113 2.763.149a49 49 0 0 0 1.842.043c.617 0 1.233-.015 1.842-.036a94 94 0 0 0 2.763-.135c1.573-.1 2.994-.226 4.144-.326 1.696-.146 2.764-.26 2.764-.26a.243.243 0 0 0 0-.486" })] }));
|
|
19
|
+
};
|
|
20
|
+
export default ArrowRight;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a downward chevron.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-09-08
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.7.0
|
|
12
|
+
*/
|
|
13
|
+
const ChevronDown = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
15
|
+
fillRule: 'evenodd',
|
|
16
|
+
clipRule: 'evenodd',
|
|
17
|
+
strokeLinejoin: 'round',
|
|
18
|
+
strokeMiterlimit: 2
|
|
19
|
+
}, viewBox: "0 0 33 13", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M32.121.435s-3.57 2.356-7.379 4.954a359 359 0 0 0-4.38 3.035c-1.105.778-2.095 1.501-2.886 2.068a2.03 2.03 0 0 1-1.209.388 2.03 2.03 0 0 1-1.21-.385c-1.46-1.026-3.594-2.557-5.812-4.087C4.95 3.445.414.435.414.435a.243.243 0 1 0-.292.39S4.28 4.337 8.328 7.632c2.09 1.7 4.157 3.321 5.55 4.433a3.94 3.94 0 0 0 2.39.815 3.94 3.94 0 0 0 2.39-.812c.766-.6 1.737-1.349 2.793-2.192a344 344 0 0 0 4.14-3.355A658 658 0 0 0 32.413.825a.244.244 0 0 0-.292-.39" }) }));
|
|
20
|
+
};
|
|
21
|
+
export default ChevronDown;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a left chevron.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-09-08
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.7.0
|
|
12
|
+
*/
|
|
13
|
+
const ChevronLeft = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
15
|
+
fillRule: 'evenodd',
|
|
16
|
+
clipRule: 'evenodd',
|
|
17
|
+
strokeLinejoin: 'round',
|
|
18
|
+
strokeMiterlimit: 2
|
|
19
|
+
}, viewBox: "0 0 14 33", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M12.984 32.483s-2.356-3.57-4.954-7.38a359 359 0 0 0-3.035-4.38c-.778-1.104-1.5-2.094-2.068-2.885a2.03 2.03 0 0 1-.388-1.21 2.03 2.03 0 0 1 .385-1.21c1.026-1.46 2.557-3.593 4.087-5.811C9.974 5.31 12.984.775 12.984.775a.243.243 0 1 0-.39-.292S9.082 4.642 5.787 8.69c-1.7 2.089-3.32 4.157-4.433 5.55a3.94 3.94 0 0 0-.815 2.389 3.94 3.94 0 0 0 .812 2.39c.601.767 1.35 1.738 2.192 2.794a344 344 0 0 0 3.355 4.14 658 658 0 0 0 5.696 6.822.244.244 0 0 0 .39-.292" }) }));
|
|
20
|
+
};
|
|
21
|
+
export default ChevronLeft;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a right chevron.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-09-08
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.7.0
|
|
12
|
+
*/
|
|
13
|
+
const IcNavigationChevronRight = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
15
|
+
fillRule: 'evenodd',
|
|
16
|
+
clipRule: 'evenodd',
|
|
17
|
+
strokeLinejoin: 'round',
|
|
18
|
+
strokeMiterlimit: 2
|
|
19
|
+
}, viewBox: "0 0 13 33", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M.124.775s2.356 3.57 4.954 7.379a359 359 0 0 0 3.035 4.38c.778 1.105 1.5 2.095 2.068 2.886.265.36.388.785.388 1.21s-.121.851-.385 1.21c-1.026 1.46-2.557 3.593-4.087 5.811a687 687 0 0 0-5.973 8.832.243.243 0 1 0 .39.292s3.512-4.159 6.807-8.207c1.7-2.089 3.32-4.157 4.433-5.55a3.94 3.94 0 0 0 .815-2.389 3.94 3.94 0 0 0-.812-2.39c-.601-.767-1.35-1.738-2.192-2.794a344 344 0 0 0-3.355-4.14C3.28 3.744.514.483.514.483a.244.244 0 0 0-.39.292" }) }));
|
|
20
|
+
};
|
|
21
|
+
export default IcNavigationChevronRight;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a upward chevron.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-09-08
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.7.0
|
|
12
|
+
*/
|
|
13
|
+
const IcNavigationChevronUp = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
15
|
+
fillRule: 'evenodd',
|
|
16
|
+
clipRule: 'evenodd',
|
|
17
|
+
strokeLinejoin: 'round',
|
|
18
|
+
strokeMiterlimit: 2
|
|
19
|
+
}, viewBox: "0 0 34 13", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M.93 12.828s3.57-2.356 7.378-4.954a359 359 0 0 0 4.38-3.035c1.105-.778 2.095-1.5 2.886-2.068a2.03 2.03 0 0 1 1.21-.388c.424 0 .851.121 1.21.385 1.46 1.026 3.593 2.557 5.811 4.087a687 687 0 0 0 8.832 5.973.243.243 0 1 0 .292-.39s-4.159-3.512-8.207-6.807c-2.089-1.7-4.157-3.32-5.55-4.433a3.94 3.94 0 0 0-2.389-.815 3.94 3.94 0 0 0-2.39.812c-.767.601-1.738 1.35-2.794 2.192a344 344 0 0 0-4.14 3.355C3.9 9.672.637 12.438.637 12.438a.244.244 0 0 0 .292.39" }) }));
|
|
20
|
+
};
|
|
21
|
+
export default IcNavigationChevronUp;
|
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
import { jsx as _jsx
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
// Import styles.
|
|
3
3
|
/**
|
|
4
4
|
* This function renders an SVG icon of a search.
|
|
5
5
|
*
|
|
6
|
-
* @version 1.
|
|
6
|
+
* @version 1.1.0
|
|
7
7
|
* @author Aayush Goyal
|
|
8
8
|
* @created 2025-07-15
|
|
9
|
-
* @modifier
|
|
10
|
-
* @modified
|
|
9
|
+
* @modifier Aayush Goyal
|
|
10
|
+
* @modified 2025-07-
|
|
11
11
|
* @since 1.6.0
|
|
12
12
|
*/
|
|
13
13
|
const Search = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
-
return (
|
|
14
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
15
15
|
fillRule: 'evenodd',
|
|
16
16
|
clipRule: 'evenodd',
|
|
17
17
|
strokeLinejoin: 'round',
|
|
18
18
|
strokeMiterlimit: 2
|
|
19
|
-
}, viewBox: "0 0 28 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children:
|
|
20
|
-
fill: 'none'
|
|
21
|
-
}, transform: "matrix(.86177 0 0 .87557 -467.526 -306.197)" }), _jsx("path", { d: "M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307" })] }));
|
|
19
|
+
}, viewBox: "0 0 28 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307" }) }));
|
|
22
20
|
};
|
|
23
21
|
export default Search;
|
package/dist/index.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsxs as e,jsx as t}from"react/jsx-runtime";const i=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 25 29",stroke:i,strokeWidth:a,width:r,height:l,fill:i,children:[t("path",{d:"M24.185 14.28s-3.77 3.822-7.172 7.4c-.826.867-1.623 1.725-2.34 2.508-.948 1.03-1.749 1.934-2.3 2.545l-.004-.002-.005.003c-.983-1.064-2.746-3.022-4.654-5.042A552.286 552.286 0 0 0 .552 14.28a.244.244 0 0 0-.367.32s3.258 4.267 6.337 8.123c1.734 2.173 3.424 4.192 4.341 5.315a1.988 1.988 0 0 0 3.012 0c.528-.631 1.311-1.551 2.2-2.632.673-.821 1.411-1.73 2.155-2.67 3.066-3.868 6.322-8.136 6.322-8.136a.244.244 0 0 0-.367-.32Z"}),t("path",{d:"M12.612 23.65s.113-1.067.26-2.763c.1-1.15.225-2.572.325-4.144.057-.887.103-1.815.135-2.763.021-.61.038-1.225.036-1.842a51.027 51.027 0 0 0-.042-1.842 164.88 164.88 0 0 0-.349-5.526C12.78 2.3 12.612.625 12.612.625a.243.243 0 0 0-.487 0S11.96 2.3 11.761 4.77c-.068.844-.137 1.773-.2 2.763-.056.887-.113 1.814-.149 2.763a48.819 48.819 0 0 0-.043 1.842c0 .617.015 1.233.036 1.842.033.948.078 1.876.135 2.763.1 1.572.226 2.994.326 4.144.146 1.696.26 2.763.26 2.763a.243.243 0 0 0 .486 0Z"})]}),l=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 29 25",height:l,stroke:i,strokeWidth:a,width:r,fill:i,children:[t("path",{d:"M14.898 24.549s-3.822-3.77-7.4-7.172a188 188 0 0 0-2.508-2.341c-1.03-.947-1.934-1.748-2.545-2.3l.002-.003-.003-.005c1.065-.983 3.022-2.746 5.042-4.654C11.075 4.686 14.898.916 14.898.916a.244.244 0 0 0-.32-.367s-4.267 3.258-8.123 6.337C4.282 8.62 2.263 10.31 1.14 11.226a1.988 1.988 0 0 0 0 3.013c.631.528 1.551 1.31 2.632 2.199.821.674 1.73 1.412 2.67 2.156a648 648 0 0 0 8.136 6.322.244.244 0 0 0 .32-.367"}),t("path",{d:"M5.528 12.976s1.067.113 2.763.26c1.15.099 2.572.225 4.145.325a91 91 0 0 0 2.763.135c.609.02 1.225.038 1.842.036a51 51 0 0 0 1.842-.042 164.882 164.882 0 0 0 5.526-.349c2.47-.198 4.144-.365 4.144-.365a.243.243 0 0 0 0-.487s-1.674-.166-4.144-.364c-.844-.068-1.773-.137-2.763-.2-.888-.056-1.815-.113-2.763-.15a49 49 0 0 0-1.842-.042 51 51 0 0 0-1.842.036c-.95.033-1.877.078-2.763.135-1.573.1-2.995.226-4.145.326-1.696.146-2.763.259-2.763.259a.243.243 0 0 0 0 .487"})]}),a=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 26 29",height:l,stroke:i,strokeWidth:a,width:r,fill:i,children:[t("path",{d:"M1.02 14.836s3.77-3.823 7.173-7.4c.826-.868 1.623-1.725 2.34-2.508.948-1.03 1.749-1.934 2.3-2.546l.004.003.005-.004c.983 1.065 2.746 3.022 4.654 5.043 3.388 3.588 7.158 7.412 7.158 7.412a.244.244 0 0 0 .367-.32s-3.258-4.267-6.337-8.124C16.95 4.22 15.26 2.201 14.343 1.078a1.988 1.988 0 0 0-3.012-.001c-.528.632-1.311 1.552-2.2 2.633-.673.82-1.411 1.729-2.155 2.67a648.25 648.25 0 0 0-6.322 8.136.244.244 0 0 0 .367.32Z"}),t("path",{d:"M12.594 5.466s-.113 1.067-.26 2.763c-.1 1.15-.225 2.571-.325 4.144a91.07 91.07 0 0 0-.135 2.763 48.872 48.872 0 0 0-.036 1.842c0 .617.019 1.233.042 1.842a164.882 164.882 0 0 0 .349 5.526c.198 2.47.365 4.145.365 4.145a.243.243 0 0 0 .487 0s.166-1.674.364-4.145c.068-.844.137-1.773.2-2.763.056-.887.113-1.814.149-2.763a48.82 48.82 0 0 0 .043-1.842 51.077 51.077 0 0 0-.036-1.842 94.437 94.437 0 0 0-.135-2.763c-.1-1.573-.226-2.994-.326-4.144-.146-1.696-.26-2.763-.26-2.763a.243.243 0 0 0-.486 0Z"})]}),r=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 23 32",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M730.716 356.256h21.898v31.62h-21.898z",style:{fill:"none"},transform:"matrix(1.00627 0 0 1.00395 -734.664 -357.472)"}),t("path",{d:"M11.366 18.702a1.23 1.23 0 0 0-.505.488 35 35 0 0 0-.593 1.047 225 225 0 0 0-2.757 5.209 250 250 0 0 0-2.49 5.022c-.247-.001-.46-.24-.63-.522-.402-.672-.573-1.68-.17-2.532.366-.778 1.16-1.414 2.576-1.615a.2.2 0 0 0 .187-.217.2.2 0 0 0-.217-.187c-2.297.02-3.356 1.239-3.706 2.529-.355 1.31.102 2.734.82 3.432.54.523 1.232.667 1.96.365a.73.73 0 0 0 .328-.311s1.47-2.44 2.98-5.078c1.09-1.905 2.196-3.916 2.87-5.13.218-.392.385-.701.492-.893 3.96-2.356 6.416-5.292 7.9-8.186C23.388 6.312 22.486.75 22.486.75a.569.569 0 0 0-1.056-.212L11.76 17.993a.034.034 0 0 0 .012.046.034.034 0 0 0 .046-.012l9.563-15.26c-.092 1.969-.56 5.249-2.426 8.575-1.48 2.64-3.846 5.314-7.65 7.375z"}),t("path",{d:"M10.825 20.309c.107.192.274.5.492.893.674 1.214 1.78 3.225 2.871 5.13a298 298 0 0 0 2.98 5.078.73.73 0 0 0 .327.31c.728.303 1.421.159 1.96-.364.718-.698 1.175-2.122.82-3.432-.35-1.29-1.409-2.508-3.706-2.53a.2.2 0 0 0-.217.188.2.2 0 0 0 .187.217c1.417.2 2.21.837 2.577 1.615.402.853.231 1.86-.17 2.532-.17.283-.384.52-.63.522a256 256 0 0 0-2.49-5.022 225 225 0 0 0-2.758-5.21 35 35 0 0 0-.593-1.046 1.23 1.23 0 0 0-.505-.488l.063.015c-3.805-2.061-6.17-4.735-7.65-7.375-1.867-3.326-2.335-6.606-2.427-8.577 0 .002 9.563 15.262 9.563 15.262.01.016.03.02.046.012a.034.034 0 0 0 .012-.046L1.905.538A.57.57 0 0 0 .85.75s-.902 5.562 2.077 11.373c1.483 2.894 3.94 5.83 7.9 8.186"})]}),o=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 30 31",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M693.052 357.748h29.511v29.9h-29.511z",style:{fill:"none"},transform:"matrix(1.00607 0 0 1.00697 -697.263 -359.608)"}),t("path",{d:"m28.873 8.716-.002.012c0 .108.09.196.197.196 0 0 .189-.032.197-.227l.013-.279a2.25 2.25 0 0 0-1.327-2.132 2.3 2.3 0 0 0-.883-.21c-2.11-.076-5.566-.217-8.787-.32-2.251-.073-4.384-.122-5.86-.163a2.84 2.84 0 0 0-2.021.803 2.88 2.88 0 0 0-.872 2.022c-.023 2.207-.101 5.945-.105 9.684s.068 7.476.089 9.683a2.9 2.9 0 0 0 .87 2.041 2.9 2.9 0 0 0 2.04.82l14.646-.298a2.54 2.54 0 0 0 1.788-.775c.23-.241.414-.521.532-.826.117-.304.18-.63.171-.962l-.454-18.027a.037.037 0 0 0-.037-.036.036.036 0 0 0-.037.036l-.454 18.027a1.51 1.51 0 0 1-.468 1.041 1.46 1.46 0 0 1-1.041.396l-14.646-.298a1.13 1.13 0 0 1-.788-.35 1.113 1.113 0 0 1-.303-.789c.022-2.207.093-5.945.09-9.683-.004-3.74-.082-7.477-.107-9.684a1.13 1.13 0 0 1 .665-1.07c.139-.06.288-.102.443-.105 1.475-.041 3.608-.09 5.859-.163 3.221-.104 6.676-.244 8.787-.321a1.68 1.68 0 0 1 1.22.44 1.74 1.74 0 0 1 .57 1.22l.012.278z"}),t("path",{d:"M19.551 4.59q-.003.013-.002.029c0 .107.088.196.196.196 0 0 .188-.062.201-.288.01-.143.027-.444.048-.8a2.3 2.3 0 0 0-.593-1.658c-.408-.46-1-.74-1.662-.78-1.797-.091-4.569-.256-7.352-.37C9.13.866 7.877.83 6.71.802 5.299.77 4.02.762 3.035.747A2.97 2.97 0 0 0 .05 3.745C.093 5.57.145 8.439.235 11.49c.129 4.336.32 9.03.41 11.62a2.36 2.36 0 0 0 .743 1.647 2.286 2.286 0 0 0 1.647.62l5.578-.229a.04.04 0 0 0 .037-.037.04.04 0 0 0-.037-.038l-5.578-.229a1.7 1.7 0 0 1-1.183-.551 1.7 1.7 0 0 1-.334-.554 1.7 1.7 0 0 1-.094-.628c.091-2.592.28-7.285.41-11.621.09-3.052.142-5.921.186-7.746a1 1 0 0 1 .307-.708c.183-.18.431-.295.708-.295.985-.015 2.264-.023 3.676-.056 1.166-.028 2.42-.064 3.676-.116 2.783-.114 5.555-.279 7.352-.37.438-.027.848.112 1.155.38.326.286.554.686.589 1.152l.06.799q.001.031.008.058"})]}),s=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 28 30",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M543.001 349.947h31.109v33.364h-31.109z",style:{fill:"none"},transform:"matrix(.86177 0 0 .87557 -467.526 -306.197)"}),t("path",{d:"M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307"})]}),h=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 28",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M634.483 1673.02h35.983v26.903h-35.983z",style:{fill:"none"},transform:"matrix(.88725 0 0 1.00132 -562.43 -1674.52)"}),t("path",{d:"M28.561 11.94a43 43 0 0 0-1.882-.981 109 109 0 0 0-4.297-1.957.243.243 0 1 0-.255.414s1.916 1.607 3.69 2.947c.658.498 1.295.944 1.783 1.275.366.25.652.422.787.509a1.087 1.087 0 0 0 1.57-.494c.072-.183.25-.602.456-1.165.187-.508.4-1.124.611-1.778.68-2.114 1.356-4.52 1.356-4.52a.243.243 0 1 0-.446-.195s-1.3 2.136-2.383 4.074a47 47 0 0 0-.99 1.87M4.392 16.409c.508.28 1.17.632 1.883.98 1.997.975 4.297 1.957 4.297 1.957a.243.243 0 1 0 .254-.414s-1.916-1.608-3.689-2.948a44 44 0 0 0-1.783-1.275c-.367-.249-.653-.421-.788-.508a1.087 1.087 0 0 0-1.57.494c-.072.183-.25.602-.456 1.165a46 46 0 0 0-.61 1.778c-.68 2.113-1.357 4.52-1.357 4.52a.243.243 0 1 0 .446.194s1.3-2.135 2.383-4.073a47 47 0 0 0 .99-1.87"}),t("path",{d:"M5.844 9.488c1.245-2.605 3.204-4.45 5.44-5.565a12 12 0 0 1 5.129-1.276c4.332-.08 8.671 2.175 10.914 6.947a.418.418 0 0 0 .768-.328C25.994 3.768 21.271.953 16.438.736A13.3 13.3 0 0 0 10.33 1.92C7.615 3.155 5.255 5.363 3.714 8.448a1.187 1.187 0 0 0 .544 1.585 1.187 1.187 0 0 0 1.586-.545M27.107 18.858c-1.245 2.606-3.203 4.451-5.44 5.566a12 12 0 0 1-5.128 1.275c-4.332.081-8.672-2.175-10.915-6.946a.418.418 0 0 0-.768.327c2.102 5.499 6.825 8.314 11.658 8.53a13.3 13.3 0 0 0 6.108-1.184c2.715-1.235 5.075-3.443 6.616-6.527a1.187 1.187 0 0 0-.545-1.586 1.187 1.187 0 0 0-1.586.545"})]});export{i as ArrowDown,l as ArrowLeft,a as ArrowUp,o as Copy,r as Cut,h as Refresh,s as Search};
|
|
1
|
+
import{jsxs as e,jsx as t}from"react/jsx-runtime";const i=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 25 29",stroke:i,strokeWidth:o,width:r,height:l,fill:i,children:[t("path",{d:"M24.185 14.28s-3.77 3.822-7.172 7.4c-.826.867-1.623 1.725-2.34 2.508-.948 1.03-1.749 1.934-2.3 2.545l-.004-.002-.005.003c-.983-1.064-2.746-3.022-4.654-5.042A552.286 552.286 0 0 0 .552 14.28a.244.244 0 0 0-.367.32s3.258 4.267 6.337 8.123c1.734 2.173 3.424 4.192 4.341 5.315a1.988 1.988 0 0 0 3.012 0c.528-.631 1.311-1.551 2.2-2.632.673-.821 1.411-1.73 2.155-2.67 3.066-3.868 6.322-8.136 6.322-8.136a.244.244 0 0 0-.367-.32Z"}),t("path",{d:"M12.612 23.65s.113-1.067.26-2.763c.1-1.15.225-2.572.325-4.144.057-.887.103-1.815.135-2.763.021-.61.038-1.225.036-1.842a51.027 51.027 0 0 0-.042-1.842 164.88 164.88 0 0 0-.349-5.526C12.78 2.3 12.612.625 12.612.625a.243.243 0 0 0-.487 0S11.96 2.3 11.761 4.77c-.068.844-.137 1.773-.2 2.763-.056.887-.113 1.814-.149 2.763a48.819 48.819 0 0 0-.043 1.842c0 .617.015 1.233.036 1.842.033.948.078 1.876.135 2.763.1 1.572.226 2.994.326 4.144.146 1.696.26 2.763.26 2.763a.243.243 0 0 0 .486 0Z"})]}),l=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 29 25",height:l,stroke:i,strokeWidth:o,width:r,fill:i,children:[t("path",{d:"M14.898 24.549s-3.822-3.77-7.4-7.172a188 188 0 0 0-2.508-2.341c-1.03-.947-1.934-1.748-2.545-2.3l.002-.003-.003-.005c1.065-.983 3.022-2.746 5.042-4.654C11.075 4.686 14.898.916 14.898.916a.244.244 0 0 0-.32-.367s-4.267 3.258-8.123 6.337C4.282 8.62 2.263 10.31 1.14 11.226a1.988 1.988 0 0 0 0 3.013c.631.528 1.551 1.31 2.632 2.199.821.674 1.73 1.412 2.67 2.156a648 648 0 0 0 8.136 6.322.244.244 0 0 0 .32-.367"}),t("path",{d:"M5.528 12.976s1.067.113 2.763.26c1.15.099 2.572.225 4.145.325a91 91 0 0 0 2.763.135c.609.02 1.225.038 1.842.036a51 51 0 0 0 1.842-.042 164.882 164.882 0 0 0 5.526-.349c2.47-.198 4.144-.365 4.144-.365a.243.243 0 0 0 0-.487s-1.674-.166-4.144-.364c-.844-.068-1.773-.137-2.763-.2-.888-.056-1.815-.113-2.763-.15a49 49 0 0 0-1.842-.042 51 51 0 0 0-1.842.036c-.95.033-1.877.078-2.763.135-1.573.1-2.995.226-4.145.326-1.696.146-2.763.259-2.763.259a.243.243 0 0 0 0 .487"})]}),o=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 29 25",height:l,width:r,stroke:i,strokeWidth:o,fill:i,children:[t("path",{d:"M14.002.92s3.823 3.77 7.4 7.173c.868.826 1.725 1.623 2.508 2.34 1.03.948 1.934 1.749 2.546 2.3l-.003.004.004.005c-1.065.983-3.022 2.746-5.043 4.654-3.588 3.388-7.412 7.158-7.412 7.158a.244.244 0 0 0 .32.367s4.267-3.258 8.124-6.337c2.172-1.734 4.192-3.424 5.314-4.341a1.988 1.988 0 0 0 .001-3.012c-.632-.528-1.552-1.311-2.633-2.2-.82-.673-1.729-1.411-2.67-2.155C18.59 3.81 14.322.554 14.322.554a.244.244 0 0 0-.32.367"}),t("path",{d:"M23.373 12.494s-1.068-.113-2.764-.26c-1.15-.1-2.571-.225-4.144-.325a91 91 0 0 0-2.763-.135 49 49 0 0 0-1.842-.036c-.617 0-1.233.019-1.842.042a164.883 164.883 0 0 0-5.526.349c-2.47.198-4.145.365-4.145.365a.243.243 0 0 0 0 .487s1.674.166 4.145.364c.844.068 1.773.137 2.763.2.887.056 1.814.113 2.763.149a49 49 0 0 0 1.842.043c.617 0 1.233-.015 1.842-.036a94 94 0 0 0 2.763-.135c1.573-.1 2.994-.226 4.144-.326 1.696-.146 2.764-.26 2.764-.26a.243.243 0 0 0 0-.486"})]}),r=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 26 29",height:l,stroke:i,strokeWidth:o,width:r,fill:i,children:[t("path",{d:"M1.02 14.836s3.77-3.823 7.173-7.4c.826-.868 1.623-1.725 2.34-2.508.948-1.03 1.749-1.934 2.3-2.546l.004.003.005-.004c.983 1.065 2.746 3.022 4.654 5.043 3.388 3.588 7.158 7.412 7.158 7.412a.244.244 0 0 0 .367-.32s-3.258-4.267-6.337-8.124C16.95 4.22 15.26 2.201 14.343 1.078a1.988 1.988 0 0 0-3.012-.001c-.528.632-1.311 1.552-2.2 2.633-.673.82-1.411 1.729-2.155 2.67a648.25 648.25 0 0 0-6.322 8.136.244.244 0 0 0 .367.32Z"}),t("path",{d:"M12.594 5.466s-.113 1.067-.26 2.763c-.1 1.15-.225 2.571-.325 4.144a91.07 91.07 0 0 0-.135 2.763 48.872 48.872 0 0 0-.036 1.842c0 .617.019 1.233.042 1.842a164.882 164.882 0 0 0 .349 5.526c.198 2.47.365 4.145.365 4.145a.243.243 0 0 0 .487 0s.166-1.674.364-4.145c.068-.844.137-1.773.2-2.763.056-.887.113-1.814.149-2.763a48.82 48.82 0 0 0 .043-1.842 51.077 51.077 0 0 0-.036-1.842 94.437 94.437 0 0 0-.135-2.763c-.1-1.573-.226-2.994-.326-4.144-.146-1.696-.26-2.763-.26-2.763a.243.243 0 0 0-.486 0Z"})]}),s=({color:e="#000000",height:i="1em",strokeWidth:l=1,width:o="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 13",height:i,width:o,stroke:e,strokeWidth:l,fill:e,children:t("path",{d:"M32.121.435s-3.57 2.356-7.379 4.954a359 359 0 0 0-4.38 3.035c-1.105.778-2.095 1.501-2.886 2.068a2.03 2.03 0 0 1-1.209.388 2.03 2.03 0 0 1-1.21-.385c-1.46-1.026-3.594-2.557-5.812-4.087C4.95 3.445.414.435.414.435a.243.243 0 1 0-.292.39S4.28 4.337 8.328 7.632c2.09 1.7 4.157 3.321 5.55 4.433a3.94 3.94 0 0 0 2.39.815 3.94 3.94 0 0 0 2.39-.812c.766-.6 1.737-1.349 2.793-2.192a344 344 0 0 0 4.14-3.355A658 658 0 0 0 32.413.825a.244.244 0 0 0-.292-.39"})}),h=({color:e="#000000",height:i="1em",strokeWidth:l=1,width:o="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 14 33",height:i,width:o,stroke:e,strokeWidth:l,fill:e,children:t("path",{d:"M12.984 32.483s-2.356-3.57-4.954-7.38a359 359 0 0 0-3.035-4.38c-.778-1.104-1.5-2.094-2.068-2.885a2.03 2.03 0 0 1-.388-1.21 2.03 2.03 0 0 1 .385-1.21c1.026-1.46 2.557-3.593 4.087-5.811C9.974 5.31 12.984.775 12.984.775a.243.243 0 1 0-.39-.292S9.082 4.642 5.787 8.69c-1.7 2.089-3.32 4.157-4.433 5.55a3.94 3.94 0 0 0-.815 2.389 3.94 3.94 0 0 0 .812 2.39c.601.767 1.35 1.738 2.192 2.794a344 344 0 0 0 3.355 4.14 658 658 0 0 0 5.696 6.822.244.244 0 0 0 .39-.292"})}),a=({color:e="#000000",height:i="1em",strokeWidth:l=1,width:o="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 13 33",height:i,width:o,stroke:e,strokeWidth:l,fill:e,children:t("path",{d:"M.124.775s2.356 3.57 4.954 7.379a359 359 0 0 0 3.035 4.38c.778 1.105 1.5 2.095 2.068 2.886.265.36.388.785.388 1.21s-.121.851-.385 1.21c-1.026 1.46-2.557 3.593-4.087 5.811a687 687 0 0 0-5.973 8.832.243.243 0 1 0 .39.292s3.512-4.159 6.807-8.207c1.7-2.089 3.32-4.157 4.433-5.55a3.94 3.94 0 0 0 .815-2.389 3.94 3.94 0 0 0-.812-2.39c-.601-.767-1.35-1.738-2.192-2.794a344 344 0 0 0-3.355-4.14C3.28 3.744.514.483.514.483a.244.244 0 0 0-.39.292"})}),c=({color:e="#000000",height:i="1em",strokeWidth:l=1,width:o="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 34 13",height:i,width:o,stroke:e,strokeWidth:l,fill:e,children:t("path",{d:"M.93 12.828s3.57-2.356 7.378-4.954a359 359 0 0 0 4.38-3.035c1.105-.778 2.095-1.5 2.886-2.068a2.03 2.03 0 0 1 1.21-.388c.424 0 .851.121 1.21.385 1.46 1.026 3.593 2.557 5.811 4.087a687 687 0 0 0 8.832 5.973.243.243 0 1 0 .292-.39s-4.159-3.512-8.207-6.807c-2.089-1.7-4.157-3.32-5.55-4.433a3.94 3.94 0 0 0-2.389-.815 3.94 3.94 0 0 0-2.39.812c-.767.601-1.738 1.35-2.794 2.192a344 344 0 0 0-4.14 3.355C3.9 9.672.637 12.438.637 12.438a.244.244 0 0 0 .292.39"})}),d=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 23 32",height:l,width:r,stroke:i,strokeWidth:o,fill:i,children:[t("path",{d:"M730.716 356.256h21.898v31.62h-21.898z",style:{fill:"none"},transform:"matrix(1.00627 0 0 1.00395 -734.664 -357.472)"}),t("path",{d:"M11.366 18.702a1.23 1.23 0 0 0-.505.488 35 35 0 0 0-.593 1.047 225 225 0 0 0-2.757 5.209 250 250 0 0 0-2.49 5.022c-.247-.001-.46-.24-.63-.522-.402-.672-.573-1.68-.17-2.532.366-.778 1.16-1.414 2.576-1.615a.2.2 0 0 0 .187-.217.2.2 0 0 0-.217-.187c-2.297.02-3.356 1.239-3.706 2.529-.355 1.31.102 2.734.82 3.432.54.523 1.232.667 1.96.365a.73.73 0 0 0 .328-.311s1.47-2.44 2.98-5.078c1.09-1.905 2.196-3.916 2.87-5.13.218-.392.385-.701.492-.893 3.96-2.356 6.416-5.292 7.9-8.186C23.388 6.312 22.486.75 22.486.75a.569.569 0 0 0-1.056-.212L11.76 17.993a.034.034 0 0 0 .012.046.034.034 0 0 0 .046-.012l9.563-15.26c-.092 1.969-.56 5.249-2.426 8.575-1.48 2.64-3.846 5.314-7.65 7.375z"}),t("path",{d:"M10.825 20.309c.107.192.274.5.492.893.674 1.214 1.78 3.225 2.871 5.13a298 298 0 0 0 2.98 5.078.73.73 0 0 0 .327.31c.728.303 1.421.159 1.96-.364.718-.698 1.175-2.122.82-3.432-.35-1.29-1.409-2.508-3.706-2.53a.2.2 0 0 0-.217.188.2.2 0 0 0 .187.217c1.417.2 2.21.837 2.577 1.615.402.853.231 1.86-.17 2.532-.17.283-.384.52-.63.522a256 256 0 0 0-2.49-5.022 225 225 0 0 0-2.758-5.21 35 35 0 0 0-.593-1.046 1.23 1.23 0 0 0-.505-.488l.063.015c-3.805-2.061-6.17-4.735-7.65-7.375-1.867-3.326-2.335-6.606-2.427-8.577 0 .002 9.563 15.262 9.563 15.262.01.016.03.02.046.012a.034.034 0 0 0 .012-.046L1.905.538A.57.57 0 0 0 .85.75s-.902 5.562 2.077 11.373c1.483 2.894 3.94 5.83 7.9 8.186"})]}),n=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 30 31",height:l,width:r,stroke:i,strokeWidth:o,fill:i,children:[t("path",{d:"M693.052 357.748h29.511v29.9h-29.511z",style:{fill:"none"},transform:"matrix(1.00607 0 0 1.00697 -697.263 -359.608)"}),t("path",{d:"m28.873 8.716-.002.012c0 .108.09.196.197.196 0 0 .189-.032.197-.227l.013-.279a2.25 2.25 0 0 0-1.327-2.132 2.3 2.3 0 0 0-.883-.21c-2.11-.076-5.566-.217-8.787-.32-2.251-.073-4.384-.122-5.86-.163a2.84 2.84 0 0 0-2.021.803 2.88 2.88 0 0 0-.872 2.022c-.023 2.207-.101 5.945-.105 9.684s.068 7.476.089 9.683a2.9 2.9 0 0 0 .87 2.041 2.9 2.9 0 0 0 2.04.82l14.646-.298a2.54 2.54 0 0 0 1.788-.775c.23-.241.414-.521.532-.826.117-.304.18-.63.171-.962l-.454-18.027a.037.037 0 0 0-.037-.036.036.036 0 0 0-.037.036l-.454 18.027a1.51 1.51 0 0 1-.468 1.041 1.46 1.46 0 0 1-1.041.396l-14.646-.298a1.13 1.13 0 0 1-.788-.35 1.113 1.113 0 0 1-.303-.789c.022-2.207.093-5.945.09-9.683-.004-3.74-.082-7.477-.107-9.684a1.13 1.13 0 0 1 .665-1.07c.139-.06.288-.102.443-.105 1.475-.041 3.608-.09 5.859-.163 3.221-.104 6.676-.244 8.787-.321a1.68 1.68 0 0 1 1.22.44 1.74 1.74 0 0 1 .57 1.22l.012.278z"}),t("path",{d:"M19.551 4.59q-.003.013-.002.029c0 .107.088.196.196.196 0 0 .188-.062.201-.288.01-.143.027-.444.048-.8a2.3 2.3 0 0 0-.593-1.658c-.408-.46-1-.74-1.662-.78-1.797-.091-4.569-.256-7.352-.37C9.13.866 7.877.83 6.71.802 5.299.77 4.02.762 3.035.747A2.97 2.97 0 0 0 .05 3.745C.093 5.57.145 8.439.235 11.49c.129 4.336.32 9.03.41 11.62a2.36 2.36 0 0 0 .743 1.647 2.286 2.286 0 0 0 1.647.62l5.578-.229a.04.04 0 0 0 .037-.037.04.04 0 0 0-.037-.038l-5.578-.229a1.7 1.7 0 0 1-1.183-.551 1.7 1.7 0 0 1-.334-.554 1.7 1.7 0 0 1-.094-.628c.091-2.592.28-7.285.41-11.621.09-3.052.142-5.921.186-7.746a1 1 0 0 1 .307-.708c.183-.18.431-.295.708-.295.985-.015 2.264-.023 3.676-.056 1.166-.028 2.42-.064 3.676-.116 2.783-.114 5.555-.279 7.352-.37.438-.027.848.112 1.155.38.326.286.554.686.589 1.152l.06.799q.001.031.008.058"})]}),w=({color:e="#000000",height:i="1em",strokeWidth:l=1,width:o="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 28 30",height:i,width:o,stroke:e,strokeWidth:l,fill:e,children:t("path",{d:"M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307"})}),v=({color:i="#000000",height:l="1em",strokeWidth:o=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 28",height:l,width:r,stroke:i,strokeWidth:o,fill:i,children:[t("path",{d:"M634.483 1673.02h35.983v26.903h-35.983z",style:{fill:"none"},transform:"matrix(.88725 0 0 1.00132 -562.43 -1674.52)"}),t("path",{d:"M28.561 11.94a43 43 0 0 0-1.882-.981 109 109 0 0 0-4.297-1.957.243.243 0 1 0-.255.414s1.916 1.607 3.69 2.947c.658.498 1.295.944 1.783 1.275.366.25.652.422.787.509a1.087 1.087 0 0 0 1.57-.494c.072-.183.25-.602.456-1.165.187-.508.4-1.124.611-1.778.68-2.114 1.356-4.52 1.356-4.52a.243.243 0 1 0-.446-.195s-1.3 2.136-2.383 4.074a47 47 0 0 0-.99 1.87M4.392 16.409c.508.28 1.17.632 1.883.98 1.997.975 4.297 1.957 4.297 1.957a.243.243 0 1 0 .254-.414s-1.916-1.608-3.689-2.948a44 44 0 0 0-1.783-1.275c-.367-.249-.653-.421-.788-.508a1.087 1.087 0 0 0-1.57.494c-.072.183-.25.602-.456 1.165a46 46 0 0 0-.61 1.778c-.68 2.113-1.357 4.52-1.357 4.52a.243.243 0 1 0 .446.194s1.3-2.135 2.383-4.073a47 47 0 0 0 .99-1.87"}),t("path",{d:"M5.844 9.488c1.245-2.605 3.204-4.45 5.44-5.565a12 12 0 0 1 5.129-1.276c4.332-.08 8.671 2.175 10.914 6.947a.418.418 0 0 0 .768-.328C25.994 3.768 21.271.953 16.438.736A13.3 13.3 0 0 0 10.33 1.92C7.615 3.155 5.255 5.363 3.714 8.448a1.187 1.187 0 0 0 .544 1.585 1.187 1.187 0 0 0 1.586-.545M27.107 18.858c-1.245 2.606-3.203 4.451-5.44 5.566a12 12 0 0 1-5.128 1.275c-4.332.081-8.672-2.175-10.915-6.946a.418.418 0 0 0-.768.327c2.102 5.499 6.825 8.314 11.658 8.53a13.3 13.3 0 0 0 6.108-1.184c2.715-1.235 5.075-3.443 6.616-6.527a1.187 1.187 0 0 0-.545-1.586 1.187 1.187 0 0 0-1.586.545"})]});export{i as ArrowDown,l as ArrowLeft,o as ArrowRight,r as ArrowUp,s as ChevronDown,h as ChevronLeft,a as ChevronRight,c as ChevronUp,n as Copy,d as Cut,v as Refresh,w as Search};
|
package/dist/index.js
CHANGED
|
@@ -20,8 +20,12 @@
|
|
|
20
20
|
// SECTION: Arrows & Direction
|
|
21
21
|
import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
|
|
22
22
|
import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
|
|
23
|
-
|
|
23
|
+
import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
|
|
24
24
|
import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
|
|
25
|
+
import ChevronDown from '@/src/icons/arrows-directions/ChevronDown';
|
|
26
|
+
import ChevronLeft from '@/src/icons/arrows-directions/ChevronLeft';
|
|
27
|
+
import ChevronRight from '@/src/icons/arrows-directions/ChevronRight';
|
|
28
|
+
import ChevronUp from '@/src/icons/arrows-directions/ChevronUp';
|
|
25
29
|
// !SECTION: Arrows & Direction
|
|
26
30
|
// SECTION: Astronomy
|
|
27
31
|
// !SECTION: Astronomy
|
|
@@ -176,7 +180,7 @@ import Refresh from '@/src/icons/saving-data-management/Refresh';
|
|
|
176
180
|
// SECTION: Animals
|
|
177
181
|
// !SECTION: Animals
|
|
178
182
|
// SECTION: Arrows & Direction
|
|
179
|
-
export { ArrowDown, ArrowLeft, ArrowUp };
|
|
183
|
+
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
180
184
|
// !SECTION: Arrows & Direction
|
|
181
185
|
// SECTION: Astronomy
|
|
182
186
|
// !SECTION: Astronomy
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a left arrow.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-09-08
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.7.0
|
|
11
|
+
*/
|
|
12
|
+
declare const ArrowRight: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default ArrowRight;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a downward chevron.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-09-08
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.7.0
|
|
11
|
+
*/
|
|
12
|
+
declare const ChevronDown: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default ChevronDown;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a left chevron.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-09-08
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.7.0
|
|
11
|
+
*/
|
|
12
|
+
declare const ChevronLeft: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default ChevronLeft;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a right chevron.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-09-08
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.7.0
|
|
11
|
+
*/
|
|
12
|
+
declare const IcNavigationChevronRight: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default IcNavigationChevronRight;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a upward chevron.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-09-08
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.7.0
|
|
11
|
+
*/
|
|
12
|
+
declare const IcNavigationChevronUp: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default IcNavigationChevronUp;
|
|
@@ -2,11 +2,11 @@ import { IconComponentProps } from '@/src/lib/types';
|
|
|
2
2
|
/**
|
|
3
3
|
* This function renders an SVG icon of a search.
|
|
4
4
|
*
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.1.0
|
|
6
6
|
* @author Aayush Goyal
|
|
7
7
|
* @created 2025-07-15
|
|
8
|
-
* @modifier
|
|
9
|
-
* @modified
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-
|
|
10
10
|
* @since 1.6.0
|
|
11
11
|
*/
|
|
12
12
|
declare const Search: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -10,12 +10,17 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
|
|
12
12
|
import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
|
|
13
|
+
import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
|
|
13
14
|
import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
|
|
15
|
+
import ChevronDown from '@/src/icons/arrows-directions/ChevronDown';
|
|
16
|
+
import ChevronLeft from '@/src/icons/arrows-directions/ChevronLeft';
|
|
17
|
+
import ChevronRight from '@/src/icons/arrows-directions/ChevronRight';
|
|
18
|
+
import ChevronUp from '@/src/icons/arrows-directions/ChevronUp';
|
|
14
19
|
import Cut from '@/src/icons/editing-creation/Cut';
|
|
15
20
|
import Copy from '@/src/icons/editing-creation/Copy';
|
|
16
21
|
import Search from '@/src/icons/user-interface-controls/Search';
|
|
17
22
|
import Refresh from '@/src/icons/saving-data-management/Refresh';
|
|
18
|
-
export { ArrowDown, ArrowLeft, ArrowUp };
|
|
23
|
+
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
19
24
|
export { Cut, Copy };
|
|
20
25
|
export { Search };
|
|
21
26
|
export { Refresh };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elementa-icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Elementa icons library.",
|
|
5
5
|
"homepage": "https://elementa.dev",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"build:watch": "rollup -c -w",
|
|
38
38
|
"prepublishOnly": "npm run build",
|
|
39
39
|
"publish:npm": "npm publish --access public",
|
|
40
|
-
"svgr": "svgr src/icons/*.svg --template src/lib/icon-template.ts --expand-props none"
|
|
40
|
+
"svgr": "svgr src/icons/*.svg --template src/lib/icon-template.ts --expand-props none --ignore-existing"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "^19.1.0"
|
package/src/index.ts
CHANGED
|
@@ -20,8 +20,12 @@
|
|
|
20
20
|
// SECTION: Arrows & Direction
|
|
21
21
|
import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
|
|
22
22
|
import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
|
|
23
|
-
|
|
23
|
+
import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
|
|
24
24
|
import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
|
|
25
|
+
import ChevronDown from '@/src/icons/arrows-directions/ChevronDown';
|
|
26
|
+
import ChevronLeft from '@/src/icons/arrows-directions/ChevronLeft';
|
|
27
|
+
import ChevronRight from '@/src/icons/arrows-directions/ChevronRight';
|
|
28
|
+
import ChevronUp from '@/src/icons/arrows-directions/ChevronUp';
|
|
25
29
|
// !SECTION: Arrows & Direction
|
|
26
30
|
// SECTION: Astronomy
|
|
27
31
|
// !SECTION: Astronomy
|
|
@@ -177,7 +181,16 @@ import Refresh from '@/src/icons/saving-data-management/Refresh';
|
|
|
177
181
|
// SECTION: Animals
|
|
178
182
|
// !SECTION: Animals
|
|
179
183
|
// SECTION: Arrows & Direction
|
|
180
|
-
export {
|
|
184
|
+
export {
|
|
185
|
+
ArrowDown,
|
|
186
|
+
ArrowLeft,
|
|
187
|
+
ArrowRight,
|
|
188
|
+
ArrowUp,
|
|
189
|
+
ChevronDown,
|
|
190
|
+
ChevronLeft,
|
|
191
|
+
ChevronRight,
|
|
192
|
+
ChevronUp
|
|
193
|
+
};
|
|
181
194
|
// !SECTION: Arrows & Direction
|
|
182
195
|
// SECTION: Astronomy
|
|
183
196
|
// !SECTION: Astronomy
|