@indxsearch/pixl 1.0.5 → 1.0.7
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/README.md +4 -10
- package/dist/{Anchor.d.ts → Array.d.ts} +2 -2
- package/dist/{Virtual_reality_headset.js → Array.js} +3 -3
- package/dist/{Message.d.ts → Bool.d.ts} +2 -2
- package/dist/{Anchor.js → Bool.js} +3 -3
- package/dist/Comment_chat_message.js +1 -1
- package/dist/Nuget.js +1 -1
- package/dist/{User__plus.d.ts → Number.d.ts} +2 -2
- package/dist/Number.js +8 -0
- package/dist/{User__check.d.ts → Object.d.ts} +2 -2
- package/dist/Object.js +8 -0
- package/dist/Pc.js +1 -1
- package/dist/Plus.js +1 -1
- package/dist/String.d.ts +7 -0
- package/dist/{Message.js → String.js} +3 -3
- package/dist/User_check.d.ts +7 -0
- package/dist/{User__check.js → User_check.js} +2 -2
- package/dist/User_plus.d.ts +7 -0
- package/dist/{User__plus.js → User_plus.js} +2 -2
- package/dist/index.d.ts +23 -19
- package/dist/index.js +23 -19
- package/package.json +1 -1
- package/dist/Virtual_reality_headset.d.ts +0 -7
package/README.md
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
# `indx-pixl` — React Icon Components from Figma
|
|
2
2
|
|
|
3
|
-
`indx-pixl` is a strict 7x5 pixel grid icon set for React.
|
|
3
|
+
`indx-pixl` is a strict 7x5 pixel grid icon set for React. Work in progress package.
|
|
4
4
|
|
|
5
5
|
## 📦 Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm
|
|
9
|
-
# or
|
|
10
|
-
yarn add indx-pixl
|
|
8
|
+
npm i @indxsearch/pixl
|
|
11
9
|
```
|
|
12
10
|
|
|
13
11
|
## 🛠 Usage
|
|
14
12
|
|
|
15
13
|
```tsx
|
|
16
|
-
import { Typing } from '
|
|
14
|
+
import { Typing } from '@indxsearch/pixl';
|
|
17
15
|
|
|
18
16
|
const Example = () => (
|
|
19
17
|
<Typing size={48} color="blue" />
|
|
@@ -24,10 +22,6 @@ Each icon accepts two optional props:
|
|
|
24
22
|
- `color` — Any CSS color (`string`)
|
|
25
23
|
- `size` — A `number` (width in pixels), ideally use a number scaling with 7x5 ratio (14x10, 21x15, 28x20, etc.). The height is auto calculated.
|
|
26
24
|
|
|
27
|
-
## 📜 License
|
|
28
|
-
|
|
29
|
-
MIT
|
|
30
|
-
|
|
31
25
|
---
|
|
32
26
|
|
|
33
|
-
Made by [Indx
|
|
27
|
+
Made by [Indx](https://indx.co)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const Array = ({ 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: "M3
|
|
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 1L2 1L2 4L3 4V5H1L1 0L3 0V1ZM6 5L4 5V4H5L5 1L4 1V0L6 0L6 5Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
|
-
export default
|
|
8
|
+
export default Array;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const Bool = ({ 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", {
|
|
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 1L7 1L7 4H6V5L1 5L1 4L3 4L3 1L1 1L1 0L6 0V1ZM1 4H0L0 1L1 1L1 4Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
|
-
export default
|
|
8
|
+
export default Bool;
|
|
@@ -3,6 +3,6 @@ const Comment_chat_message = ({ 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", {
|
|
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", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 0H4H3H2H1V1V2V3V4H2V5H3V4H4H5H6V3V2V1V0H5ZM5 1H4H3H2V2V3V4H3V3H4H5V2V1Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
8
|
export default Comment_chat_message;
|
package/dist/Nuget.js
CHANGED
|
@@ -3,6 +3,6 @@ const Nuget = ({ 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: "M5
|
|
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 1V2L6 2L6 4H5L5 3H4V4H5V5L3 5V4L2 4L2 2H3V3H4V2L3 2L3 1L5 1ZM2 1L1 1L1 0L2 0V1Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
8
|
export default Nuget;
|
package/dist/Number.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Number = ({ 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 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Number;
|
package/dist/Object.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Object = ({ 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 4H3V5H1L1 3L2 3V4ZM6 5H4V4H5L5 3L6 3L6 5ZM1 3H0L0 2L1 2L1 3ZM7 3H6V2L7 2V3ZM3 1L2 1L2 2H1L1 0L3 0V1ZM6 2H5V1L4 1V0L6 0V2Z", fill: color }) }));
|
|
7
|
+
};
|
|
8
|
+
export default Object;
|
package/dist/Pc.js
CHANGED
|
@@ -3,6 +3,6 @@ const Pc = ({ 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: "M4 5L1 5L1 4L2 4V3L0 3L0 0L5 0V3H3V4H4V5ZM7 5H5L5 3L7 3L7
|
|
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 5L1 5L1 4L2 4V3L0 3L0 0L5 0V3H3V4H4V5ZM7 5H5L5 3L7 3L7 5Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
8
|
export default Pc;
|
package/dist/Plus.js
CHANGED
|
@@ -3,6 +3,6 @@ const Plus = ({ 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: "M4
|
|
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 5H3V3L1 3L1 2L3 2L3 0L4 0V2L6 2V3H4V5Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
8
|
export default Plus;
|
package/dist/String.d.ts
ADDED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const String = ({ 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", {
|
|
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 3H0L0 2L1 2L1 3ZM3 3L2 3V2L3 2V3ZM5 3L4 3V2L5 2V3ZM7 3H6V2L7 2V3Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
|
-
export default
|
|
8
|
+
export default String;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const User_check = ({ 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
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", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 0L2 0V1L1 1L1 0ZM1 4V3H0L0 2L3 2V3H2V4L1 4ZM1 4L1 5H0L0 4H1ZM2 4H3V5H2V4ZM4 2H3L3 1L4 1V2ZM5 2L4 2V3H5V2ZM6 1V2H5V1L6 1ZM6 1L7 1V0L6 0V1Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
|
-
export default
|
|
8
|
+
export default User_check;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const User_plus = ({ 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
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", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 0L1 0L1 1L2 1V0ZM2 4V3H3V2L0 2L0 3H1V4H0L0 5H1L1 4L2 4ZM2 4V5H3V4H2ZM5 1V0L6 0V1L7 1V2L6 2V3L5 3V2L4 2V1L5 1Z", fill: color }) }));
|
|
7
7
|
};
|
|
8
|
-
export default
|
|
8
|
+
export default User_plus;
|
package/dist/index.d.ts
CHANGED
|
@@ -7,21 +7,22 @@ export { default as Align_justify } from './Align_justify';
|
|
|
7
7
|
export { default as Align_left } from './Align_left';
|
|
8
8
|
export { default as Align_right } from './Align_right';
|
|
9
9
|
export { default as Analytics } from './Analytics';
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as ArrowDown } from './ArrowDown';
|
|
12
|
-
export { default as ArrowLeft } from './ArrowLeft';
|
|
13
|
-
export { default as ArrowRight } from './ArrowRight';
|
|
14
|
-
export { default as ArrowUp } from './ArrowUp';
|
|
10
|
+
export { default as Array } from './Array';
|
|
15
11
|
export { default as Arrow_down_left } from './Arrow_down_left';
|
|
16
12
|
export { default as Arrow_down_right } from './Arrow_down_right';
|
|
17
13
|
export { default as Arrow_left_down } from './Arrow_left_down';
|
|
18
14
|
export { default as Arrow_left_up } from './Arrow_left_up';
|
|
19
15
|
export { default as Arrow_right_down } from './Arrow_right_down';
|
|
20
16
|
export { default as Arrow_right_up } from './Arrow_right_up';
|
|
17
|
+
export { default as ArrowDown } from './ArrowDown';
|
|
18
|
+
export { default as ArrowLeft } from './ArrowLeft';
|
|
19
|
+
export { default as ArrowRight } from './ArrowRight';
|
|
20
|
+
export { default as ArrowUp } from './ArrowUp';
|
|
21
21
|
export { default as Bar_code } from './Bar_code';
|
|
22
22
|
export { default as Battery } from './Battery';
|
|
23
23
|
export { default as Bell } from './Bell';
|
|
24
24
|
export { default as Book } from './Book';
|
|
25
|
+
export { default as Bool } from './Bool';
|
|
25
26
|
export { default as Boost } from './Boost';
|
|
26
27
|
export { default as Card } from './Card';
|
|
27
28
|
export { default as Check } from './Check';
|
|
@@ -35,12 +36,13 @@ export { default as Cloud } from './Cloud';
|
|
|
35
36
|
export { default as Code } from './Code';
|
|
36
37
|
export { default as Coffee } from './Coffee';
|
|
37
38
|
export { default as Coins } from './Coins';
|
|
39
|
+
export { default as Comment_chat_message } from './Comment_chat_message';
|
|
38
40
|
export { default as Component } from './Component';
|
|
39
41
|
export { default as Compose } from './Compose';
|
|
40
42
|
export { default as Copy } from './Copy';
|
|
41
43
|
export { default as Core } from './Core';
|
|
42
|
-
export { default as Coverage } from './Coverage';
|
|
43
44
|
export { default as Coverage_index } from './Coverage_index';
|
|
45
|
+
export { default as Coverage } from './Coverage';
|
|
44
46
|
export { default as Cpu } from './Cpu';
|
|
45
47
|
export { default as Crop } from './Crop';
|
|
46
48
|
export { default as Crystal_ball } from './Crystal_ball';
|
|
@@ -64,8 +66,8 @@ export { default as Fast_backward } from './Fast_backward';
|
|
|
64
66
|
export { default as Fast_forward } from './Fast_forward';
|
|
65
67
|
export { default as Field } from './Field';
|
|
66
68
|
export { default as Fields } from './Fields';
|
|
67
|
-
export { default as Filter } from './Filter';
|
|
68
69
|
export { default as Filter_alt } from './Filter_alt';
|
|
70
|
+
export { default as Filter } from './Filter';
|
|
69
71
|
export { default as Flag } from './Flag';
|
|
70
72
|
export { default as Flower } from './Flower';
|
|
71
73
|
export { default as Folder } from './Folder';
|
|
@@ -78,8 +80,8 @@ export { default as Git_pull_request } from './Git_pull_request';
|
|
|
78
80
|
export { default as Glass } from './Glass';
|
|
79
81
|
export { default as Glasses } from './Glasses';
|
|
80
82
|
export { default as Graph } from './Graph';
|
|
81
|
-
export { default as Greater } from './Greater';
|
|
82
83
|
export { default as Greater_or_equal } from './Greater_or_equal';
|
|
84
|
+
export { default as Greater } from './Greater';
|
|
83
85
|
export { default as Headphones } from './Headphones';
|
|
84
86
|
export { default as Heart } from './Heart';
|
|
85
87
|
export { default as Home } from './Home';
|
|
@@ -87,9 +89,9 @@ export { default as Hour_glass } from './Hour_glass';
|
|
|
87
89
|
export { default as Indx } from './Indx';
|
|
88
90
|
export { default as Instance } from './Instance';
|
|
89
91
|
export { default as Internet_browser } from './Internet_browser';
|
|
90
|
-
export { default as Json } from './Json';
|
|
91
92
|
export { default as Json_query } from './Json_query';
|
|
92
93
|
export { default as Json_result } from './Json_result';
|
|
94
|
+
export { default as Json } from './Json';
|
|
93
95
|
export { default as Key } from './Key';
|
|
94
96
|
export { default as Lab_experiment } from './Lab_experiment';
|
|
95
97
|
export { default as Layout_align_bottom } from './Layout_align_bottom';
|
|
@@ -107,7 +109,6 @@ export { default as Loop } from './Loop';
|
|
|
107
109
|
export { default as Mail } from './Mail';
|
|
108
110
|
export { default as Maximize } from './Maximize';
|
|
109
111
|
export { default as Menu } from './Menu';
|
|
110
|
-
export { default as Message } from './Message';
|
|
111
112
|
export { default as Microphone } from './Microphone';
|
|
112
113
|
export { default as Minimize } from './Minimize';
|
|
113
114
|
export { default as Minus } from './Minus';
|
|
@@ -116,6 +117,8 @@ export { default as Nested_object } from './Nested_object';
|
|
|
116
117
|
export { default as Next } from './Next';
|
|
117
118
|
export { default as Nodes } from './Nodes';
|
|
118
119
|
export { default as Nuget } from './Nuget';
|
|
120
|
+
export { default as Number } from './Number';
|
|
121
|
+
export { default as Object } from './Object';
|
|
119
122
|
export { default as Options_menu } from './Options_menu';
|
|
120
123
|
export { default as Panel_add } from './Panel_add';
|
|
121
124
|
export { default as Panel_delete } from './Panel_delete';
|
|
@@ -135,21 +138,22 @@ export { default as Puzzle_piece } from './Puzzle_piece';
|
|
|
135
138
|
export { default as Recorder } from './Recorder';
|
|
136
139
|
export { default as Refresh } from './Refresh';
|
|
137
140
|
export { default as Save } from './Save';
|
|
138
|
-
export { default as Search } from './Search';
|
|
139
141
|
export { default as Search_query } from './Search_query';
|
|
142
|
+
export { default as Search } from './Search';
|
|
140
143
|
export { default as Shield } from './Shield';
|
|
141
144
|
export { default as Sliders_horizontal } from './Sliders_horizontal';
|
|
142
145
|
export { default as Sliders_vertical } from './Sliders_vertical';
|
|
143
|
-
export { default as Smaller } from './Smaller';
|
|
144
146
|
export { default as Smaller_or_equal } from './Smaller_or_equal';
|
|
147
|
+
export { default as Smaller } from './Smaller';
|
|
145
148
|
export { default as Sort_ascending } from './Sort_ascending';
|
|
146
149
|
export { default as Sort_descending } from './Sort_descending';
|
|
147
150
|
export { default as Spark } from './Spark';
|
|
148
151
|
export { default as Special_characters } from './Special_characters';
|
|
149
|
-
export { default as Spectrum } from './Spectrum';
|
|
150
152
|
export { default as Spectrum_flat } from './Spectrum_flat';
|
|
153
|
+
export { default as Spectrum } from './Spectrum';
|
|
151
154
|
export { default as Speedometer } from './Speedometer';
|
|
152
155
|
export { default as Status } from './Status';
|
|
156
|
+
export { default as String } from './String';
|
|
153
157
|
export { default as Support } from './Support';
|
|
154
158
|
export { default as Tag } from './Tag';
|
|
155
159
|
export { default as Terminal } from './Terminal';
|
|
@@ -158,9 +162,8 @@ export { default as Tool_box } from './Tool_box';
|
|
|
158
162
|
export { default as Typing } from './Typing';
|
|
159
163
|
export { default as Typo_or_bug } from './Typo_or_bug';
|
|
160
164
|
export { default as Update } from './Update';
|
|
161
|
-
export { default as
|
|
162
|
-
export { default as
|
|
163
|
-
export { default as User__plus } from './User__plus';
|
|
165
|
+
export { default as User_check } from './User_check';
|
|
166
|
+
export { default as User_plus } from './User_plus';
|
|
164
167
|
export { default as User_alias } from './User_alias';
|
|
165
168
|
export { default as User_bookmark } from './User_bookmark';
|
|
166
169
|
export { default as User_group } from './User_group';
|
|
@@ -169,6 +172,7 @@ export { default as User_minus } from './User_minus';
|
|
|
169
172
|
export { default as User_privacy } from './User_privacy';
|
|
170
173
|
export { default as User_text } from './User_text';
|
|
171
174
|
export { default as User_x } from './User_x';
|
|
175
|
+
export { default as User } from './User';
|
|
172
176
|
export { default as Users } from './Users';
|
|
173
177
|
export { default as Vehicle_4x4 } from './Vehicle_4x4';
|
|
174
178
|
export { default as Vehicle_caravan_trailer } from './Vehicle_caravan_trailer';
|
|
@@ -181,20 +185,20 @@ export { default as Vehicle_postal_van } from './Vehicle_postal_van';
|
|
|
181
185
|
export { default as Vehicle_semi_trailer } from './Vehicle_semi_trailer';
|
|
182
186
|
export { default as Vehicle_sports_car } from './Vehicle_sports_car';
|
|
183
187
|
export { default as Vehicle_station_wagon } from './Vehicle_station_wagon';
|
|
184
|
-
export { default as Vehicle_trailer } from './Vehicle_trailer';
|
|
185
188
|
export { default as Vehicle_trailer_long } from './Vehicle_trailer_long';
|
|
189
|
+
export { default as Vehicle_trailer } from './Vehicle_trailer';
|
|
186
190
|
export { default as Vehicle_truck } from './Vehicle_truck';
|
|
187
191
|
export { default as Vehicle_van } from './Vehicle_van';
|
|
188
|
-
export { default as
|
|
192
|
+
export { default as Virtual_reality_vr_headset } from './Virtual_reality_vr_headset';
|
|
189
193
|
export { default as Volume_high } from './Volume_high';
|
|
190
194
|
export { default as Volume_low } from './Volume_low';
|
|
191
195
|
export { default as Volume_medium } from './Volume_medium';
|
|
192
196
|
export { default as Volume_mute } from './Volume_mute';
|
|
193
197
|
export { default as Warning } from './Warning';
|
|
194
|
-
export { default as Weight } from './Weight';
|
|
195
198
|
export { default as Weight_high } from './Weight_high';
|
|
196
199
|
export { default as Weight_low } from './Weight_low';
|
|
197
200
|
export { default as Weight_medium } from './Weight_medium';
|
|
201
|
+
export { default as Weight } from './Weight';
|
|
198
202
|
export { default as WiFi } from './WiFi';
|
|
199
203
|
export { default as X_or_error } from './X_or_error';
|
|
200
204
|
export { default as Zap } from './Zap';
|
package/dist/index.js
CHANGED
|
@@ -7,21 +7,22 @@ export { default as Align_justify } from './Align_justify';
|
|
|
7
7
|
export { default as Align_left } from './Align_left';
|
|
8
8
|
export { default as Align_right } from './Align_right';
|
|
9
9
|
export { default as Analytics } from './Analytics';
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as ArrowDown } from './ArrowDown';
|
|
12
|
-
export { default as ArrowLeft } from './ArrowLeft';
|
|
13
|
-
export { default as ArrowRight } from './ArrowRight';
|
|
14
|
-
export { default as ArrowUp } from './ArrowUp';
|
|
10
|
+
export { default as Array } from './Array';
|
|
15
11
|
export { default as Arrow_down_left } from './Arrow_down_left';
|
|
16
12
|
export { default as Arrow_down_right } from './Arrow_down_right';
|
|
17
13
|
export { default as Arrow_left_down } from './Arrow_left_down';
|
|
18
14
|
export { default as Arrow_left_up } from './Arrow_left_up';
|
|
19
15
|
export { default as Arrow_right_down } from './Arrow_right_down';
|
|
20
16
|
export { default as Arrow_right_up } from './Arrow_right_up';
|
|
17
|
+
export { default as ArrowDown } from './ArrowDown';
|
|
18
|
+
export { default as ArrowLeft } from './ArrowLeft';
|
|
19
|
+
export { default as ArrowRight } from './ArrowRight';
|
|
20
|
+
export { default as ArrowUp } from './ArrowUp';
|
|
21
21
|
export { default as Bar_code } from './Bar_code';
|
|
22
22
|
export { default as Battery } from './Battery';
|
|
23
23
|
export { default as Bell } from './Bell';
|
|
24
24
|
export { default as Book } from './Book';
|
|
25
|
+
export { default as Bool } from './Bool';
|
|
25
26
|
export { default as Boost } from './Boost';
|
|
26
27
|
export { default as Card } from './Card';
|
|
27
28
|
export { default as Check } from './Check';
|
|
@@ -35,12 +36,13 @@ export { default as Cloud } from './Cloud';
|
|
|
35
36
|
export { default as Code } from './Code';
|
|
36
37
|
export { default as Coffee } from './Coffee';
|
|
37
38
|
export { default as Coins } from './Coins';
|
|
39
|
+
export { default as Comment_chat_message } from './Comment_chat_message';
|
|
38
40
|
export { default as Component } from './Component';
|
|
39
41
|
export { default as Compose } from './Compose';
|
|
40
42
|
export { default as Copy } from './Copy';
|
|
41
43
|
export { default as Core } from './Core';
|
|
42
|
-
export { default as Coverage } from './Coverage';
|
|
43
44
|
export { default as Coverage_index } from './Coverage_index';
|
|
45
|
+
export { default as Coverage } from './Coverage';
|
|
44
46
|
export { default as Cpu } from './Cpu';
|
|
45
47
|
export { default as Crop } from './Crop';
|
|
46
48
|
export { default as Crystal_ball } from './Crystal_ball';
|
|
@@ -64,8 +66,8 @@ export { default as Fast_backward } from './Fast_backward';
|
|
|
64
66
|
export { default as Fast_forward } from './Fast_forward';
|
|
65
67
|
export { default as Field } from './Field';
|
|
66
68
|
export { default as Fields } from './Fields';
|
|
67
|
-
export { default as Filter } from './Filter';
|
|
68
69
|
export { default as Filter_alt } from './Filter_alt';
|
|
70
|
+
export { default as Filter } from './Filter';
|
|
69
71
|
export { default as Flag } from './Flag';
|
|
70
72
|
export { default as Flower } from './Flower';
|
|
71
73
|
export { default as Folder } from './Folder';
|
|
@@ -78,8 +80,8 @@ export { default as Git_pull_request } from './Git_pull_request';
|
|
|
78
80
|
export { default as Glass } from './Glass';
|
|
79
81
|
export { default as Glasses } from './Glasses';
|
|
80
82
|
export { default as Graph } from './Graph';
|
|
81
|
-
export { default as Greater } from './Greater';
|
|
82
83
|
export { default as Greater_or_equal } from './Greater_or_equal';
|
|
84
|
+
export { default as Greater } from './Greater';
|
|
83
85
|
export { default as Headphones } from './Headphones';
|
|
84
86
|
export { default as Heart } from './Heart';
|
|
85
87
|
export { default as Home } from './Home';
|
|
@@ -87,9 +89,9 @@ export { default as Hour_glass } from './Hour_glass';
|
|
|
87
89
|
export { default as Indx } from './Indx';
|
|
88
90
|
export { default as Instance } from './Instance';
|
|
89
91
|
export { default as Internet_browser } from './Internet_browser';
|
|
90
|
-
export { default as Json } from './Json';
|
|
91
92
|
export { default as Json_query } from './Json_query';
|
|
92
93
|
export { default as Json_result } from './Json_result';
|
|
94
|
+
export { default as Json } from './Json';
|
|
93
95
|
export { default as Key } from './Key';
|
|
94
96
|
export { default as Lab_experiment } from './Lab_experiment';
|
|
95
97
|
export { default as Layout_align_bottom } from './Layout_align_bottom';
|
|
@@ -107,7 +109,6 @@ export { default as Loop } from './Loop';
|
|
|
107
109
|
export { default as Mail } from './Mail';
|
|
108
110
|
export { default as Maximize } from './Maximize';
|
|
109
111
|
export { default as Menu } from './Menu';
|
|
110
|
-
export { default as Message } from './Message';
|
|
111
112
|
export { default as Microphone } from './Microphone';
|
|
112
113
|
export { default as Minimize } from './Minimize';
|
|
113
114
|
export { default as Minus } from './Minus';
|
|
@@ -116,6 +117,8 @@ export { default as Nested_object } from './Nested_object';
|
|
|
116
117
|
export { default as Next } from './Next';
|
|
117
118
|
export { default as Nodes } from './Nodes';
|
|
118
119
|
export { default as Nuget } from './Nuget';
|
|
120
|
+
export { default as Number } from './Number';
|
|
121
|
+
export { default as Object } from './Object';
|
|
119
122
|
export { default as Options_menu } from './Options_menu';
|
|
120
123
|
export { default as Panel_add } from './Panel_add';
|
|
121
124
|
export { default as Panel_delete } from './Panel_delete';
|
|
@@ -135,21 +138,22 @@ export { default as Puzzle_piece } from './Puzzle_piece';
|
|
|
135
138
|
export { default as Recorder } from './Recorder';
|
|
136
139
|
export { default as Refresh } from './Refresh';
|
|
137
140
|
export { default as Save } from './Save';
|
|
138
|
-
export { default as Search } from './Search';
|
|
139
141
|
export { default as Search_query } from './Search_query';
|
|
142
|
+
export { default as Search } from './Search';
|
|
140
143
|
export { default as Shield } from './Shield';
|
|
141
144
|
export { default as Sliders_horizontal } from './Sliders_horizontal';
|
|
142
145
|
export { default as Sliders_vertical } from './Sliders_vertical';
|
|
143
|
-
export { default as Smaller } from './Smaller';
|
|
144
146
|
export { default as Smaller_or_equal } from './Smaller_or_equal';
|
|
147
|
+
export { default as Smaller } from './Smaller';
|
|
145
148
|
export { default as Sort_ascending } from './Sort_ascending';
|
|
146
149
|
export { default as Sort_descending } from './Sort_descending';
|
|
147
150
|
export { default as Spark } from './Spark';
|
|
148
151
|
export { default as Special_characters } from './Special_characters';
|
|
149
|
-
export { default as Spectrum } from './Spectrum';
|
|
150
152
|
export { default as Spectrum_flat } from './Spectrum_flat';
|
|
153
|
+
export { default as Spectrum } from './Spectrum';
|
|
151
154
|
export { default as Speedometer } from './Speedometer';
|
|
152
155
|
export { default as Status } from './Status';
|
|
156
|
+
export { default as String } from './String';
|
|
153
157
|
export { default as Support } from './Support';
|
|
154
158
|
export { default as Tag } from './Tag';
|
|
155
159
|
export { default as Terminal } from './Terminal';
|
|
@@ -158,9 +162,8 @@ export { default as Tool_box } from './Tool_box';
|
|
|
158
162
|
export { default as Typing } from './Typing';
|
|
159
163
|
export { default as Typo_or_bug } from './Typo_or_bug';
|
|
160
164
|
export { default as Update } from './Update';
|
|
161
|
-
export { default as
|
|
162
|
-
export { default as
|
|
163
|
-
export { default as User__plus } from './User__plus';
|
|
165
|
+
export { default as User_check } from './User_check';
|
|
166
|
+
export { default as User_plus } from './User_plus';
|
|
164
167
|
export { default as User_alias } from './User_alias';
|
|
165
168
|
export { default as User_bookmark } from './User_bookmark';
|
|
166
169
|
export { default as User_group } from './User_group';
|
|
@@ -169,6 +172,7 @@ export { default as User_minus } from './User_minus';
|
|
|
169
172
|
export { default as User_privacy } from './User_privacy';
|
|
170
173
|
export { default as User_text } from './User_text';
|
|
171
174
|
export { default as User_x } from './User_x';
|
|
175
|
+
export { default as User } from './User';
|
|
172
176
|
export { default as Users } from './Users';
|
|
173
177
|
export { default as Vehicle_4x4 } from './Vehicle_4x4';
|
|
174
178
|
export { default as Vehicle_caravan_trailer } from './Vehicle_caravan_trailer';
|
|
@@ -181,20 +185,20 @@ export { default as Vehicle_postal_van } from './Vehicle_postal_van';
|
|
|
181
185
|
export { default as Vehicle_semi_trailer } from './Vehicle_semi_trailer';
|
|
182
186
|
export { default as Vehicle_sports_car } from './Vehicle_sports_car';
|
|
183
187
|
export { default as Vehicle_station_wagon } from './Vehicle_station_wagon';
|
|
184
|
-
export { default as Vehicle_trailer } from './Vehicle_trailer';
|
|
185
188
|
export { default as Vehicle_trailer_long } from './Vehicle_trailer_long';
|
|
189
|
+
export { default as Vehicle_trailer } from './Vehicle_trailer';
|
|
186
190
|
export { default as Vehicle_truck } from './Vehicle_truck';
|
|
187
191
|
export { default as Vehicle_van } from './Vehicle_van';
|
|
188
|
-
export { default as
|
|
192
|
+
export { default as Virtual_reality_vr_headset } from './Virtual_reality_vr_headset';
|
|
189
193
|
export { default as Volume_high } from './Volume_high';
|
|
190
194
|
export { default as Volume_low } from './Volume_low';
|
|
191
195
|
export { default as Volume_medium } from './Volume_medium';
|
|
192
196
|
export { default as Volume_mute } from './Volume_mute';
|
|
193
197
|
export { default as Warning } from './Warning';
|
|
194
|
-
export { default as Weight } from './Weight';
|
|
195
198
|
export { default as Weight_high } from './Weight_high';
|
|
196
199
|
export { default as Weight_low } from './Weight_low';
|
|
197
200
|
export { default as Weight_medium } from './Weight_medium';
|
|
201
|
+
export { default as Weight } from './Weight';
|
|
198
202
|
export { default as WiFi } from './WiFi';
|
|
199
203
|
export { default as X_or_error } from './X_or_error';
|
|
200
204
|
export { default as Zap } from './Zap';
|
package/package.json
CHANGED