@indxsearch/pixl 1.0.8 → 1.1.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/{Filter_alt.d.ts → Alt.d.ts} +2 -2
- package/dist/Alt.js +8 -0
- package/dist/Api.d.ts +7 -0
- package/dist/{Filter_alt.js → Api.js} +3 -3
- package/dist/Cmd.d.ts +7 -0
- package/dist/Cmd.js +8 -0
- package/dist/Control.d.ts +7 -0
- package/dist/Control.js +8 -0
- package/dist/Cursor.d.ts +7 -0
- package/dist/Cursor.js +8 -0
- package/dist/Database.d.ts +7 -0
- package/dist/Database.js +8 -0
- package/dist/External_link.d.ts +7 -0
- package/dist/External_link.js +8 -0
- package/dist/Feather.d.ts +7 -0
- package/dist/Feather.js +8 -0
- package/dist/Hibernate.d.ts +7 -0
- package/dist/Hibernate.js +8 -0
- package/dist/Presentation.d.ts +7 -0
- package/dist/Presentation.js +8 -0
- package/dist/Rag_search.d.ts +7 -0
- package/dist/Rag_search.js +8 -0
- package/dist/Search_as_you_type.d.ts +7 -0
- package/dist/Search_as_you_type.js +8 -0
- package/dist/Shift.d.ts +7 -0
- package/dist/Shift.js +8 -0
- package/dist/Stop.d.ts +7 -0
- package/dist/Stop.js +8 -0
- package/dist/Sunrise.d.ts +7 -0
- package/dist/Sunrise.js +8 -0
- package/dist/Text_cursor.d.ts +7 -0
- package/dist/Text_cursor.js +8 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +16 -0
- package/package.json +1 -1
- /package/dist/{GPS_my_location.d.ts → Gps_my_location.d.ts} +0 -0
- /package/dist/{GPS_my_location.js → Gps_my_location.js} +0 -0
- /package/dist/{GPS_pin.d.ts → Gps_pin.d.ts} +0 -0
- /package/dist/{GPS_pin.js → Gps_pin.js} +0 -0
- /package/dist/{RAM.d.ts → Ram.d.ts} +0 -0
- /package/dist/{RAM.js → Ram.js} +0 -0
- /package/dist/{RSS_feed.d.ts → Rss_feed.d.ts} +0 -0
- /package/dist/{RSS_feed.js → Rss_feed.js} +0 -0
package/dist/Alt.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Alt = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M7 5H5V4H7V5ZM5 4H4V3H5V4ZM4 3H3V2H4V3ZM3 2H2V1H3V2ZM2 0V1H0V0H2ZM7 1H5V0H7V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Alt;
|
package/dist/Api.d.ts
ADDED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const Api = ({ color = "black", size = 21, }) => {
|
|
3
3
|
const aspectRatio = 0.7142857142857143;
|
|
4
4
|
const width = size;
|
|
5
5
|
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
-
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M7 3H5V4H3V3H4V2H7V3ZM4 2H3V3H0V2H2V1H4V2Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
|
-
export default
|
|
8
|
+
export default Api;
|
package/dist/Cmd.d.ts
ADDED
package/dist/Cmd.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Cmd = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M2 4H3V5H1V3H2V4ZM6 5H4V4H5V3H6V5ZM4 4H3V3H4V4ZM3 2V3H2V2H3ZM5 3H4V2H5V3ZM3 1H2V2H1V0H3V1ZM6 2H5V1H4V2H3V1H4V0H6V2Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Cmd;
|
package/dist/Control.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Control = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M4 5H3V4H4V5ZM1 3V4H0V3H1ZM7 4H6V3H7V4ZM2 3H1V2H2V3ZM6 3H5V2H6V3ZM3 2H2V1H3V2ZM5 2H4V1H5V2ZM4 1H3V0H4V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Control;
|
package/dist/Cursor.d.ts
ADDED
package/dist/Cursor.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Cursor = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M3 1L5 1V2L6 2V3H4V5H3V4L2 4L2 2L1 2L1 0L3 0V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Cursor;
|
package/dist/Database.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Database = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M6 4V5L1 5L1 4L6 4ZM1 4H0L0 3H1V4ZM7 4H6L6 3H7L7 4ZM6 3L1 3L1 2L6 2V3ZM1 2L0 2L0 1L1 1V2ZM7 2L6 2V1L7 1V2ZM6 1L1 1L1 0L6 0V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Database;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const External_link = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M3 1L1 1L1 4L7 4V5L0 5L0 0L3 0V1ZM5 3H4V2L5 2V3ZM7 3H6V2H5V1L4 1V0L7 0V3Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default External_link;
|
package/dist/Feather.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Feather = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M2 5H1L1 4H2L2 5ZM3 3H4V4L2 4L2 2H3V3ZM5 3H4V2H5V3ZM4 2L3 2L3 1L4 1V2ZM6 2L5 2V1L4 1V0L6 0V2Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Feather;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Hibernate = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M5 5H2V4H5V5ZM2 4H1V1H2V4ZM6 4H5V1H6V4ZM4 2H3V0H4V2Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Hibernate;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Presentation = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M3 5H2V4H3V5ZM5 5H4V4H5V5ZM7 3H4V4H3V3H0V0H7V3Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Presentation;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Rag_search = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M2 5H1V4H2V5ZM2 2H4V4H6V5H3V3H1V0H2V2ZM6 3H5V2H6V3ZM4 1H3V0H4V1ZM6 1H5V0H6V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Rag_search;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Search_as_you_type = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M5 5H4V4H5V5ZM7 5H6V4H7V5ZM6 4L5 4L5 1L6 1L6 4ZM1 3H0L0 2L1 2L1 3ZM3 3H2V2L3 2V3ZM5 1L4 1V0L5 0V1ZM7 1L6 1V0L7 0V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Search_as_you_type;
|
package/dist/Shift.d.ts
ADDED
package/dist/Shift.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Shift = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M3 4H4V3H5V5H2V3H3V4ZM2 2V3H1V2H2ZM6 3H5V2H6V3ZM3 2H2V1H3V2ZM5 2H4V1H5V2ZM4 1H3V0H4V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Shift;
|
package/dist/Stop.d.ts
ADDED
package/dist/Stop.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Stop = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M5 1H6V4H5V5H2V4H1V1H2V0H5V1ZM2 3H5V2H2V3Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Stop;
|
package/dist/Sunrise.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Sunrise = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M1 5H0L0 4H1L1 5ZM3 5H2V4H3V5ZM5 5H4V4H5V5ZM7 5H6V4H7V5ZM4 4H3V3H4L4 4ZM2 3L1 3L1 2H2V3ZM6 3L5 3V2H6V3ZM1 2L0 2L0 1L1 1V2ZM4 2H3L3 0L4 0V2ZM7 2L6 2V1L7 1V2Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Sunrise;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Text_cursor = ({ color = "black", size = 21, }) => {
|
|
3
|
+
const aspectRatio = 0.7142857142857143;
|
|
4
|
+
const width = size;
|
|
5
|
+
const height = typeof size === "number" ? size * aspectRatio : `calc(${size} * 0.7142857142857143)`;
|
|
6
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 7 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M3 5H2V4H3L3 5ZM5 5H4V4H5V5ZM4 4L3 4L3 1L4 1V4ZM3 1L2 1V0L3 0V1ZM5 1L4 1V0L5 0V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Text_cursor;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ export { default as Align_center } from './Align_center';
|
|
|
3
3
|
export { default as Align_justify } from './Align_justify';
|
|
4
4
|
export { default as Align_left } from './Align_left';
|
|
5
5
|
export { default as Align_right } from './Align_right';
|
|
6
|
+
export { default as Alt } from './Alt';
|
|
6
7
|
export { default as Analytics } from './Analytics';
|
|
8
|
+
export { default as Api } from './Api';
|
|
7
9
|
export { default as Array } from './Array';
|
|
8
10
|
export { default as Arrow_down_left } from './Arrow_down_left';
|
|
9
11
|
export { default as Arrow_down_right } from './Arrow_down_right';
|
|
@@ -30,12 +32,14 @@ export { default as Chevron_up } from './Chevron_up';
|
|
|
30
32
|
export { default as Circle } from './Circle';
|
|
31
33
|
export { default as Clock } from './Clock';
|
|
32
34
|
export { default as Cloud } from './Cloud';
|
|
35
|
+
export { default as Cmd } from './Cmd';
|
|
33
36
|
export { default as Code } from './Code';
|
|
34
37
|
export { default as Coffee } from './Coffee';
|
|
35
38
|
export { default as Coins } from './Coins';
|
|
36
39
|
export { default as Comment_chat_message } from './Comment_chat_message';
|
|
37
40
|
export { default as Component } from './Component';
|
|
38
41
|
export { default as Compose } from './Compose';
|
|
42
|
+
export { default as Control } from './Control';
|
|
39
43
|
export { default as Copy } from './Copy';
|
|
40
44
|
export { default as Core } from './Core';
|
|
41
45
|
export { default as Coverage_index } from './Coverage_index';
|
|
@@ -44,6 +48,8 @@ export { default as Cpu } from './Cpu';
|
|
|
44
48
|
export { default as Crop } from './Crop';
|
|
45
49
|
export { default as Crystal_ball } from './Crystal_ball';
|
|
46
50
|
export { default as Csharp } from './Csharp';
|
|
51
|
+
export { default as Cursor } from './Cursor';
|
|
52
|
+
export { default as Database } from './Database';
|
|
47
53
|
export { default as Delete } from './Delete';
|
|
48
54
|
export { default as Discord } from './Discord';
|
|
49
55
|
export { default as Discovery } from './Discovery';
|
|
@@ -60,9 +66,11 @@ export { default as Dynamic_json_field } from './Dynamic_json_field';
|
|
|
60
66
|
export { default as ECommerce } from './ECommerce';
|
|
61
67
|
export { default as Empty } from './Empty';
|
|
62
68
|
export { default as Equal } from './Equal';
|
|
69
|
+
export { default as External_link } from './External_link';
|
|
63
70
|
export { default as Eye } from './Eye';
|
|
64
71
|
export { default as Fast_backward } from './Fast_backward';
|
|
65
72
|
export { default as Fast_forward } from './Fast_forward';
|
|
73
|
+
export { default as Feather } from './Feather';
|
|
66
74
|
export { default as Field } from './Field';
|
|
67
75
|
export { default as Fields } from './Fields';
|
|
68
76
|
export { default as Filter } from './Filter';
|
|
@@ -85,6 +93,7 @@ export { default as Greater_or_equal } from './Greater_or_equal';
|
|
|
85
93
|
export { default as Greater } from './Greater';
|
|
86
94
|
export { default as Headphones } from './Headphones';
|
|
87
95
|
export { default as Heart } from './Heart';
|
|
96
|
+
export { default as Hibernate } from './Hibernate';
|
|
88
97
|
export { default as Home } from './Home';
|
|
89
98
|
export { default as Hour_glass } from './Hour_glass';
|
|
90
99
|
export { default as Indent_left } from './Indent_left';
|
|
@@ -137,16 +146,20 @@ export { default as Point_left } from './Point_left';
|
|
|
137
146
|
export { default as Point_right } from './Point_right';
|
|
138
147
|
export { default as Point_up } from './Point_up';
|
|
139
148
|
export { default as Power } from './Power';
|
|
149
|
+
export { default as Presentation } from './Presentation';
|
|
140
150
|
export { default as Prev } from './Prev';
|
|
141
151
|
export { default as Puzzle_piece } from './Puzzle_piece';
|
|
152
|
+
export { default as Rag_search } from './Rag_search';
|
|
142
153
|
export { default as Ram } from './Ram';
|
|
143
154
|
export { default as Recorder } from './Recorder';
|
|
144
155
|
export { default as Refresh } from './Refresh';
|
|
145
156
|
export { default as Rss_feed } from './Rss_feed';
|
|
146
157
|
export { default as Save } from './Save';
|
|
158
|
+
export { default as Search_as_you_type } from './Search_as_you_type';
|
|
147
159
|
export { default as Search_query } from './Search_query';
|
|
148
160
|
export { default as Search } from './Search';
|
|
149
161
|
export { default as Shield } from './Shield';
|
|
162
|
+
export { default as Shift } from './Shift';
|
|
150
163
|
export { default as Slack } from './Slack';
|
|
151
164
|
export { default as Sliders_horizontal } from './Sliders_horizontal';
|
|
152
165
|
export { default as Sliders_vertical } from './Sliders_vertical';
|
|
@@ -160,10 +173,13 @@ export { default as Spectrum_flat } from './Spectrum_flat';
|
|
|
160
173
|
export { default as Spectrum } from './Spectrum';
|
|
161
174
|
export { default as Speedometer } from './Speedometer';
|
|
162
175
|
export { default as Status } from './Status';
|
|
176
|
+
export { default as Stop } from './Stop';
|
|
163
177
|
export { default as String } from './String';
|
|
178
|
+
export { default as Sunrise } from './Sunrise';
|
|
164
179
|
export { default as Support } from './Support';
|
|
165
180
|
export { default as Tag } from './Tag';
|
|
166
181
|
export { default as Terminal } from './Terminal';
|
|
182
|
+
export { default as Text_cursor } from './Text_cursor';
|
|
167
183
|
export { default as Thumbs_up } from './Thumbs_up';
|
|
168
184
|
export { default as Tool_box } from './Tool_box';
|
|
169
185
|
export { default as Typing } from './Typing';
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,9 @@ export { default as Align_center } from './Align_center';
|
|
|
3
3
|
export { default as Align_justify } from './Align_justify';
|
|
4
4
|
export { default as Align_left } from './Align_left';
|
|
5
5
|
export { default as Align_right } from './Align_right';
|
|
6
|
+
export { default as Alt } from './Alt';
|
|
6
7
|
export { default as Analytics } from './Analytics';
|
|
8
|
+
export { default as Api } from './Api';
|
|
7
9
|
export { default as Array } from './Array';
|
|
8
10
|
export { default as Arrow_down_left } from './Arrow_down_left';
|
|
9
11
|
export { default as Arrow_down_right } from './Arrow_down_right';
|
|
@@ -30,12 +32,14 @@ export { default as Chevron_up } from './Chevron_up';
|
|
|
30
32
|
export { default as Circle } from './Circle';
|
|
31
33
|
export { default as Clock } from './Clock';
|
|
32
34
|
export { default as Cloud } from './Cloud';
|
|
35
|
+
export { default as Cmd } from './Cmd';
|
|
33
36
|
export { default as Code } from './Code';
|
|
34
37
|
export { default as Coffee } from './Coffee';
|
|
35
38
|
export { default as Coins } from './Coins';
|
|
36
39
|
export { default as Comment_chat_message } from './Comment_chat_message';
|
|
37
40
|
export { default as Component } from './Component';
|
|
38
41
|
export { default as Compose } from './Compose';
|
|
42
|
+
export { default as Control } from './Control';
|
|
39
43
|
export { default as Copy } from './Copy';
|
|
40
44
|
export { default as Core } from './Core';
|
|
41
45
|
export { default as Coverage_index } from './Coverage_index';
|
|
@@ -44,6 +48,8 @@ export { default as Cpu } from './Cpu';
|
|
|
44
48
|
export { default as Crop } from './Crop';
|
|
45
49
|
export { default as Crystal_ball } from './Crystal_ball';
|
|
46
50
|
export { default as Csharp } from './Csharp';
|
|
51
|
+
export { default as Cursor } from './Cursor';
|
|
52
|
+
export { default as Database } from './Database';
|
|
47
53
|
export { default as Delete } from './Delete';
|
|
48
54
|
export { default as Discord } from './Discord';
|
|
49
55
|
export { default as Discovery } from './Discovery';
|
|
@@ -60,9 +66,11 @@ export { default as Dynamic_json_field } from './Dynamic_json_field';
|
|
|
60
66
|
export { default as ECommerce } from './ECommerce';
|
|
61
67
|
export { default as Empty } from './Empty';
|
|
62
68
|
export { default as Equal } from './Equal';
|
|
69
|
+
export { default as External_link } from './External_link';
|
|
63
70
|
export { default as Eye } from './Eye';
|
|
64
71
|
export { default as Fast_backward } from './Fast_backward';
|
|
65
72
|
export { default as Fast_forward } from './Fast_forward';
|
|
73
|
+
export { default as Feather } from './Feather';
|
|
66
74
|
export { default as Field } from './Field';
|
|
67
75
|
export { default as Fields } from './Fields';
|
|
68
76
|
export { default as Filter } from './Filter';
|
|
@@ -85,6 +93,7 @@ export { default as Greater_or_equal } from './Greater_or_equal';
|
|
|
85
93
|
export { default as Greater } from './Greater';
|
|
86
94
|
export { default as Headphones } from './Headphones';
|
|
87
95
|
export { default as Heart } from './Heart';
|
|
96
|
+
export { default as Hibernate } from './Hibernate';
|
|
88
97
|
export { default as Home } from './Home';
|
|
89
98
|
export { default as Hour_glass } from './Hour_glass';
|
|
90
99
|
export { default as Indent_left } from './Indent_left';
|
|
@@ -137,16 +146,20 @@ export { default as Point_left } from './Point_left';
|
|
|
137
146
|
export { default as Point_right } from './Point_right';
|
|
138
147
|
export { default as Point_up } from './Point_up';
|
|
139
148
|
export { default as Power } from './Power';
|
|
149
|
+
export { default as Presentation } from './Presentation';
|
|
140
150
|
export { default as Prev } from './Prev';
|
|
141
151
|
export { default as Puzzle_piece } from './Puzzle_piece';
|
|
152
|
+
export { default as Rag_search } from './Rag_search';
|
|
142
153
|
export { default as Ram } from './Ram';
|
|
143
154
|
export { default as Recorder } from './Recorder';
|
|
144
155
|
export { default as Refresh } from './Refresh';
|
|
145
156
|
export { default as Rss_feed } from './Rss_feed';
|
|
146
157
|
export { default as Save } from './Save';
|
|
158
|
+
export { default as Search_as_you_type } from './Search_as_you_type';
|
|
147
159
|
export { default as Search_query } from './Search_query';
|
|
148
160
|
export { default as Search } from './Search';
|
|
149
161
|
export { default as Shield } from './Shield';
|
|
162
|
+
export { default as Shift } from './Shift';
|
|
150
163
|
export { default as Slack } from './Slack';
|
|
151
164
|
export { default as Sliders_horizontal } from './Sliders_horizontal';
|
|
152
165
|
export { default as Sliders_vertical } from './Sliders_vertical';
|
|
@@ -160,10 +173,13 @@ export { default as Spectrum_flat } from './Spectrum_flat';
|
|
|
160
173
|
export { default as Spectrum } from './Spectrum';
|
|
161
174
|
export { default as Speedometer } from './Speedometer';
|
|
162
175
|
export { default as Status } from './Status';
|
|
176
|
+
export { default as Stop } from './Stop';
|
|
163
177
|
export { default as String } from './String';
|
|
178
|
+
export { default as Sunrise } from './Sunrise';
|
|
164
179
|
export { default as Support } from './Support';
|
|
165
180
|
export { default as Tag } from './Tag';
|
|
166
181
|
export { default as Terminal } from './Terminal';
|
|
182
|
+
export { default as Text_cursor } from './Text_cursor';
|
|
167
183
|
export { default as Thumbs_up } from './Thumbs_up';
|
|
168
184
|
export { default as Tool_box } from './Tool_box';
|
|
169
185
|
export { default as Typing } from './Typing';
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{RAM.js → Ram.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|