metal-icons 0.2.12 → 0.2.13
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/16/outline/SidebarIcon.d.ts +3 -0
- package/16/outline/SidebarIcon.js +24 -0
- package/16/outline/esm/SidebarIcon.d.ts +3 -0
- package/16/outline/esm/SidebarIcon.js +24 -0
- package/16/outline/esm/index.d.ts +1 -0
- package/16/outline/esm/index.js +1 -0
- package/16/outline/index.d.ts +1 -0
- package/16/outline/index.js +1 -0
- package/16/solid/SidebarIcon.d.ts +3 -0
- package/16/solid/SidebarIcon.js +23 -0
- package/16/solid/esm/SidebarIcon.d.ts +3 -0
- package/16/solid/esm/SidebarIcon.js +23 -0
- package/16/solid/esm/index.d.ts +1 -0
- package/16/solid/esm/index.js +1 -0
- package/16/solid/index.d.ts +1 -0
- package/16/solid/index.js +1 -0
- package/24/outline/SidebarIcon.d.ts +3 -0
- package/24/outline/SidebarIcon.js +24 -0
- package/24/outline/esm/SidebarIcon.d.ts +3 -0
- package/24/outline/esm/SidebarIcon.js +24 -0
- package/24/outline/esm/index.d.ts +1 -0
- package/24/outline/esm/index.js +1 -0
- package/24/outline/index.d.ts +1 -0
- package/24/outline/index.js +1 -0
- package/24/solid/SidebarIcon.d.ts +3 -0
- package/24/solid/SidebarIcon.js +23 -0
- package/24/solid/esm/SidebarIcon.d.ts +3 -0
- package/24/solid/esm/SidebarIcon.js +23 -0
- package/24/solid/esm/index.d.ts +1 -0
- package/24/solid/esm/index.js +1 -0
- package/24/solid/index.d.ts +1 -0
- package/24/solid/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M3.25 2A2.25 2.25 0 0 0 1 4.25v7.5A2.25 2.25 0 0 0 3.25 14h9.5A2.25 2.25 0 0 0 15 11.75v-7.5A2.25 2.25 0 0 0 12.75 2zM2.5 4.25a.75.75 0 0 1 .75-.75h1.8v9h-1.8a.75.75 0 0 1-.75-.75zm3.95 8.25h6.3a.75.75 0 0 0 .75-.75v-7.5a.75.75 0 0 0-.75-.75h-6.3z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
24
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M3.25 2A2.25 2.25 0 0 0 1 4.25v7.5A2.25 2.25 0 0 0 3.25 14h9.5A2.25 2.25 0 0 0 15 11.75v-7.5A2.25 2.25 0 0 0 12.75 2zM2.5 4.25a.75.75 0 0 1 .75-.75h1.8v9h-1.8a.75.75 0 0 1-.75-.75zm3.95 8.25h6.3a.75.75 0 0 0 .75-.75v-7.5a.75.75 0 0 0-.75-.75h-6.3z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
24
|
+
export default ForwardRef;
|
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/16/outline/esm/index.js
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon.js'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon.js'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon.js'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon.js'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon.js'
|
package/16/outline/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/16/outline/index.js
CHANGED
|
@@ -134,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
|
|
|
134
134
|
module.exports.ShieldIcon = require("./ShieldIcon.js")
|
|
135
135
|
module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
|
|
136
136
|
module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
|
|
137
|
+
module.exports.SidebarIcon = require("./SidebarIcon.js")
|
|
137
138
|
module.exports.SlashIcon = require("./SlashIcon.js")
|
|
138
139
|
module.exports.SliderIcon = require("./SliderIcon.js")
|
|
139
140
|
module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
d: "M5 14H3.25A2.25 2.25 0 0 1 1 11.75v-7.5A2.25 2.25 0 0 1 3.25 2H5zm7.75-12A2.25 2.25 0 0 1 15 4.25v7.5A2.25 2.25 0 0 1 12.75 14H6.5V2z"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
d: "M5 14H3.25A2.25 2.25 0 0 1 1 11.75v-7.5A2.25 2.25 0 0 1 3.25 2H5zm7.75-12A2.25 2.25 0 0 1 15 4.25v7.5A2.25 2.25 0 0 1 12.75 14H6.5V2z"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
23
|
+
export default ForwardRef;
|
package/16/solid/esm/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/16/solid/esm/index.js
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon.js'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon.js'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon.js'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon.js'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon.js'
|
package/16/solid/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/16/solid/index.js
CHANGED
|
@@ -134,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
|
|
|
134
134
|
module.exports.ShieldIcon = require("./ShieldIcon.js")
|
|
135
135
|
module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
|
|
136
136
|
module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
|
|
137
|
+
module.exports.SidebarIcon = require("./SidebarIcon.js")
|
|
137
138
|
module.exports.SlashIcon = require("./SlashIcon.js")
|
|
138
139
|
module.exports.SliderIcon = require("./SliderIcon.js")
|
|
139
140
|
module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M4.75 3A2.75 2.75 0 0 0 2 5.75v12.5A2.75 2.75 0 0 0 4.75 21h14.5A2.75 2.75 0 0 0 22 18.25V5.75A2.75 2.75 0 0 0 19.25 3zM3.5 5.75c0-.69.56-1.25 1.25-1.25H8v15H4.75c-.69 0-1.25-.56-1.25-1.25zm6 13.75h9.75c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25H9.5z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
24
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M4.75 3A2.75 2.75 0 0 0 2 5.75v12.5A2.75 2.75 0 0 0 4.75 21h14.5A2.75 2.75 0 0 0 22 18.25V5.75A2.75 2.75 0 0 0 19.25 3zM3.5 5.75c0-.69.56-1.25 1.25-1.25H8v15H4.75c-.69 0-1.25-.56-1.25-1.25zm6 13.75h9.75c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25H9.5z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
24
|
+
export default ForwardRef;
|
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/24/outline/esm/index.js
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon.js'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon.js'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon.js'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon.js'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon.js'
|
package/24/outline/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/24/outline/index.js
CHANGED
|
@@ -134,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
|
|
|
134
134
|
module.exports.ShieldIcon = require("./ShieldIcon.js")
|
|
135
135
|
module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
|
|
136
136
|
module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
|
|
137
|
+
module.exports.SidebarIcon = require("./SidebarIcon.js")
|
|
137
138
|
module.exports.SlashIcon = require("./SlashIcon.js")
|
|
138
139
|
module.exports.SliderIcon = require("./SliderIcon.js")
|
|
139
140
|
module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
d: "M8 21H4.75A2.75 2.75 0 0 1 2 18.25V5.75A2.75 2.75 0 0 1 4.75 3H8zM19.25 3A2.75 2.75 0 0 1 22 5.75v12.5A2.75 2.75 0 0 1 19.25 21H9.5V3z"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function SidebarIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "none",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
d: "M8 21H4.75A2.75 2.75 0 0 1 2 18.25V5.75A2.75 2.75 0 0 1 4.75 3H8zM19.25 3A2.75 2.75 0 0 1 22 5.75v12.5A2.75 2.75 0 0 1 19.25 21H9.5V3z"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(SidebarIcon);
|
|
23
|
+
export default ForwardRef;
|
package/24/solid/esm/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/24/solid/esm/index.js
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon.js'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon.js'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon.js'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon.js'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon.js'
|
package/24/solid/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
|
|
|
134
134
|
export { default as ShieldIcon } from './ShieldIcon'
|
|
135
135
|
export { default as ShoppingBagIcon } from './ShoppingBagIcon'
|
|
136
136
|
export { default as ShoppingCartIcon } from './ShoppingCartIcon'
|
|
137
|
+
export { default as SidebarIcon } from './SidebarIcon'
|
|
137
138
|
export { default as SlashIcon } from './SlashIcon'
|
|
138
139
|
export { default as SliderIcon } from './SliderIcon'
|
|
139
140
|
export { default as SmartphoneIcon } from './SmartphoneIcon'
|
package/24/solid/index.js
CHANGED
|
@@ -134,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
|
|
|
134
134
|
module.exports.ShieldIcon = require("./ShieldIcon.js")
|
|
135
135
|
module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
|
|
136
136
|
module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
|
|
137
|
+
module.exports.SidebarIcon = require("./SidebarIcon.js")
|
|
137
138
|
module.exports.SlashIcon = require("./SlashIcon.js")
|
|
138
139
|
module.exports.SliderIcon = require("./SliderIcon.js")
|
|
139
140
|
module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
|