elementa-icons 1.4.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/arrows-directions/ArrowDown.js +15 -0
- package/dist/icons/arrows-directions/ArrowLeft.js +20 -0
- package/dist/icons/arrows-directions/ArrowUp.js +20 -0
- package/dist/icons/editing-creation/Copy.js +23 -0
- package/dist/icons/editing-creation/Cut.js +23 -0
- package/dist/icons/saving-data-management/Refresh.js +23 -0
- package/dist/icons/user-interface-controls/Search.js +23 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +308 -8
- package/dist/lib/icon-template.js +7 -6
- package/dist/types/icons/arrows-directions/ArrowDown.d.ts +13 -0
- package/dist/types/icons/{nav → arrows-directions}/ArrowLeft.d.ts +3 -3
- package/dist/types/icons/{nav/ArrowDown.d.ts → arrows-directions/ArrowUp.d.ts} +3 -3
- package/dist/types/icons/editing-creation/Copy.d.ts +13 -0
- package/dist/types/icons/editing-creation/Cut.d.ts +13 -0
- package/dist/types/icons/saving-data-management/Refresh.d.ts +13 -0
- package/dist/types/icons/user-interface-controls/Search.d.ts +13 -0
- package/dist/types/index.d.ts +11 -4
- package/dist/types/lib/icon-template.d.ts +4 -4
- package/dist/types/lib/types.d.ts +2 -0
- package/package.json +2 -1
- package/src/index.ts +308 -8
- package/dist/icons/nav/ArrowDown.js +0 -19
- package/dist/icons/nav/ArrowLeft.js +0 -22
- package/dist/icons/nav/ArrowUp.js +0 -27
- package/dist/types/icons/nav/ArrowUp.d.ts +0 -12
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of an arrow pointing downwards.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.2.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-06-22
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-15
|
|
10
|
+
* @since 1.1.0
|
|
11
|
+
*/
|
|
12
|
+
const ArrowDown = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
13
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", viewBox: "0 0 25 29", stroke: color, strokeWidth: strokeWidth, width: width, height: height, fill: color, children: [_jsx("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" }), _jsx("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" })] }));
|
|
14
|
+
};
|
|
15
|
+
export default ArrowDown;
|
|
@@ -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-07-13
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-15
|
|
10
|
+
* @since 1.3.0
|
|
11
|
+
*/
|
|
12
|
+
const ArrowLeft = ({ 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, stroke: color, strokeWidth: strokeWidth, width: width, fill: color, children: [_jsx("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" }), _jsx("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" })] }));
|
|
19
|
+
};
|
|
20
|
+
export default ArrowLeft;
|
|
@@ -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 an arrow pointing downwards.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.1.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-06-22
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-15
|
|
10
|
+
* @since 1.1.0
|
|
11
|
+
*/
|
|
12
|
+
const ArrowDown = ({ 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 26 29", height: height, stroke: color, strokeWidth: strokeWidth, width: width, fill: color, children: [_jsx("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" }), _jsx("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" })] }));
|
|
19
|
+
};
|
|
20
|
+
export default ArrowDown;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a copy action.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-07-15
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.6.0
|
|
12
|
+
*/
|
|
13
|
+
const Copy = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsxs("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 30 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M693.052 357.748h29.511v29.9h-29.511z", style: {
|
|
20
|
+
fill: 'none'
|
|
21
|
+
}, transform: "matrix(1.00607 0 0 1.00697 -697.263 -359.608)" }), _jsx("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" }), _jsx("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" })] }));
|
|
22
|
+
};
|
|
23
|
+
export default Copy;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a cut action.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-07-15
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.6.0
|
|
12
|
+
*/
|
|
13
|
+
const Cut = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsxs("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 23 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M730.716 356.256h21.898v31.62h-21.898z", style: {
|
|
20
|
+
fill: 'none'
|
|
21
|
+
}, transform: "matrix(1.00627 0 0 1.00395 -734.664 -357.472)" }), _jsx("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" }), _jsx("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" })] }));
|
|
22
|
+
};
|
|
23
|
+
export default Cut;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a refresh action.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-07-15
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.6.0
|
|
12
|
+
*/
|
|
13
|
+
const Refresh = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsxs("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 28", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M634.483 1673.02h35.983v26.903h-35.983z", style: {
|
|
20
|
+
fill: 'none'
|
|
21
|
+
}, transform: "matrix(.88725 0 0 1.00132 -562.43 -1674.52)" }), _jsx("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" }), _jsx("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" })] }));
|
|
22
|
+
};
|
|
23
|
+
export default Refresh;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon of a search.
|
|
5
|
+
*
|
|
6
|
+
* @version 1.0.0
|
|
7
|
+
* @author Aayush Goyal
|
|
8
|
+
* @created 2025-07-15
|
|
9
|
+
* @modifier
|
|
10
|
+
* @modified
|
|
11
|
+
* @since 1.6.0
|
|
12
|
+
*/
|
|
13
|
+
const Search = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
14
|
+
return (_jsxs("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 28 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M543.001 349.947h31.109v33.364h-31.109z", style: {
|
|
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" })] }));
|
|
22
|
+
};
|
|
23
|
+
export default Search;
|
package/dist/index.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsxs as e,jsx as t}from"react/jsx-runtime";const r=({color:r="#000000",strokeWidth:s=1})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 25 29",stroke:r,strokeWidth:s,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",fill:r}),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",fill:r})]}),s=({color:r="#000000",strokeWidth:s=1})=>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",stroke:r,strokeWidth:s,fill:r,children:[t("path",{d:"M276.081 375.51h28.348v24.487h-28.348z",style:{fill:"none"},transform:"matrix(1.00054 0 0 1.00075 -275.795 -375.307)"}),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=r=>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",...r,children:[t("path",{d:"M246.127 405.463h24.487v28.348h-24.487z",style:{fill:"none"},transform:"matrix(1.00017 0 0 1.00024 -245.579 -405.18)"}),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"})]});export{r as ArrowDown,s as ArrowLeft,a as ArrowUp};
|
|
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};
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file exports all the icons for the library.
|
|
3
3
|
*
|
|
4
|
-
* @version 1.
|
|
4
|
+
* @version 1.2.0
|
|
5
5
|
* @author Aayush Goyal
|
|
6
6
|
* @created 2025-06-22
|
|
7
7
|
* @modifier Aayush Goyal
|
|
@@ -9,14 +9,314 @@
|
|
|
9
9
|
* @since 1.1.0
|
|
10
10
|
*/
|
|
11
11
|
// SECTION: Imports
|
|
12
|
-
// SECTION:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
//
|
|
12
|
+
// SECTION: Accessibility
|
|
13
|
+
// !SECTION: Accessibility
|
|
14
|
+
// SECTION: Alert
|
|
15
|
+
// !SECTION: Alert
|
|
16
|
+
// SECTION: Alphabet
|
|
17
|
+
// !SECTION: Alphabet
|
|
18
|
+
// SECTION: Animals
|
|
19
|
+
// !SECTION: Animals
|
|
20
|
+
// SECTION: Arrows & Direction
|
|
21
|
+
import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
|
|
22
|
+
import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
|
|
23
|
+
// import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
|
|
24
|
+
import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
|
|
25
|
+
// !SECTION: Arrows & Direction
|
|
26
|
+
// SECTION: Astronomy
|
|
27
|
+
// !SECTION: Astronomy
|
|
28
|
+
// SECTION: Automotive
|
|
29
|
+
// !SECTION: Automotive
|
|
30
|
+
// SECTION: Buildings
|
|
31
|
+
// !SECTION: Buildings
|
|
32
|
+
// SECTION: Business
|
|
33
|
+
// !SECTION: Business
|
|
34
|
+
// SECTION: Camping
|
|
35
|
+
// !SECTION: Camping
|
|
36
|
+
// SECTION: Charity
|
|
37
|
+
// !SECTION: Charity
|
|
38
|
+
// SECTION: Charts & Graphs
|
|
39
|
+
// !SECTION: Charts & Graphs
|
|
40
|
+
// SECTION: Childhood
|
|
41
|
+
// !SECTION: Childhood
|
|
42
|
+
// SECTION: Clothing & Fashion
|
|
43
|
+
// !SECTION: Clothing & Fashion
|
|
44
|
+
// SECTION: Coding
|
|
45
|
+
// !SECTION: Coding
|
|
46
|
+
// SECTION: Communication
|
|
47
|
+
// !SECTION: Communication
|
|
48
|
+
// SECTION: Connectivity
|
|
49
|
+
// !SECTION: Connectivity
|
|
50
|
+
// SECTION: Construction
|
|
51
|
+
// !SECTION: Construction
|
|
52
|
+
// SECTION: Design
|
|
53
|
+
// !SECTION: Design
|
|
54
|
+
// SECTION: Devices & Hardware
|
|
55
|
+
// !SECTION: Devices & Hardware
|
|
56
|
+
// SECTION: Disaster & Crisis
|
|
57
|
+
// !SECTION: Disaster & Crisis
|
|
58
|
+
// SECTION: Editing & Creation
|
|
59
|
+
import Cut from '@/src/icons/editing-creation/Cut';
|
|
60
|
+
import Copy from '@/src/icons/editing-creation/Copy';
|
|
61
|
+
// !SECTION: Editing & Creation
|
|
62
|
+
// SECTION: Education
|
|
63
|
+
// !SECTION: Education
|
|
64
|
+
// SECTION: Emoji & Emoticons
|
|
65
|
+
// !SECTION: Emoji & Emoticons
|
|
66
|
+
// SECTION: Energy
|
|
67
|
+
// !SECTION: Energy
|
|
68
|
+
// SECTION: Files & Folders
|
|
69
|
+
// !SECTION: Files & Folders
|
|
70
|
+
// SECTION: Film & Video
|
|
71
|
+
// !SECTION: Film & Video
|
|
72
|
+
// SECTION: Food & Beverage
|
|
73
|
+
// !SECTION: Food & Beverage
|
|
74
|
+
// SECTION: Gaming
|
|
75
|
+
// !SECTION: Gaming
|
|
76
|
+
// SECTION: Genders
|
|
77
|
+
// !SECTION
|
|
78
|
+
// SECTION: Halloween
|
|
79
|
+
// !SECTION: Halloween
|
|
80
|
+
// SECTION: Hands
|
|
81
|
+
// !SECTION: Hands
|
|
82
|
+
// SECTION: Holidays
|
|
83
|
+
// !SECTION: Holidays
|
|
84
|
+
// SECTION: Household
|
|
85
|
+
// !SECTION: Household
|
|
86
|
+
// SECTION: Humanitarian
|
|
87
|
+
// !SECTION: Humanitarian
|
|
88
|
+
// SECTION: Logistics
|
|
89
|
+
// !SECTION: Logistics
|
|
90
|
+
// SECTION: Location & Maps
|
|
91
|
+
// !SECTION: Location & Maps
|
|
92
|
+
// SECTION: Maritime
|
|
93
|
+
// !SECTION: Maritime
|
|
94
|
+
// SECTION: Marketing
|
|
95
|
+
// !SECTION: Marketing
|
|
96
|
+
// SECTION: Mathematics
|
|
97
|
+
// !SECTION: Mathematics
|
|
98
|
+
// SECTION: Media Playback
|
|
99
|
+
// !SECTION: Media Playback
|
|
100
|
+
// SECTION: Medical & Health
|
|
101
|
+
// !SECTION: Medical & Health
|
|
102
|
+
// SECTION: Money
|
|
103
|
+
// !SECTION: Money
|
|
104
|
+
// SECTION: Moving
|
|
105
|
+
// !SECTION: Moving
|
|
106
|
+
// SECTION: Music & Audio
|
|
107
|
+
// !SECTION: Music & Audio
|
|
108
|
+
// SECTION: Nature & Environment
|
|
109
|
+
// !SECTION: Nature & Environment
|
|
110
|
+
// SECTION: Numbers
|
|
111
|
+
// !SECTION: Numbers
|
|
112
|
+
// SECTION: Photos & Images
|
|
113
|
+
// !SECTION: Photos & Images
|
|
114
|
+
// SECTION: Political
|
|
115
|
+
// !SECTION: Political
|
|
116
|
+
// SECTION: Shapes, Symbols & Punctuation
|
|
117
|
+
// !SECTION: Shapes, Symbols & Punctuation
|
|
118
|
+
// SECTION: Religion
|
|
119
|
+
// !SECTION: Religion
|
|
120
|
+
// SECTION: Science
|
|
121
|
+
// !SECTION: Science
|
|
122
|
+
// SECTION: Science Fiction
|
|
123
|
+
// !SECTION: Science Fiction
|
|
124
|
+
// SECTION: Security & Privacy
|
|
125
|
+
// !SECTION: Security & Privacy
|
|
126
|
+
// SECTION: Finance & Shopping
|
|
127
|
+
// !SECTION: Finance & Shopping
|
|
128
|
+
// SECTION: Social & People
|
|
129
|
+
// !SECTION: Social & People
|
|
130
|
+
// SECTION: Spinners
|
|
131
|
+
// !SECTION: Spinners
|
|
132
|
+
// SECTION: Text Formatting
|
|
133
|
+
// !SECTION: Text Formatting
|
|
134
|
+
// SECTION: Time & Calendar
|
|
135
|
+
// !SECTION: Time & Calendar
|
|
136
|
+
// SECTION: Toggle
|
|
137
|
+
// !SECTION: Toggle
|
|
138
|
+
// SECTION: Transportation
|
|
139
|
+
// !SECTION: Transportation
|
|
140
|
+
// SECTION: Travel & Hotel
|
|
141
|
+
// !SECTION: Travel & Hotel
|
|
142
|
+
// SECTION: Weather
|
|
143
|
+
// !SECTION: Weather
|
|
144
|
+
// SECTION: Writing
|
|
145
|
+
// !SECTION: Writing
|
|
146
|
+
// SECTION: Navigation & Menu
|
|
147
|
+
// !SECTION: Navigation & Menu
|
|
148
|
+
// SECTION: User Interface Controls
|
|
149
|
+
import Search from '@/src/icons/user-interface-controls/Search';
|
|
150
|
+
// !SECTION: User Interface Controls
|
|
151
|
+
// SECTION: Status & Notifications
|
|
152
|
+
// !SECTION: Status & Notifications
|
|
153
|
+
// SECTION: Saving & Data Management
|
|
154
|
+
import Refresh from '@/src/icons/saving-data-management/Refresh';
|
|
155
|
+
// !SECTION: Saving & Data Management
|
|
156
|
+
// SECTION: Interactions
|
|
157
|
+
// !SECTION: Interactions
|
|
158
|
+
// SECTION: Layout & Grid
|
|
159
|
+
// !SECTION: Layout & Grid
|
|
160
|
+
// SECTION: Logos (Common/Generic)
|
|
161
|
+
// !SECTION: Logos (Common/Generic)
|
|
162
|
+
// SECTION: Balls & Equipment
|
|
163
|
+
// !SECTION: Balls & Equipment
|
|
164
|
+
// SECTION: Events & Awards
|
|
165
|
+
// !SECTION: Events & Awards
|
|
166
|
+
// SECTION: Activities
|
|
167
|
+
// !SECTION: Activities
|
|
17
168
|
// !SECTION: Imports
|
|
18
169
|
// SECTION: Exports
|
|
19
|
-
// SECTION:
|
|
170
|
+
// SECTION: Accessibility
|
|
171
|
+
// !SECTION: Accessibility
|
|
172
|
+
// SECTION: Alert
|
|
173
|
+
// !SECTION: Alert
|
|
174
|
+
// SECTION: Alphabet
|
|
175
|
+
// !SECTION: Alphabet
|
|
176
|
+
// SECTION: Animals
|
|
177
|
+
// !SECTION: Animals
|
|
178
|
+
// SECTION: Arrows & Direction
|
|
20
179
|
export { ArrowDown, ArrowLeft, ArrowUp };
|
|
21
|
-
// !SECTION:
|
|
180
|
+
// !SECTION: Arrows & Direction
|
|
181
|
+
// SECTION: Astronomy
|
|
182
|
+
// !SECTION: Astronomy
|
|
183
|
+
// SECTION: Automotive
|
|
184
|
+
// !SECTION: Automotive
|
|
185
|
+
// SECTION: Buildings
|
|
186
|
+
// !SECTION: Buildings
|
|
187
|
+
// SECTION: Business
|
|
188
|
+
// !SECTION: Business
|
|
189
|
+
// SECTION: Camping
|
|
190
|
+
// !SECTION: Camping
|
|
191
|
+
// SECTION: Charity
|
|
192
|
+
// !SECTION: Charity
|
|
193
|
+
// SECTION: Charts & Graphs
|
|
194
|
+
// !SECTION: Charts & Graphs
|
|
195
|
+
// SECTION: Childhood
|
|
196
|
+
// !SECTION: Childhood
|
|
197
|
+
// SECTION: Clothing & Fashion
|
|
198
|
+
// !SECTION: Clothing & Fashion
|
|
199
|
+
// SECTION: Coding
|
|
200
|
+
// !SECTION: Coding
|
|
201
|
+
// SECTION: Communication
|
|
202
|
+
// !SECTION: Communication
|
|
203
|
+
// SECTION: Connectivity
|
|
204
|
+
// !SECTION: Connectivity
|
|
205
|
+
// SECTION: Construction
|
|
206
|
+
// !SECTION: Construction
|
|
207
|
+
// SECTION: Design
|
|
208
|
+
// !SECTION: Design
|
|
209
|
+
// SECTION: Devices & Hardware
|
|
210
|
+
// !SECTION: Devices & Hardware
|
|
211
|
+
// SECTION: Disaster & Crisis
|
|
212
|
+
// !SECTION: Disaster & Crisis
|
|
213
|
+
// SECTION: Editing & Creation
|
|
214
|
+
export { Cut, Copy };
|
|
215
|
+
// !SECTION: Editing & Creation
|
|
216
|
+
// SECTION: Education
|
|
217
|
+
// !SECTION: Education
|
|
218
|
+
// SECTION: Emoji & Emoticons
|
|
219
|
+
// !SECTION: Emoji & Emoticons
|
|
220
|
+
// SECTION: Energy
|
|
221
|
+
// !SECTION: Energy
|
|
222
|
+
// SECTION: Files & Folders
|
|
223
|
+
// !SECTION: Files & Folders
|
|
224
|
+
// SECTION: Film & Video
|
|
225
|
+
// !SECTION: Film & Video
|
|
226
|
+
// SECTION: Food & Beverage
|
|
227
|
+
// !SECTION: Food & Beverage
|
|
228
|
+
// SECTION: Gaming
|
|
229
|
+
// !SECTION: Gaming
|
|
230
|
+
// SECTION: Genders
|
|
231
|
+
// !SECTION
|
|
232
|
+
// SECTION: Halloween
|
|
233
|
+
// !SECTION: Halloween
|
|
234
|
+
// SECTION: Hands
|
|
235
|
+
// !SECTION: Hands
|
|
236
|
+
// SECTION: Holidays
|
|
237
|
+
// !SECTION: Holidays
|
|
238
|
+
// SECTION: Household
|
|
239
|
+
// !SECTION: Household
|
|
240
|
+
// SECTION: Humanitarian
|
|
241
|
+
// !SECTION: Humanitarian
|
|
242
|
+
// SECTION: Logistics
|
|
243
|
+
// !SECTION: Logistics
|
|
244
|
+
// SECTION: Location & Maps
|
|
245
|
+
// !SECTION: Location & Maps
|
|
246
|
+
// SECTION: Maritime
|
|
247
|
+
// !SECTION: Maritime
|
|
248
|
+
// SECTION: Marketing
|
|
249
|
+
// !SECTION: Marketing
|
|
250
|
+
// SECTION: Mathematics
|
|
251
|
+
// !SECTION: Mathematics
|
|
252
|
+
// SECTION: Media Playback
|
|
253
|
+
// !SECTION: Media Playback
|
|
254
|
+
// SECTION: Medical & Health
|
|
255
|
+
// !SECTION: Medical & Health
|
|
256
|
+
// SECTION: Money
|
|
257
|
+
// !SECTION: Money
|
|
258
|
+
// SECTION: Moving
|
|
259
|
+
// !SECTION: Moving
|
|
260
|
+
// SECTION: Music & Audio
|
|
261
|
+
// !SECTION: Music & Audio
|
|
262
|
+
// SECTION: Nature & Environment
|
|
263
|
+
// !SECTION: Nature & Environment
|
|
264
|
+
// SECTION: Numbers
|
|
265
|
+
// !SECTION: Numbers
|
|
266
|
+
// SECTION: Photos & Images
|
|
267
|
+
// !SECTION: Photos & Images
|
|
268
|
+
// SECTION: Political
|
|
269
|
+
// !SECTION: Political
|
|
270
|
+
// SECTION: Shapes, Symbols & Punctuation
|
|
271
|
+
// !SECTION: Shapes, Symbols & Punctuation
|
|
272
|
+
// SECTION: Religion
|
|
273
|
+
// !SECTION: Religion
|
|
274
|
+
// SECTION: Science
|
|
275
|
+
// !SECTION: Science
|
|
276
|
+
// SECTION: Science Fiction
|
|
277
|
+
// !SECTION: Science Fiction
|
|
278
|
+
// SECTION: Security & Privacy
|
|
279
|
+
// !SECTION: Security & Privacy
|
|
280
|
+
// SECTION: Finance & Shopping
|
|
281
|
+
// !SECTION: Finance & Shopping
|
|
282
|
+
// SECTION: Social & People
|
|
283
|
+
// !SECTION: Social & People
|
|
284
|
+
// SECTION: Spinners
|
|
285
|
+
// !SECTION: Spinners
|
|
286
|
+
// SECTION: Text Formatting
|
|
287
|
+
// !SECTION: Text Formatting
|
|
288
|
+
// SECTION: Time & Calendar
|
|
289
|
+
// !SECTION: Time & Calendar
|
|
290
|
+
// SECTION: Toggle
|
|
291
|
+
// !SECTION: Toggle
|
|
292
|
+
// SECTION: Transportation
|
|
293
|
+
// !SECTION: Transportation
|
|
294
|
+
// SECTION: Travel & Hotel
|
|
295
|
+
// !SECTION: Travel & Hotel
|
|
296
|
+
// SECTION: Weather
|
|
297
|
+
// !SECTION: Weather
|
|
298
|
+
// SECTION: Writing
|
|
299
|
+
// !SECTION: Writing
|
|
300
|
+
// SECTION: Navigation & Menu
|
|
301
|
+
// !SECTION: Navigation & Menu
|
|
302
|
+
// SECTION: User Interface Controls
|
|
303
|
+
export { Search };
|
|
304
|
+
// !SECTION: User Interface Controls
|
|
305
|
+
// SECTION: Status & Notifications
|
|
306
|
+
// !SECTION: Status & Notifications
|
|
307
|
+
// SECTION: Saving & Data Management
|
|
308
|
+
export { Refresh };
|
|
309
|
+
// !SECTION: Saving & Data Management
|
|
310
|
+
// SECTION: Interactions
|
|
311
|
+
// !SECTION: Interactions
|
|
312
|
+
// SECTION: Layout & Grid
|
|
313
|
+
// !SECTION: Layout & Grid
|
|
314
|
+
// SECTION: Logos (Common/Generic)
|
|
315
|
+
// !SECTION: Logos (Common/Generic)
|
|
316
|
+
// SECTION: Balls & Equipment
|
|
317
|
+
// !SECTION: Balls & Equipment
|
|
318
|
+
// SECTION: Events & Awards
|
|
319
|
+
// !SECTION: Events & Awards
|
|
320
|
+
// SECTION: Activities
|
|
321
|
+
// !SECTION: Activities
|
|
22
322
|
// !SECTION: Exports
|
|
@@ -3,18 +3,17 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* This function is a custom template for converting SVG icons to React components.
|
|
5
5
|
*
|
|
6
|
-
* @version 1.
|
|
6
|
+
* @version 1.1.0
|
|
7
7
|
* @author Aayush Goyal
|
|
8
|
-
* @created
|
|
9
|
-
* @modifier
|
|
10
|
-
* @modified
|
|
8
|
+
* @created 2025-07-13
|
|
9
|
+
* @modifier Aayush Goyal
|
|
10
|
+
* @modified 2025-07-15
|
|
11
11
|
* @since 1.1.0
|
|
12
12
|
*/
|
|
13
13
|
const iconTemplate = ({ imports, interfaces, componentName, props, jsx, exports }, { tpl }) => {
|
|
14
14
|
console.log(props);
|
|
15
15
|
// Remove 'Svg' from the export name if present
|
|
16
16
|
const exportName = componentName.replace(/^Svg/, '');
|
|
17
|
-
const todaysDate = new Date().toISOString().split('T')[0];
|
|
18
17
|
return tpl `
|
|
19
18
|
${imports};
|
|
20
19
|
|
|
@@ -35,14 +34,16 @@ import { IconComponentProps } from "@/src/lib/types";
|
|
|
35
34
|
* @created Auto-generated
|
|
36
35
|
* @modifier
|
|
37
36
|
* @modified
|
|
38
|
-
* @since
|
|
37
|
+
* @since 1.x.0
|
|
39
38
|
*/
|
|
40
39
|
|
|
41
40
|
${interfaces};
|
|
42
41
|
|
|
43
42
|
const ${componentName.substring(3)} = ({
|
|
44
43
|
color = '#000000',
|
|
44
|
+
height = '1em',
|
|
45
45
|
strokeWidth = 1,
|
|
46
|
+
width = '1em'
|
|
46
47
|
}: IconComponentProps) => {
|
|
47
48
|
return (
|
|
48
49
|
${jsx}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of an arrow pointing downwards.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.2.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-06-22
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-15
|
|
10
|
+
* @since 1.1.0
|
|
11
|
+
*/
|
|
12
|
+
declare const ArrowDown: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default ArrowDown;
|
|
@@ -5,9 +5,9 @@ import { IconComponentProps } from '@/src/lib/types';
|
|
|
5
5
|
* @version 1.0.0
|
|
6
6
|
* @author Aayush Goyal
|
|
7
7
|
* @created 2025-07-13
|
|
8
|
-
* @modifier
|
|
9
|
-
* @modified
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-15
|
|
10
10
|
* @since 1.3.0
|
|
11
11
|
*/
|
|
12
|
-
declare const ArrowLeft: ({ color, strokeWidth }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare const ArrowLeft: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export default ArrowLeft;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconComponentProps } from
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
2
|
/**
|
|
3
3
|
* This function renders an SVG icon of an arrow pointing downwards.
|
|
4
4
|
*
|
|
@@ -6,8 +6,8 @@ import { IconComponentProps } from "@/src/lib/types";
|
|
|
6
6
|
* @author Aayush Goyal
|
|
7
7
|
* @created 2025-06-22
|
|
8
8
|
* @modifier Aayush Goyal
|
|
9
|
-
* @modified 2025-
|
|
9
|
+
* @modified 2025-07-15
|
|
10
10
|
* @since 1.1.0
|
|
11
11
|
*/
|
|
12
|
-
declare const ArrowDown: ({ color, strokeWidth, }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare const ArrowDown: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export default ArrowDown;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a copy action.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-07-15
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.6.0
|
|
11
|
+
*/
|
|
12
|
+
declare const Copy: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default Copy;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a cut action.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-07-15
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.6.0
|
|
11
|
+
*/
|
|
12
|
+
declare const Cut: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default Cut;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a refresh action.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-07-15
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.6.0
|
|
11
|
+
*/
|
|
12
|
+
declare const Refresh: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default Refresh;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a search.
|
|
4
|
+
*
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @author Aayush Goyal
|
|
7
|
+
* @created 2025-07-15
|
|
8
|
+
* @modifier
|
|
9
|
+
* @modified
|
|
10
|
+
* @since 1.6.0
|
|
11
|
+
*/
|
|
12
|
+
declare const Search: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default Search;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file exports all the icons for the library.
|
|
3
3
|
*
|
|
4
|
-
* @version 1.
|
|
4
|
+
* @version 1.2.0
|
|
5
5
|
* @author Aayush Goyal
|
|
6
6
|
* @created 2025-06-22
|
|
7
7
|
* @modifier Aayush Goyal
|
|
8
8
|
* @modified 2025-07-13
|
|
9
9
|
* @since 1.1.0
|
|
10
10
|
*/
|
|
11
|
-
import ArrowDown from '@/src/icons/
|
|
12
|
-
import ArrowLeft from '@/src/icons/
|
|
13
|
-
import ArrowUp from '@/src/icons/
|
|
11
|
+
import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
|
|
12
|
+
import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
|
|
13
|
+
import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
|
|
14
|
+
import Cut from '@/src/icons/editing-creation/Cut';
|
|
15
|
+
import Copy from '@/src/icons/editing-creation/Copy';
|
|
16
|
+
import Search from '@/src/icons/user-interface-controls/Search';
|
|
17
|
+
import Refresh from '@/src/icons/saving-data-management/Refresh';
|
|
14
18
|
export { ArrowDown, ArrowLeft, ArrowUp };
|
|
19
|
+
export { Cut, Copy };
|
|
20
|
+
export { Search };
|
|
21
|
+
export { Refresh };
|
|
@@ -2,11 +2,11 @@ import type { Template } from '@/src/lib/types';
|
|
|
2
2
|
/**
|
|
3
3
|
* This function is a custom template for converting SVG icons to React components.
|
|
4
4
|
*
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.1.0
|
|
6
6
|
* @author Aayush Goyal
|
|
7
|
-
* @created
|
|
8
|
-
* @modifier
|
|
9
|
-
* @modified
|
|
7
|
+
* @created 2025-07-13
|
|
8
|
+
* @modifier Aayush Goyal
|
|
9
|
+
* @modified 2025-07-15
|
|
10
10
|
* @since 1.1.0
|
|
11
11
|
*/
|
|
12
12
|
declare const iconTemplate: Template;
|
|
@@ -2,7 +2,9 @@ import type { types as t } from '@babel/core';
|
|
|
2
2
|
import type { TemplateBuilder } from '@babel/template';
|
|
3
3
|
interface IconComponentProps extends React.SVGProps<SVGSVGElement> {
|
|
4
4
|
color?: string;
|
|
5
|
+
height?: string;
|
|
5
6
|
strokeWidth?: number;
|
|
7
|
+
width?: string;
|
|
6
8
|
[key: string]: any;
|
|
7
9
|
}
|
|
8
10
|
interface TemplateVariables {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file exports all the icons for the library.
|
|
3
3
|
*
|
|
4
|
-
* @version 1.
|
|
4
|
+
* @version 1.2.0
|
|
5
5
|
* @author Aayush Goyal
|
|
6
6
|
* @created 2025-06-22
|
|
7
7
|
* @modifier Aayush Goyal
|
|
@@ -9,15 +9,315 @@
|
|
|
9
9
|
* @since 1.1.0
|
|
10
10
|
*/
|
|
11
11
|
// SECTION: Imports
|
|
12
|
-
// SECTION:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
//
|
|
12
|
+
// SECTION: Accessibility
|
|
13
|
+
// !SECTION: Accessibility
|
|
14
|
+
// SECTION: Alert
|
|
15
|
+
// !SECTION: Alert
|
|
16
|
+
// SECTION: Alphabet
|
|
17
|
+
// !SECTION: Alphabet
|
|
18
|
+
// SECTION: Animals
|
|
19
|
+
// !SECTION: Animals
|
|
20
|
+
// SECTION: Arrows & Direction
|
|
21
|
+
import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
|
|
22
|
+
import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
|
|
23
|
+
// import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
|
|
24
|
+
import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
|
|
25
|
+
// !SECTION: Arrows & Direction
|
|
26
|
+
// SECTION: Astronomy
|
|
27
|
+
// !SECTION: Astronomy
|
|
28
|
+
// SECTION: Automotive
|
|
29
|
+
// !SECTION: Automotive
|
|
30
|
+
// SECTION: Buildings
|
|
31
|
+
// !SECTION: Buildings
|
|
32
|
+
// SECTION: Business
|
|
33
|
+
// !SECTION: Business
|
|
34
|
+
// SECTION: Camping
|
|
35
|
+
// !SECTION: Camping
|
|
36
|
+
// SECTION: Charity
|
|
37
|
+
// !SECTION: Charity
|
|
38
|
+
// SECTION: Charts & Graphs
|
|
39
|
+
// !SECTION: Charts & Graphs
|
|
40
|
+
// SECTION: Childhood
|
|
41
|
+
// !SECTION: Childhood
|
|
42
|
+
// SECTION: Clothing & Fashion
|
|
43
|
+
// !SECTION: Clothing & Fashion
|
|
44
|
+
// SECTION: Coding
|
|
45
|
+
// !SECTION: Coding
|
|
46
|
+
// SECTION: Communication
|
|
47
|
+
// !SECTION: Communication
|
|
48
|
+
// SECTION: Connectivity
|
|
49
|
+
// !SECTION: Connectivity
|
|
50
|
+
// SECTION: Construction
|
|
51
|
+
// !SECTION: Construction
|
|
52
|
+
// SECTION: Design
|
|
53
|
+
// !SECTION: Design
|
|
54
|
+
// SECTION: Devices & Hardware
|
|
55
|
+
// !SECTION: Devices & Hardware
|
|
56
|
+
// SECTION: Disaster & Crisis
|
|
57
|
+
// !SECTION: Disaster & Crisis
|
|
58
|
+
// SECTION: Editing & Creation
|
|
59
|
+
import Cut from '@/src/icons/editing-creation/Cut';
|
|
60
|
+
import Copy from '@/src/icons/editing-creation/Copy';
|
|
61
|
+
// !SECTION: Editing & Creation
|
|
62
|
+
// SECTION: Education
|
|
63
|
+
// !SECTION: Education
|
|
64
|
+
// SECTION: Emoji & Emoticons
|
|
65
|
+
// !SECTION: Emoji & Emoticons
|
|
66
|
+
// SECTION: Energy
|
|
67
|
+
// !SECTION: Energy
|
|
68
|
+
// SECTION: Files & Folders
|
|
69
|
+
// !SECTION: Files & Folders
|
|
70
|
+
// SECTION: Film & Video
|
|
71
|
+
// !SECTION: Film & Video
|
|
72
|
+
// SECTION: Food & Beverage
|
|
73
|
+
// !SECTION: Food & Beverage
|
|
74
|
+
// SECTION: Gaming
|
|
75
|
+
// !SECTION: Gaming
|
|
76
|
+
// SECTION: Genders
|
|
77
|
+
// !SECTION
|
|
78
|
+
// SECTION: Halloween
|
|
79
|
+
// !SECTION: Halloween
|
|
80
|
+
// SECTION: Hands
|
|
81
|
+
// !SECTION: Hands
|
|
82
|
+
// SECTION: Holidays
|
|
83
|
+
// !SECTION: Holidays
|
|
84
|
+
// SECTION: Household
|
|
85
|
+
// !SECTION: Household
|
|
86
|
+
// SECTION: Humanitarian
|
|
87
|
+
// !SECTION: Humanitarian
|
|
88
|
+
// SECTION: Logistics
|
|
89
|
+
// !SECTION: Logistics
|
|
90
|
+
// SECTION: Location & Maps
|
|
91
|
+
// !SECTION: Location & Maps
|
|
92
|
+
// SECTION: Maritime
|
|
93
|
+
// !SECTION: Maritime
|
|
94
|
+
// SECTION: Marketing
|
|
95
|
+
// !SECTION: Marketing
|
|
96
|
+
// SECTION: Mathematics
|
|
97
|
+
// !SECTION: Mathematics
|
|
98
|
+
// SECTION: Media Playback
|
|
99
|
+
// !SECTION: Media Playback
|
|
100
|
+
// SECTION: Medical & Health
|
|
101
|
+
// !SECTION: Medical & Health
|
|
102
|
+
// SECTION: Money
|
|
103
|
+
// !SECTION: Money
|
|
104
|
+
// SECTION: Moving
|
|
105
|
+
// !SECTION: Moving
|
|
106
|
+
// SECTION: Music & Audio
|
|
107
|
+
// !SECTION: Music & Audio
|
|
108
|
+
// SECTION: Nature & Environment
|
|
109
|
+
// !SECTION: Nature & Environment
|
|
110
|
+
// SECTION: Numbers
|
|
111
|
+
// !SECTION: Numbers
|
|
112
|
+
// SECTION: Photos & Images
|
|
113
|
+
// !SECTION: Photos & Images
|
|
114
|
+
// SECTION: Political
|
|
115
|
+
// !SECTION: Political
|
|
116
|
+
// SECTION: Shapes, Symbols & Punctuation
|
|
117
|
+
// !SECTION: Shapes, Symbols & Punctuation
|
|
118
|
+
// SECTION: Religion
|
|
119
|
+
// !SECTION: Religion
|
|
120
|
+
// SECTION: Science
|
|
121
|
+
// !SECTION: Science
|
|
122
|
+
// SECTION: Science Fiction
|
|
123
|
+
// !SECTION: Science Fiction
|
|
124
|
+
// SECTION: Security & Privacy
|
|
125
|
+
// !SECTION: Security & Privacy
|
|
126
|
+
// SECTION: Finance & Shopping
|
|
127
|
+
// !SECTION: Finance & Shopping
|
|
128
|
+
// SECTION: Social & People
|
|
129
|
+
// !SECTION: Social & People
|
|
130
|
+
// SECTION: Spinners
|
|
131
|
+
// !SECTION: Spinners
|
|
132
|
+
// SECTION: Text Formatting
|
|
133
|
+
// !SECTION: Text Formatting
|
|
134
|
+
// SECTION: Time & Calendar
|
|
135
|
+
// !SECTION: Time & Calendar
|
|
136
|
+
// SECTION: Toggle
|
|
137
|
+
// !SECTION: Toggle
|
|
138
|
+
// SECTION: Transportation
|
|
139
|
+
// !SECTION: Transportation
|
|
140
|
+
// SECTION: Travel & Hotel
|
|
141
|
+
// !SECTION: Travel & Hotel
|
|
142
|
+
// SECTION: Weather
|
|
143
|
+
// !SECTION: Weather
|
|
144
|
+
// SECTION: Writing
|
|
145
|
+
// !SECTION: Writing
|
|
146
|
+
// SECTION: Navigation & Menu
|
|
147
|
+
// !SECTION: Navigation & Menu
|
|
148
|
+
// SECTION: User Interface Controls
|
|
149
|
+
import Search from '@/src/icons/user-interface-controls/Search';
|
|
150
|
+
// !SECTION: User Interface Controls
|
|
151
|
+
// SECTION: Status & Notifications
|
|
152
|
+
// !SECTION: Status & Notifications
|
|
153
|
+
// SECTION: Saving & Data Management
|
|
154
|
+
import Refresh from '@/src/icons/saving-data-management/Refresh';
|
|
155
|
+
// !SECTION: Saving & Data Management
|
|
156
|
+
// SECTION: Interactions
|
|
157
|
+
// !SECTION: Interactions
|
|
158
|
+
// SECTION: Layout & Grid
|
|
159
|
+
// !SECTION: Layout & Grid
|
|
160
|
+
// SECTION: Logos (Common/Generic)
|
|
161
|
+
// !SECTION: Logos (Common/Generic)
|
|
162
|
+
// SECTION: Balls & Equipment
|
|
163
|
+
// !SECTION: Balls & Equipment
|
|
164
|
+
// SECTION: Events & Awards
|
|
165
|
+
// !SECTION: Events & Awards
|
|
166
|
+
// SECTION: Activities
|
|
167
|
+
// !SECTION: Activities
|
|
17
168
|
// !SECTION: Imports
|
|
18
169
|
|
|
19
170
|
// SECTION: Exports
|
|
20
|
-
// SECTION:
|
|
171
|
+
// SECTION: Accessibility
|
|
172
|
+
// !SECTION: Accessibility
|
|
173
|
+
// SECTION: Alert
|
|
174
|
+
// !SECTION: Alert
|
|
175
|
+
// SECTION: Alphabet
|
|
176
|
+
// !SECTION: Alphabet
|
|
177
|
+
// SECTION: Animals
|
|
178
|
+
// !SECTION: Animals
|
|
179
|
+
// SECTION: Arrows & Direction
|
|
21
180
|
export { ArrowDown, ArrowLeft, ArrowUp };
|
|
22
|
-
// !SECTION:
|
|
181
|
+
// !SECTION: Arrows & Direction
|
|
182
|
+
// SECTION: Astronomy
|
|
183
|
+
// !SECTION: Astronomy
|
|
184
|
+
// SECTION: Automotive
|
|
185
|
+
// !SECTION: Automotive
|
|
186
|
+
// SECTION: Buildings
|
|
187
|
+
// !SECTION: Buildings
|
|
188
|
+
// SECTION: Business
|
|
189
|
+
// !SECTION: Business
|
|
190
|
+
// SECTION: Camping
|
|
191
|
+
// !SECTION: Camping
|
|
192
|
+
// SECTION: Charity
|
|
193
|
+
// !SECTION: Charity
|
|
194
|
+
// SECTION: Charts & Graphs
|
|
195
|
+
// !SECTION: Charts & Graphs
|
|
196
|
+
// SECTION: Childhood
|
|
197
|
+
// !SECTION: Childhood
|
|
198
|
+
// SECTION: Clothing & Fashion
|
|
199
|
+
// !SECTION: Clothing & Fashion
|
|
200
|
+
// SECTION: Coding
|
|
201
|
+
// !SECTION: Coding
|
|
202
|
+
// SECTION: Communication
|
|
203
|
+
// !SECTION: Communication
|
|
204
|
+
// SECTION: Connectivity
|
|
205
|
+
// !SECTION: Connectivity
|
|
206
|
+
// SECTION: Construction
|
|
207
|
+
// !SECTION: Construction
|
|
208
|
+
// SECTION: Design
|
|
209
|
+
// !SECTION: Design
|
|
210
|
+
// SECTION: Devices & Hardware
|
|
211
|
+
// !SECTION: Devices & Hardware
|
|
212
|
+
// SECTION: Disaster & Crisis
|
|
213
|
+
// !SECTION: Disaster & Crisis
|
|
214
|
+
// SECTION: Editing & Creation
|
|
215
|
+
export { Cut, Copy };
|
|
216
|
+
// !SECTION: Editing & Creation
|
|
217
|
+
// SECTION: Education
|
|
218
|
+
// !SECTION: Education
|
|
219
|
+
// SECTION: Emoji & Emoticons
|
|
220
|
+
// !SECTION: Emoji & Emoticons
|
|
221
|
+
// SECTION: Energy
|
|
222
|
+
// !SECTION: Energy
|
|
223
|
+
// SECTION: Files & Folders
|
|
224
|
+
// !SECTION: Files & Folders
|
|
225
|
+
// SECTION: Film & Video
|
|
226
|
+
// !SECTION: Film & Video
|
|
227
|
+
// SECTION: Food & Beverage
|
|
228
|
+
// !SECTION: Food & Beverage
|
|
229
|
+
// SECTION: Gaming
|
|
230
|
+
// !SECTION: Gaming
|
|
231
|
+
// SECTION: Genders
|
|
232
|
+
// !SECTION
|
|
233
|
+
// SECTION: Halloween
|
|
234
|
+
// !SECTION: Halloween
|
|
235
|
+
// SECTION: Hands
|
|
236
|
+
// !SECTION: Hands
|
|
237
|
+
// SECTION: Holidays
|
|
238
|
+
// !SECTION: Holidays
|
|
239
|
+
// SECTION: Household
|
|
240
|
+
// !SECTION: Household
|
|
241
|
+
// SECTION: Humanitarian
|
|
242
|
+
// !SECTION: Humanitarian
|
|
243
|
+
// SECTION: Logistics
|
|
244
|
+
// !SECTION: Logistics
|
|
245
|
+
// SECTION: Location & Maps
|
|
246
|
+
// !SECTION: Location & Maps
|
|
247
|
+
// SECTION: Maritime
|
|
248
|
+
// !SECTION: Maritime
|
|
249
|
+
// SECTION: Marketing
|
|
250
|
+
// !SECTION: Marketing
|
|
251
|
+
// SECTION: Mathematics
|
|
252
|
+
// !SECTION: Mathematics
|
|
253
|
+
// SECTION: Media Playback
|
|
254
|
+
// !SECTION: Media Playback
|
|
255
|
+
// SECTION: Medical & Health
|
|
256
|
+
// !SECTION: Medical & Health
|
|
257
|
+
// SECTION: Money
|
|
258
|
+
// !SECTION: Money
|
|
259
|
+
// SECTION: Moving
|
|
260
|
+
// !SECTION: Moving
|
|
261
|
+
// SECTION: Music & Audio
|
|
262
|
+
// !SECTION: Music & Audio
|
|
263
|
+
// SECTION: Nature & Environment
|
|
264
|
+
// !SECTION: Nature & Environment
|
|
265
|
+
// SECTION: Numbers
|
|
266
|
+
// !SECTION: Numbers
|
|
267
|
+
// SECTION: Photos & Images
|
|
268
|
+
// !SECTION: Photos & Images
|
|
269
|
+
// SECTION: Political
|
|
270
|
+
// !SECTION: Political
|
|
271
|
+
// SECTION: Shapes, Symbols & Punctuation
|
|
272
|
+
// !SECTION: Shapes, Symbols & Punctuation
|
|
273
|
+
// SECTION: Religion
|
|
274
|
+
// !SECTION: Religion
|
|
275
|
+
// SECTION: Science
|
|
276
|
+
// !SECTION: Science
|
|
277
|
+
// SECTION: Science Fiction
|
|
278
|
+
// !SECTION: Science Fiction
|
|
279
|
+
// SECTION: Security & Privacy
|
|
280
|
+
// !SECTION: Security & Privacy
|
|
281
|
+
// SECTION: Finance & Shopping
|
|
282
|
+
// !SECTION: Finance & Shopping
|
|
283
|
+
// SECTION: Social & People
|
|
284
|
+
// !SECTION: Social & People
|
|
285
|
+
// SECTION: Spinners
|
|
286
|
+
// !SECTION: Spinners
|
|
287
|
+
// SECTION: Text Formatting
|
|
288
|
+
// !SECTION: Text Formatting
|
|
289
|
+
// SECTION: Time & Calendar
|
|
290
|
+
// !SECTION: Time & Calendar
|
|
291
|
+
// SECTION: Toggle
|
|
292
|
+
// !SECTION: Toggle
|
|
293
|
+
// SECTION: Transportation
|
|
294
|
+
// !SECTION: Transportation
|
|
295
|
+
// SECTION: Travel & Hotel
|
|
296
|
+
// !SECTION: Travel & Hotel
|
|
297
|
+
// SECTION: Weather
|
|
298
|
+
// !SECTION: Weather
|
|
299
|
+
// SECTION: Writing
|
|
300
|
+
// !SECTION: Writing
|
|
301
|
+
// SECTION: Navigation & Menu
|
|
302
|
+
// !SECTION: Navigation & Menu
|
|
303
|
+
// SECTION: User Interface Controls
|
|
304
|
+
export { Search };
|
|
305
|
+
// !SECTION: User Interface Controls
|
|
306
|
+
// SECTION: Status & Notifications
|
|
307
|
+
// !SECTION: Status & Notifications
|
|
308
|
+
// SECTION: Saving & Data Management
|
|
309
|
+
export { Refresh };
|
|
310
|
+
// !SECTION: Saving & Data Management
|
|
311
|
+
// SECTION: Interactions
|
|
312
|
+
// !SECTION: Interactions
|
|
313
|
+
// SECTION: Layout & Grid
|
|
314
|
+
// !SECTION: Layout & Grid
|
|
315
|
+
// SECTION: Logos (Common/Generic)
|
|
316
|
+
// !SECTION: Logos (Common/Generic)
|
|
317
|
+
// SECTION: Balls & Equipment
|
|
318
|
+
// !SECTION: Balls & Equipment
|
|
319
|
+
// SECTION: Events & Awards
|
|
320
|
+
// !SECTION: Events & Awards
|
|
321
|
+
// SECTION: Activities
|
|
322
|
+
// !SECTION: Activities
|
|
23
323
|
// !SECTION: Exports
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
// Import custom components.
|
|
3
|
-
// Import custom utilities.
|
|
4
|
-
// Import custom types.
|
|
5
|
-
// Import styles.
|
|
6
|
-
/**
|
|
7
|
-
* This function renders an SVG icon of an arrow pointing downwards.
|
|
8
|
-
*
|
|
9
|
-
* @version 1.1.0
|
|
10
|
-
* @author Aayush Goyal
|
|
11
|
-
* @created 2025-06-22
|
|
12
|
-
* @modifier Aayush Goyal
|
|
13
|
-
* @modified 2025-06-22
|
|
14
|
-
* @since 1.1.0
|
|
15
|
-
*/
|
|
16
|
-
const ArrowDown = ({ color = '#000000', strokeWidth = 1, }) => {
|
|
17
|
-
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", viewBox: "0 0 25 29", stroke: color, strokeWidth: strokeWidth, children: [_jsx("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", fill: color }), _jsx("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", fill: color })] }));
|
|
18
|
-
};
|
|
19
|
-
export default ArrowDown;
|
|
@@ -1,22 +0,0 @@
|
|
|
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-07-13
|
|
8
|
-
* @modifier
|
|
9
|
-
* @modified
|
|
10
|
-
* @since 1.3.0
|
|
11
|
-
*/
|
|
12
|
-
const ArrowLeft = ({ color = '#000000', strokeWidth = 1 }) => {
|
|
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", stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M276.081 375.51h28.348v24.487h-28.348z", style: {
|
|
19
|
-
fill: 'none'
|
|
20
|
-
}, transform: "matrix(1.00054 0 0 1.00075 -275.795 -375.307)" }), _jsx("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" }), _jsx("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" })] }));
|
|
21
|
-
};
|
|
22
|
-
export default ArrowLeft;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
// Import global from third party libraries.
|
|
3
|
-
// Import custom components.
|
|
4
|
-
// Import custom utilities.
|
|
5
|
-
// Import custom types.
|
|
6
|
-
// Import styles.
|
|
7
|
-
/**
|
|
8
|
-
* This function renders an SVG icon of an arrow pointing downwards.
|
|
9
|
-
*
|
|
10
|
-
* @version 1.0.0
|
|
11
|
-
* @author Aayush Goyal
|
|
12
|
-
* @created 2025-06-22
|
|
13
|
-
* @modifier
|
|
14
|
-
* @modified
|
|
15
|
-
* @since 1.1.0
|
|
16
|
-
*/
|
|
17
|
-
const ArrowDown = (props) => {
|
|
18
|
-
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
19
|
-
fillRule: "evenodd",
|
|
20
|
-
clipRule: "evenodd",
|
|
21
|
-
strokeLinejoin: "round",
|
|
22
|
-
strokeMiterlimit: 2,
|
|
23
|
-
}, viewBox: "0 0 26 29", ...props, children: [_jsx("path", { d: "M246.127 405.463h24.487v28.348h-24.487z", style: {
|
|
24
|
-
fill: "none",
|
|
25
|
-
}, transform: "matrix(1.00017 0 0 1.00024 -245.579 -405.18)" }), _jsx("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" }), _jsx("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" })] }));
|
|
26
|
-
};
|
|
27
|
-
export default ArrowDown;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This function renders an SVG icon of an arrow pointing downwards.
|
|
3
|
-
*
|
|
4
|
-
* @version 1.0.0
|
|
5
|
-
* @author Aayush Goyal
|
|
6
|
-
* @created 2025-06-22
|
|
7
|
-
* @modifier
|
|
8
|
-
* @modified
|
|
9
|
-
* @since 1.1.0
|
|
10
|
-
*/
|
|
11
|
-
declare const ArrowDown: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export default ArrowDown;
|