@indxsearch/pixl 1.0.7 → 1.0.8

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/ArrowLeft.js CHANGED
@@ -3,6 +3,6 @@ const ArrowLeft = ({ 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", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 1H2V2H3H4H5H6V3H5H4H3H2V4H3V5H2V4H1V3H0V2H1V1H2V0H3V1ZM1 2V3H2V2H1Z", fill: color }) }));
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 0H2V1H3V0ZM2 1L1 1V2L2 2V1ZM1 2H0L0 3H1L1 2ZM6 2L2 2V3L6 3V2ZM2 3H1V4H2L2 3ZM3 4H2V5H3V4Z", fill: color }) }));
7
7
  };
8
8
  export default ArrowLeft;
@@ -3,6 +3,6 @@ const Arrow_down_left = ({ 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", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 1H3V0H2V1ZM1 2V1H2V2H3H4H5V1V0H6V1V2H5V3H4H3H2V4H3V5H2V4H1V3H0V2H1ZM1 2V3H2V2H1Z", fill: color }) }));
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 0H2V1H3V0ZM6 0H5L5 2L6 2L6 0ZM2 1L1 1V2L2 2V1ZM1 2H0L0 3H1L1 2ZM5 2H2V3L5 3V2ZM2 3H1V4H2L2 3ZM3 4H2V5H3V4Z", fill: color }) }));
7
7
  };
8
8
  export default Arrow_down_left;
@@ -3,6 +3,6 @@ const Arrow_left_down = ({ 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", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 1H6V0H5H4V1H5ZM3 3V2V1H4V2V3H5V2H6V3H5V4H4V5H3V4H2V3H1V2H2V3H3ZM3 3V4H4V3H3Z", fill: color }) }));
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 0L4 0V1H6V0ZM4 1H3V3L4 3V1ZM2 2H1L1 3H2L2 2ZM6 2H5V3L6 3V2ZM3 3H2V4H3L3 3ZM5 3H4V4H5V3ZM4 4H3V5H4V4Z", fill: color }) }));
7
7
  };
8
8
  export default Arrow_left_down;
@@ -3,6 +3,6 @@ const Arrow_left_up = ({ 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", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 4H6V5H5H4V4H5ZM3 2V3V4H4V3V2H5V3H6V2H5V1H4V0H3V1H2V2H1V3H2V2H3ZM3 2V1H4V2H3Z", fill: color }) }));
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 5L4 5V4H6V5ZM4 4L3 4L3 2L4 2V4ZM2 3H1L1 2H2L2 3ZM6 3H5V2L6 2V3ZM3 2L2 2L2 1H3V2ZM5 2H4L4 1L5 1V2ZM4 1L3 1V0L4 0V1Z", fill: color }) }));
7
7
  };
8
8
  export default Arrow_left_up;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Azure: React.FC<IconProps>;
7
+ export default Azure;
package/dist/Azure.js ADDED
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Azure = ({ 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 1L2 1V2H3L3 1L2 1V0L4 0V1L5 1L5 5L4 5V4H3V3H4V2L3 2V3L2 3L2 5Z", fill: color }) }));
7
+ };
8
+ export default Azure;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Discord: React.FC<IconProps>;
7
+ export default Discord;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Discord = ({ 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 0V1L7 1L7 4H6V5H4V4H3V5H1L1 4H0L0 1L1 1L1 0L6 0ZM2 3H3V2L2 2V3ZM4 3H5V2L4 2V3Z", fill: color }) }));
7
+ };
8
+ export default Discord;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Dropdown: React.FC<IconProps>;
7
+ export default Dropdown;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Dropdown = ({ 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 5H3V4H4V5ZM3 4H2V3H3V4ZM5 3V4H4V3H5ZM3 2H2V1H3V2ZM5 2H4V1H5V2ZM4 1H3V0H4V1Z", fill: color }) }));
7
+ };
8
+ export default Dropdown;
@@ -3,5 +3,5 @@ type IconProps = {
3
3
  color?: string;
4
4
  size?: number | string;
5
5
  };
6
- declare const GPS_my_location: React.FC<IconProps>;
7
- export default GPS_my_location;
6
+ declare const Gps_my_location: React.FC<IconProps>;
7
+ export default Gps_my_location;
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const GPS_my_location = ({ color = "black", size = 21, }) => {
2
+ const Gps_my_location = ({ 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", { d: "M4 1H5V2H6V3H5V4H4V5H3V4H2V3H1V2H2V1H3V0H4V1ZM4 2H3V3H4V2Z", fill: color }) }));
7
7
  };
8
- export default GPS_my_location;
8
+ export default Gps_my_location;
package/dist/GPS_pin.d.ts CHANGED
@@ -3,5 +3,5 @@ type IconProps = {
3
3
  color?: string;
4
4
  size?: number | string;
5
5
  };
6
- declare const GPS_pin: React.FC<IconProps>;
7
- export default GPS_pin;
6
+ declare const Gps_pin: React.FC<IconProps>;
7
+ export default Gps_pin;
package/dist/GPS_pin.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const GPS_pin = ({ color = "black", size = 21, }) => {
2
+ const Gps_pin = ({ 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", { d: "M4 5H3V3H2V0H5V3H4V5ZM3 2H4V1H3V2Z", fill: color }) }));
7
7
  };
8
- export default GPS_pin;
8
+ export default Gps_pin;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Github: React.FC<IconProps>;
7
+ export default Github;
package/dist/Github.js ADDED
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Github = ({ 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 3H3V5H2V4H1V1H2V3ZM6 4H5V5H4V3H5V1H6V4ZM5 1H4V2H3V1H2V0H5V1Z", fill: color }) }));
7
+ };
8
+ export default Github;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Indent_left: React.FC<IconProps>;
7
+ export default Indent_left;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Indent_left = ({ 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 3H2V2L1 2L1 0H0L0 5H1L1 3ZM4 0L3 0V1H4V0ZM3 1H2V2H3V1ZM7 2L3 2V3L7 3V2ZM3 3L2 3L2 4H3L3 3ZM4 4H3V5L4 5V4Z", fill: color }) }));
7
+ };
8
+ export default Indent_left;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Indent_right: React.FC<IconProps>;
7
+ export default Indent_right;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Indent_right = ({ 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 5H3V4H4V5ZM7 5H6V3H5V2H6V0H7V5ZM5 4H4V3H5V4ZM4 3H0V2H4V3ZM5 2H4V1H5V2ZM4 1H3V0H4V1Z", fill: color }) }));
7
+ };
8
+ export default Indent_right;
package/dist/Npm.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Npm: React.FC<IconProps>;
7
+ export default Npm;
package/dist/Npm.js ADDED
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Npm = ({ 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 5H5L5 2L3 2V5H1L1 0L6 0L6 5Z", fill: color }) }));
7
+ };
8
+ export default Npm;
package/dist/RAM.d.ts CHANGED
@@ -3,5 +3,5 @@ type IconProps = {
3
3
  color?: string;
4
4
  size?: number | string;
5
5
  };
6
- declare const RAM: React.FC<IconProps>;
7
- export default RAM;
6
+ declare const Ram: React.FC<IconProps>;
7
+ export default Ram;
package/dist/RAM.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const RAM = ({ color = "black", size = 21, }) => {
2
+ const Ram = ({ 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", { d: "M1 4H4V5H0V3H1V4ZM7 5H5V4H6V3H7V5ZM3 3H2V2H3V3ZM5 3H4V2H5V3ZM7 2H6V1H1V2H0V0H7V2Z", fill: color }) }));
7
7
  };
8
- export default RAM;
8
+ export default Ram;
@@ -3,5 +3,5 @@ type IconProps = {
3
3
  color?: string;
4
4
  size?: number | string;
5
5
  };
6
- declare const RSS_feed: React.FC<IconProps>;
7
- export default RSS_feed;
6
+ declare const Rss_feed: React.FC<IconProps>;
7
+ export default Rss_feed;
package/dist/RSS_feed.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const RSS_feed = ({ color = "black", size = 21, }) => {
2
+ const Rss_feed = ({ 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", { d: "M2 5H1V4H2V5ZM4 5H3V3H4V5ZM6 5H5V2H6V5ZM3 3H1V2H3V3ZM5 2H4V1H5V2ZM4 0V1H1V0H4Z", fill: color }) }));
7
7
  };
8
- export default RSS_feed;
8
+ export default Rss_feed;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Slack: React.FC<IconProps>;
7
+ export default Slack;
package/dist/Slack.js ADDED
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Slack = ({ 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 5H2L2 3L3 3V5ZM6 4H4V3H6L6 4ZM3 2L1 2V1L3 1L3 2ZM5 2H4V0L5 0V2Z", fill: color }) }));
7
+ };
8
+ export default Slack;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type IconProps = {
3
+ color?: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Vehicle_pickup_truck: React.FC<IconProps>;
7
+ export default Vehicle_pickup_truck;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Vehicle_pickup_truck = ({ 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 5H1V4H2V5ZM6 5H5V4H6V5ZM5 1H4V2H5V1H6V2H7V4H6V3H5V4H2V3H1V4H0V2H3V0H5V1Z", fill: color }) }));
7
+ };
8
+ export default Vehicle_pickup_truck;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,4 @@
1
- export { default as GPS_my_location } from './GPS_my_location';
2
- export { default as GPS_pin } from './GPS_pin';
3
- export { default as RAM } from './RAM';
4
- export { default as RSS_feed } from './RSS_feed';
1
+ export { default as Azure } from './Azure';
5
2
  export { default as Align_center } from './Align_center';
6
3
  export { default as Align_justify } from './Align_justify';
7
4
  export { default as Align_left } from './Align_left';
@@ -48,6 +45,7 @@ export { default as Crop } from './Crop';
48
45
  export { default as Crystal_ball } from './Crystal_ball';
49
46
  export { default as Csharp } from './Csharp';
50
47
  export { default as Delete } from './Delete';
48
+ export { default as Discord } from './Discord';
51
49
  export { default as Discovery } from './Discovery';
52
50
  export { default as Diving_mask } from './Diving_mask';
53
51
  export { default as Document_fields } from './Document_fields';
@@ -56,6 +54,7 @@ export { default as Download } from './Download';
56
54
  export { default as Drop_empty } from './Drop_empty';
57
55
  export { default as Drop_full } from './Drop_full';
58
56
  export { default as Drop_half } from './Drop_half';
57
+ export { default as Dropdown } from './Dropdown';
59
58
  export { default as Duplicate } from './Duplicate';
60
59
  export { default as Dynamic_json_field } from './Dynamic_json_field';
61
60
  export { default as ECommerce } from './ECommerce';
@@ -66,7 +65,6 @@ export { default as Fast_backward } from './Fast_backward';
66
65
  export { default as Fast_forward } from './Fast_forward';
67
66
  export { default as Field } from './Field';
68
67
  export { default as Fields } from './Fields';
69
- export { default as Filter_alt } from './Filter_alt';
70
68
  export { default as Filter } from './Filter';
71
69
  export { default as Flag } from './Flag';
72
70
  export { default as Flower } from './Flower';
@@ -77,8 +75,11 @@ export { default as Git_branch } from './Git_branch';
77
75
  export { default as Git_commit } from './Git_commit';
78
76
  export { default as Git_merge } from './Git_merge';
79
77
  export { default as Git_pull_request } from './Git_pull_request';
78
+ export { default as Github } from './Github';
80
79
  export { default as Glass } from './Glass';
81
80
  export { default as Glasses } from './Glasses';
81
+ export { default as Gps_my_location } from './Gps_my_location';
82
+ export { default as Gps_pin } from './Gps_pin';
82
83
  export { default as Graph } from './Graph';
83
84
  export { default as Greater_or_equal } from './Greater_or_equal';
84
85
  export { default as Greater } from './Greater';
@@ -86,6 +87,8 @@ export { default as Headphones } from './Headphones';
86
87
  export { default as Heart } from './Heart';
87
88
  export { default as Home } from './Home';
88
89
  export { default as Hour_glass } from './Hour_glass';
90
+ export { default as Indent_left } from './Indent_left';
91
+ export { default as Indent_right } from './Indent_right';
89
92
  export { default as Indx } from './Indx';
90
93
  export { default as Instance } from './Instance';
91
94
  export { default as Internet_browser } from './Internet_browser';
@@ -116,6 +119,7 @@ export { default as Money } from './Money';
116
119
  export { default as Nested_object } from './Nested_object';
117
120
  export { default as Next } from './Next';
118
121
  export { default as Nodes } from './Nodes';
122
+ export { default as Npm } from './Npm';
119
123
  export { default as Nuget } from './Nuget';
120
124
  export { default as Number } from './Number';
121
125
  export { default as Object } from './Object';
@@ -135,12 +139,15 @@ export { default as Point_up } from './Point_up';
135
139
  export { default as Power } from './Power';
136
140
  export { default as Prev } from './Prev';
137
141
  export { default as Puzzle_piece } from './Puzzle_piece';
142
+ export { default as Ram } from './Ram';
138
143
  export { default as Recorder } from './Recorder';
139
144
  export { default as Refresh } from './Refresh';
145
+ export { default as Rss_feed } from './Rss_feed';
140
146
  export { default as Save } from './Save';
141
147
  export { default as Search_query } from './Search_query';
142
148
  export { default as Search } from './Search';
143
149
  export { default as Shield } from './Shield';
150
+ export { default as Slack } from './Slack';
144
151
  export { default as Sliders_horizontal } from './Sliders_horizontal';
145
152
  export { default as Sliders_vertical } from './Sliders_vertical';
146
153
  export { default as Smaller_or_equal } from './Smaller_or_equal';
@@ -181,6 +188,7 @@ export { default as Vehicle_coupe } from './Vehicle_coupe';
181
188
  export { default as Vehicle_dat_boi } from './Vehicle_dat_boi';
182
189
  export { default as Vehicle_expedition_trailer } from './Vehicle_expedition_trailer';
183
190
  export { default as Vehicle_motorcycle } from './Vehicle_motorcycle';
191
+ export { default as Vehicle_pickup_truck } from './Vehicle_pickup_truck';
184
192
  export { default as Vehicle_postal_van } from './Vehicle_postal_van';
185
193
  export { default as Vehicle_semi_trailer } from './Vehicle_semi_trailer';
186
194
  export { default as Vehicle_sports_car } from './Vehicle_sports_car';
package/dist/index.js CHANGED
@@ -1,7 +1,4 @@
1
- export { default as GPS_my_location } from './GPS_my_location';
2
- export { default as GPS_pin } from './GPS_pin';
3
- export { default as RAM } from './RAM';
4
- export { default as RSS_feed } from './RSS_feed';
1
+ export { default as Azure } from './Azure';
5
2
  export { default as Align_center } from './Align_center';
6
3
  export { default as Align_justify } from './Align_justify';
7
4
  export { default as Align_left } from './Align_left';
@@ -48,6 +45,7 @@ export { default as Crop } from './Crop';
48
45
  export { default as Crystal_ball } from './Crystal_ball';
49
46
  export { default as Csharp } from './Csharp';
50
47
  export { default as Delete } from './Delete';
48
+ export { default as Discord } from './Discord';
51
49
  export { default as Discovery } from './Discovery';
52
50
  export { default as Diving_mask } from './Diving_mask';
53
51
  export { default as Document_fields } from './Document_fields';
@@ -56,6 +54,7 @@ export { default as Download } from './Download';
56
54
  export { default as Drop_empty } from './Drop_empty';
57
55
  export { default as Drop_full } from './Drop_full';
58
56
  export { default as Drop_half } from './Drop_half';
57
+ export { default as Dropdown } from './Dropdown';
59
58
  export { default as Duplicate } from './Duplicate';
60
59
  export { default as Dynamic_json_field } from './Dynamic_json_field';
61
60
  export { default as ECommerce } from './ECommerce';
@@ -66,7 +65,6 @@ export { default as Fast_backward } from './Fast_backward';
66
65
  export { default as Fast_forward } from './Fast_forward';
67
66
  export { default as Field } from './Field';
68
67
  export { default as Fields } from './Fields';
69
- export { default as Filter_alt } from './Filter_alt';
70
68
  export { default as Filter } from './Filter';
71
69
  export { default as Flag } from './Flag';
72
70
  export { default as Flower } from './Flower';
@@ -77,8 +75,11 @@ export { default as Git_branch } from './Git_branch';
77
75
  export { default as Git_commit } from './Git_commit';
78
76
  export { default as Git_merge } from './Git_merge';
79
77
  export { default as Git_pull_request } from './Git_pull_request';
78
+ export { default as Github } from './Github';
80
79
  export { default as Glass } from './Glass';
81
80
  export { default as Glasses } from './Glasses';
81
+ export { default as Gps_my_location } from './Gps_my_location';
82
+ export { default as Gps_pin } from './Gps_pin';
82
83
  export { default as Graph } from './Graph';
83
84
  export { default as Greater_or_equal } from './Greater_or_equal';
84
85
  export { default as Greater } from './Greater';
@@ -86,6 +87,8 @@ export { default as Headphones } from './Headphones';
86
87
  export { default as Heart } from './Heart';
87
88
  export { default as Home } from './Home';
88
89
  export { default as Hour_glass } from './Hour_glass';
90
+ export { default as Indent_left } from './Indent_left';
91
+ export { default as Indent_right } from './Indent_right';
89
92
  export { default as Indx } from './Indx';
90
93
  export { default as Instance } from './Instance';
91
94
  export { default as Internet_browser } from './Internet_browser';
@@ -116,6 +119,7 @@ export { default as Money } from './Money';
116
119
  export { default as Nested_object } from './Nested_object';
117
120
  export { default as Next } from './Next';
118
121
  export { default as Nodes } from './Nodes';
122
+ export { default as Npm } from './Npm';
119
123
  export { default as Nuget } from './Nuget';
120
124
  export { default as Number } from './Number';
121
125
  export { default as Object } from './Object';
@@ -135,12 +139,15 @@ export { default as Point_up } from './Point_up';
135
139
  export { default as Power } from './Power';
136
140
  export { default as Prev } from './Prev';
137
141
  export { default as Puzzle_piece } from './Puzzle_piece';
142
+ export { default as Ram } from './Ram';
138
143
  export { default as Recorder } from './Recorder';
139
144
  export { default as Refresh } from './Refresh';
145
+ export { default as Rss_feed } from './Rss_feed';
140
146
  export { default as Save } from './Save';
141
147
  export { default as Search_query } from './Search_query';
142
148
  export { default as Search } from './Search';
143
149
  export { default as Shield } from './Shield';
150
+ export { default as Slack } from './Slack';
144
151
  export { default as Sliders_horizontal } from './Sliders_horizontal';
145
152
  export { default as Sliders_vertical } from './Sliders_vertical';
146
153
  export { default as Smaller_or_equal } from './Smaller_or_equal';
@@ -181,6 +188,7 @@ export { default as Vehicle_coupe } from './Vehicle_coupe';
181
188
  export { default as Vehicle_dat_boi } from './Vehicle_dat_boi';
182
189
  export { default as Vehicle_expedition_trailer } from './Vehicle_expedition_trailer';
183
190
  export { default as Vehicle_motorcycle } from './Vehicle_motorcycle';
191
+ export { default as Vehicle_pickup_truck } from './Vehicle_pickup_truck';
184
192
  export { default as Vehicle_postal_van } from './Vehicle_postal_van';
185
193
  export { default as Vehicle_semi_trailer } from './Vehicle_semi_trailer';
186
194
  export { default as Vehicle_sports_car } from './Vehicle_sports_car';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indxsearch/pixl",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "7x5 pixel React icons by Indx Search.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",