metal-icons 0.1.21 → 0.1.22
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 -0
- package/dist/16/outline/Slash.js +14 -0
- package/dist/16/outline/Slider.js +13 -0
- package/dist/16/outline/Smartphone.js +16 -0
- package/dist/16/outline/Star.js +14 -0
- package/dist/16/outline/SwapHorizontal.js +14 -0
- package/dist/16/outline/SwapVertical.js +14 -0
- package/dist/16/outline/Tablet.js +16 -0
- package/dist/16/outline/Tag.js +16 -0
- package/dist/16/outline/Text.js +13 -0
- package/dist/16/outline/TextAlignCenter.js +13 -0
- package/dist/16/outline/index.esm.js +10 -0
- package/dist/16/solid/Slash.js +14 -0
- package/dist/16/solid/Slider.js +13 -0
- package/dist/16/solid/Smartphone.js +14 -0
- package/dist/16/solid/Star.js +13 -0
- package/dist/16/solid/SwapHorizontal.js +14 -0
- package/dist/16/solid/SwapVertical.js +14 -0
- package/dist/16/solid/Tablet.js +14 -0
- package/dist/16/solid/Tag.js +14 -0
- package/dist/16/solid/Text.js +13 -0
- package/dist/16/solid/TextAlignCenter.js +13 -0
- package/dist/16/solid/index.esm.js +10 -0
- package/dist/24/outline/Slash.js +14 -0
- package/dist/24/outline/Slider.js +13 -0
- package/dist/24/outline/Smartphone.js +16 -0
- package/dist/24/outline/Star.js +14 -0
- package/dist/24/outline/SwapHorizontal.js +14 -0
- package/dist/24/outline/SwapVertical.js +15 -0
- package/dist/24/outline/Tablet.js +16 -0
- package/dist/24/outline/Tag.js +16 -0
- package/dist/24/outline/Text.js +13 -0
- package/dist/24/outline/TextAlignCenter.js +13 -0
- package/dist/24/outline/index.esm.js +10 -0
- package/dist/24/solid/Slash.js +14 -0
- package/dist/24/solid/Slider.js +13 -0
- package/dist/24/solid/Smartphone.js +14 -0
- package/dist/24/solid/Star.js +13 -0
- package/dist/24/solid/SwapHorizontal.js +14 -0
- package/dist/24/solid/SwapVertical.js +15 -0
- package/dist/24/solid/Tablet.js +14 -0
- package/dist/24/solid/Tag.js +14 -0
- package/dist/24/solid/Text.js +13 -0
- package/dist/24/solid/TextAlignCenter.js +13 -0
- package/dist/24/solid/index.esm.js +10 -0
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlash = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M11.126 2.601a.75.75 0 0 0-1.025.273l-5.5 9.5a.75.75 0 1 0 1.298.752l5.5-9.5a.75.75 0 0 0-.273-1.025"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSlash as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlider = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M2.75 1a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 2.75 1M2 10.5v3.75a.75.75 0 1 0 1.5 0V10.5h1a.75.75 0 1 0 0-1.5H1a.75.75 0 0 0 0 1.5zm6.5-2.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 1 0 1.5 0zM7.75 1a.75.75 0 0 1 .75.75V4.5h1a.75.75 0 1 1 0 1.5H6a.75.75 0 0 1 0-1.5h1V1.75A.75.75 0 0 1 7.75 1m6.75 9a.75.75 0 1 1 0 1.5h-1v2.75a.75.75 0 1 1-1.5 0V11.5h-1a.75.75 0 1 1 0-1.5zm-1.75-9a.75.75 0 0 1 .75.75v6.5a.75.75 0 1 1-1.5 0v-6.5a.75.75 0 0 1 .75-.75"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgSlider as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSmartphone = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M7.293 11.293A1 1 0 0 1 8 11h.007a1 1 0 0 1 0 2H8a1 1 0 0 1-.707-1.707"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M2.659.659A2.25 2.25 0 0 1 4.25 0h7.5A2.25 2.25 0 0 1 14 2.25v11.5A2.25 2.25 0 0 1 11.75 16h-7.5A2.25 2.25 0 0 1 2 13.75V2.25c0-.597.237-1.169.659-1.591m1.06 1.06a.75.75 0 0 0-.219.531v11.5a.75.75 0 0 0 .75.75h7.5a.75.75 0 0 0 .75-.75V2.25a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.53.22Z"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgSmartphone as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStar = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M8 .5a.75.75 0 0 1 .67.412l2.064 4.094 4.622.662a.75.75 0 0 1 .412 1.285l-3.335 3.18.786 4.488a.75.75 0 0 1-1.082.796L8 13.287l-4.137 2.13a.75.75 0 0 1-1.082-.796l.786-4.489-3.335-3.18a.75.75 0 0 1 .412-1.284l4.622-.662L7.33.912A.75.75 0 0 1 8 .5m0 2.416L6.43 6.03a.75.75 0 0 1-.564.405l-3.48.498 2.507 2.39a.75.75 0 0 1 .22.672l-.594 3.396 3.138-1.616a.75.75 0 0 1 .686 0l3.138 1.616-.595-3.396a.75.75 0 0 1 .221-.672l2.507-2.39-3.48-.498a.75.75 0 0 1-.563-.405z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgStar as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapHorizontal = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M4.55 1.26A.75.75 0 1 0 3.45.24L.2 3.74a.75.75 0 0 0 0 1.02l3.25 3.5a.75.75 0 0 0 1.1-1.02L2.47 5h12.78a.75.75 0 0 0 0-1.5H2.47zm6.9 7.5a.75.75 0 0 1 1.1-1.02l3.25 3.5a.75.75 0 0 1 0 1.02l-3.25 3.5a.75.75 0 1 1-1.1-1.02l2.08-2.24H.75a.75.75 0 0 1 0-1.5h12.78z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSwapHorizontal as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapVertical = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M14.74 4.55a.75.75 0 1 0 1.02-1.1L12.26.2a.75.75 0 0 0-1.02 0l-3.5 3.25a.75.75 0 1 0 1.02 1.1L11 2.47v12.78a.75.75 0 0 0 1.5 0V2.47zm-7.5 6.9a.75.75 0 0 1 1.02 1.1l-3.5 3.25a.75.75 0 0 1-1.02 0l-3.5-3.25a.75.75 0 1 1 1.02-1.1l2.24 2.08V.75a.75.75 0 0 1 1.5 0v12.78z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSwapVertical as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTablet = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M7.291 11.293A1 1 0 0 1 7.995 11h.01c.264 0 .517.105.704.293A1.002 1.002 0 0 1 8.005 13h-.01a1 1 0 0 1-.704-.293 1 1 0 0 1 0-1.414"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M.659 1.659A2.25 2.25 0 0 1 2.25 1h11.5A2.25 2.25 0 0 1 16 3.25v9.5A2.25 2.25 0 0 1 13.75 15H2.25A2.25 2.25 0 0 1 0 12.75v-9.5c0-.597.237-1.169.659-1.591m1.06 1.06a.75.75 0 0 0-.219.531v9.5a.75.75 0 0 0 .75.75h11.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75H2.25a.75.75 0 0 0-.53.22Z"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgTablet as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTag = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M5 4a1 1 0 0 0 0 2h.006a1 1 0 0 0 0-2z"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M2.25 1C1.56 1 1 1.56 1 2.25v5.246c0 .596.237 1.169.659 1.59l5.383 5.384a2.25 2.25 0 0 0 3.182 0l4.246-4.246a2.25 2.25 0 0 0 0-3.182L9.087 1.66A2.25 2.25 0 0 0 7.496 1zm.25 6.496V2.5h4.996c.199 0 .39.08.53.22l5.383 5.383a.75.75 0 0 1 0 1.06L9.163 13.41a.75.75 0 0 1-1.06 0L2.72 8.026a.75.75 0 0 1-.22-.53"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgTag as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgText = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M2 2.75A.75.75 0 0 1 2.75 2h10a.75.75 0 0 1 .75.75v1.5a.75.75 0 1 1-1.5 0V3.5H8.5v9H10a.75.75 0 1 1 0 1.5H5.5a.75.75 0 1 1 0-1.5H7v-9H3.5v.75a.75.75 0 0 1-1.5 0z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgText as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextAlignCenter = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M1.75 3a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zm2 3a.75.75 0 0 0 0 1.5h8.5a.75.75 0 1 0 0-1.5zM1 9.75A.75.75 0 0 1 1.75 9h12.5a.75.75 0 1 1 0 1.5H1.75A.75.75 0 0 1 1 9.75M3.75 12a.75.75 0 1 0 0 1.5h8.5a.75.75 0 1 0 0-1.5z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgTextAlignCenter as default };
|
|
@@ -128,3 +128,13 @@ export { default as ShieldX } from './ShieldX.js';
|
|
|
128
128
|
export { default as Shield } from './Shield.js';
|
|
129
129
|
export { default as ShoppingBag } from './ShoppingBag.js';
|
|
130
130
|
export { default as ShoppingCart } from './ShoppingCart.js';
|
|
131
|
+
export { default as Slash } from './Slash.js';
|
|
132
|
+
export { default as Slider } from './Slider.js';
|
|
133
|
+
export { default as Smartphone } from './Smartphone.js';
|
|
134
|
+
export { default as Star } from './Star.js';
|
|
135
|
+
export { default as SwapHorizontal } from './SwapHorizontal.js';
|
|
136
|
+
export { default as SwapVertical } from './SwapVertical.js';
|
|
137
|
+
export { default as Tablet } from './Tablet.js';
|
|
138
|
+
export { default as Tag } from './Tag.js';
|
|
139
|
+
export { default as TextAlignCenter } from './TextAlignCenter.js';
|
|
140
|
+
export { default as Text } from './Text.js';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlash = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M11.126 2.601a.75.75 0 0 0-1.025.273l-5.5 9.5a.75.75 0 1 0 1.298.752l5.5-9.5a.75.75 0 0 0-.273-1.025"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSlash as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlider = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M2.75 1a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 2.75 1M2 10.5v3.75a.75.75 0 1 0 1.5 0V10.5h1a.75.75 0 1 0 0-1.5H1a.75.75 0 0 0 0 1.5zm6.5-2.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 1 0 1.5 0zM7.75 1a.75.75 0 0 1 .75.75V4.5h1a.75.75 0 1 1 0 1.5H6a.75.75 0 0 1 0-1.5h1V1.75A.75.75 0 0 1 7.75 1m6.75 9a.75.75 0 1 1 0 1.5h-1v2.75a.75.75 0 1 1-1.5 0V11.5h-1a.75.75 0 1 1 0-1.5zm-1.75-9a.75.75 0 0 1 .75.75v6.5a.75.75 0 1 1-1.5 0v-6.5a.75.75 0 0 1 .75-.75"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgSlider as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSmartphone = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M4.25 0A2.25 2.25 0 0 0 2 2.25v11.5A2.25 2.25 0 0 0 4.25 16h7.5A2.25 2.25 0 0 0 14 13.75V2.25A2.25 2.25 0 0 0 11.75 0zM8 11a1 1 0 0 0 0 2h.007a1 1 0 0 0 0-2z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSmartphone as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStar = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M8.67.912a.75.75 0 0 0-1.34 0L5.266 5.006l-4.622.662a.75.75 0 0 0-.412 1.285l3.335 3.18-.786 4.488a.75.75 0 0 0 1.082.796L8 13.287l4.137 2.13a.75.75 0 0 0 1.082-.796l-.786-4.489 3.335-3.18a.75.75 0 0 0-.412-1.284l-4.622-.662z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgStar as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapHorizontal = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M4.55 1.26A.75.75 0 1 0 3.45.24L.2 3.74a.75.75 0 0 0 0 1.02l3.25 3.5a.75.75 0 0 0 1.1-1.02L2.47 5h12.78a.75.75 0 0 0 0-1.5H2.47zm6.9 7.5a.75.75 0 0 1 1.1-1.02l3.25 3.5a.75.75 0 0 1 0 1.02l-3.25 3.5a.75.75 0 1 1-1.1-1.02l2.08-2.24H.75a.75.75 0 0 1 0-1.5h12.78z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSwapHorizontal as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapVertical = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M14.74 4.55a.75.75 0 1 0 1.02-1.1L12.26.2a.75.75 0 0 0-1.02 0l-3.5 3.25a.75.75 0 1 0 1.02 1.1L11 2.47v12.78a.75.75 0 0 0 1.5 0V2.47zm-7.5 6.9a.75.75 0 0 1 1.02 1.1l-3.5 3.25a.75.75 0 0 1-1.02 0l-3.5-3.25a.75.75 0 1 1 1.02-1.1l2.24 2.08V.75a.75.75 0 0 1 1.5 0v12.78z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSwapVertical as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTablet = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M2.25 1A2.25 2.25 0 0 0 0 3.25v9.5A2.25 2.25 0 0 0 2.25 15h11.5A2.25 2.25 0 0 0 16 12.75v-9.5A2.25 2.25 0 0 0 13.75 1zm5.745 10a1 1 0 0 0-.704.293A1.002 1.002 0 0 0 7.995 13h.01a1 1 0 0 0 .704-.293A1.002 1.002 0 0 0 8.005 11z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgTablet as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTag = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M1 2.25C1 1.56 1.56 1 2.25 1h5.246a2.25 2.25 0 0 1 1.591.66l5.383 5.382a2.25 2.25 0 0 1 0 3.182l-4.246 4.246a2.25 2.25 0 0 1-3.182 0L1.659 9.086A2.25 2.25 0 0 1 1 7.496zm3.293 2.043A1 1 0 0 1 5 4h.006a1 1 0 0 1 0 2H5a1 1 0 0 1-.707-1.707"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgTag as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgText = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M2 2.75A.75.75 0 0 1 2.75 2h10a.75.75 0 0 1 .75.75v1.5a.75.75 0 1 1-1.5 0V3.5H8.5v9H10a.75.75 0 1 1 0 1.5H5.5a.75.75 0 1 1 0-1.5H7v-9H3.5v.75a.75.75 0 0 1-1.5 0z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgText as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextAlignCenter = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 16,
|
|
7
|
+
height: 16,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M1.75 3a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zm2 3a.75.75 0 0 0 0 1.5h8.5a.75.75 0 1 0 0-1.5zM1 9.75A.75.75 0 0 1 1.75 9h12.5a.75.75 0 1 1 0 1.5H1.75A.75.75 0 0 1 1 9.75M3.75 12a.75.75 0 1 0 0 1.5h8.5a.75.75 0 1 0 0-1.5z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgTextAlignCenter as default };
|
|
@@ -128,3 +128,13 @@ export { default as ShieldX } from './ShieldX.js';
|
|
|
128
128
|
export { default as Shield } from './Shield.js';
|
|
129
129
|
export { default as ShoppingBag } from './ShoppingBag.js';
|
|
130
130
|
export { default as ShoppingCart } from './ShoppingCart.js';
|
|
131
|
+
export { default as Slash } from './Slash.js';
|
|
132
|
+
export { default as Slider } from './Slider.js';
|
|
133
|
+
export { default as Smartphone } from './Smartphone.js';
|
|
134
|
+
export { default as Star } from './Star.js';
|
|
135
|
+
export { default as SwapHorizontal } from './SwapHorizontal.js';
|
|
136
|
+
export { default as SwapVertical } from './SwapVertical.js';
|
|
137
|
+
export { default as Tablet } from './Tablet.js';
|
|
138
|
+
export { default as Tag } from './Tag.js';
|
|
139
|
+
export { default as TextAlignCenter } from './TextAlignCenter.js';
|
|
140
|
+
export { default as Text } from './Text.js';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlash = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M16.63 4.103a.75.75 0 0 0-1.027.268l-8.5 14.5a.75.75 0 1 0 1.294.758l8.5-14.5a.75.75 0 0 0-.267-1.026"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSlash as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlider = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M3.75 2.5a.75.75 0 0 1 .75.75v7a.75.75 0 1 1-1.5 0v-7a.75.75 0 0 1 .75-.75M3 14.5v6.25a.75.75 0 1 0 1.5 0V14.5h2a.75.75 0 1 0 0-1.5H1a.75.75 0 1 0 0 1.5zm9.5-2.75a.75.75 0 1 0-1.5 0v9a.75.75 0 1 0 1.5 0zm-.75-9.25a.75.75 0 0 1 .75.75V7.5h2a.75.75 0 1 1 0 1.5H9a.75.75 0 0 1 0-1.5h2V3.25a.75.75 0 0 1 .75-.75M22.5 15a.75.75 0 1 1 0 1.5h-2v4.25a.75.75 0 1 1-1.5 0V16.5h-2a.75.75 0 1 1 0-1.5zM19.75 2.5a.75.75 0 0 1 .75.75v9a.75.75 0 1 1-1.5 0v-9a.75.75 0 0 1 .75-.75"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgSlider as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSmartphone = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M11.293 18.293A1 1 0 0 1 12 18h.01a1 1 0 0 1 0 2H12a1 1 0 0 1-.707-1.707"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M4.805 1.805A2.75 2.75 0 0 1 6.75 1h10.5A2.75 2.75 0 0 1 20 3.75v16.5A2.75 2.75 0 0 1 17.25 23H6.75A2.75 2.75 0 0 1 4 20.25V3.75c0-.73.29-1.429.805-1.945M6.75 2.5c-.69 0-1.25.56-1.25 1.25v16.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25V3.75c0-.69-.56-1.25-1.25-1.25z"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgSmartphone as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStar = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M12 1a.75.75 0 0 1 .673.418l2.992 6.065 6.694.978a.75.75 0 0 1 .414 1.28l-4.842 4.717 1.143 6.665a.75.75 0 0 1-1.089.79L12 18.766l-5.985 3.149a.75.75 0 0 1-1.089-.79l1.143-6.666-4.842-4.717a.75.75 0 0 1 .414-1.28l6.694-.978 2.992-6.065A.75.75 0 0 1 12 1m0 2.445L9.505 8.5a.75.75 0 0 1-.564.41l-5.58.816 4.037 3.933a.75.75 0 0 1 .216.664l-.952 5.556 4.989-2.625a.75.75 0 0 1 .698 0l4.99 2.625-.953-5.556a.75.75 0 0 1 .216-.664l4.037-3.933-5.58-.816a.75.75 0 0 1-.564-.41z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgStar as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapHorizontal = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M6.72 3.309a.75.75 0 0 0-1-1.118l-4.47 4a.75.75 0 0 0 0 1.118l4.47 4a.75.75 0 0 0 1-1.118L3.713 7.5H22.25a.75.75 0 0 0 0-1.5H3.713zm10.56 10.5a.75.75 0 1 1 1-1.118l4.47 4a.75.75 0 0 1 0 1.118l-4.47 4a.75.75 0 1 1-1-1.118L20.287 18H1.75a.75.75 0 0 1 0-1.5h18.537z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSwapHorizontal as default };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapVertical = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M20.691 6.72a.75.75 0 1 0 1.118-1l-4-4.47a.75.75 0 0 0-1.118 0l-4 4.47a.75.75 0 0 0 1.118 1L16.5 3.713V22.25a.75.75 0 0 0 1.5 0V3.713zm-10.5 10.56a.75.75 0 1 1 1.118 1l-4 4.47a.75.75 0 0 1-1.118 0l-4-4.47a.75.75 0 1 1 1.118-1L6 20.287V1.75a.75.75 0 0 1 1.5 0v18.537z",
|
|
12
|
+
opacity: 0.9
|
|
13
|
+
}));
|
|
14
|
+
|
|
15
|
+
export { SvgSwapVertical as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTablet = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M12 17a1 1 0 0 0 0 2h.01a1 1 0 0 0 0-2z"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M3.75 3A2.75 2.75 0 0 0 1 5.75v12.5A2.75 2.75 0 0 0 3.75 21h16.5A2.75 2.75 0 0 0 23 18.25V5.75A2.75 2.75 0 0 0 20.25 3zM2.5 5.75c0-.69.56-1.25 1.25-1.25h16.5c.69 0 1.25.56 1.25 1.25v12.5c0 .69-.56 1.25-1.25 1.25H3.75c-.69 0-1.25-.56-1.25-1.25z"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgTablet as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTag = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M5.995 5a1 1 0 0 0-.704.293A1.003 1.003 0 0 0 5.995 7h.01a1 1 0 0 0 .704-.293A1.003 1.003 0 0 0 6.005 5z"
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M4.75 2A2.75 2.75 0 0 0 2 4.75v6.422c0 .729.29 1.428.805 1.944l8 8a2.75 2.75 0 0 0 3.89 0l6.421-6.421a2.75 2.75 0 0 0 0-3.89l-8-8A2.75 2.75 0 0 0 11.172 2zM3.5 4.75c0-.69.56-1.25 1.25-1.25h6.422c.331 0 .649.132.883.366l8 8a1.25 1.25 0 0 1 0 1.768l-6.421 6.421a1.25 1.25 0 0 1-1.768 0l-8-8a1.25 1.25 0 0 1-.366-.883z"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgTag as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgText = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M3 3.75A.75.75 0 0 1 3.75 3h16a.75.75 0 0 1 .75.75v2.5a.75.75 0 1 1-1.5 0V4.5h-6.5v15h2a.75.75 0 1 1 0 1.5H9a.75.75 0 1 1 0-1.5h2v-15H4.5v1.75a.75.75 0 0 1-1.5 0z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgText as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextAlignCenter = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M2.75 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zm3 4a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zM2 13.75a.75.75 0 0 1 .75-.75h18.5a.75.75 0 1 1 0 1.5H2.75a.75.75 0 0 1-.75-.75M5.75 17a.75.75 0 1 0 0 1.5h12.5a.75.75 0 1 0 0-1.5z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgTextAlignCenter as default };
|
|
@@ -128,3 +128,13 @@ export { default as ShieldX } from './ShieldX.js';
|
|
|
128
128
|
export { default as Shield } from './Shield.js';
|
|
129
129
|
export { default as ShoppingBag } from './ShoppingBag.js';
|
|
130
130
|
export { default as ShoppingCart } from './ShoppingCart.js';
|
|
131
|
+
export { default as Slash } from './Slash.js';
|
|
132
|
+
export { default as Slider } from './Slider.js';
|
|
133
|
+
export { default as Smartphone } from './Smartphone.js';
|
|
134
|
+
export { default as Star } from './Star.js';
|
|
135
|
+
export { default as SwapHorizontal } from './SwapHorizontal.js';
|
|
136
|
+
export { default as SwapVertical } from './SwapVertical.js';
|
|
137
|
+
export { default as Tablet } from './Tablet.js';
|
|
138
|
+
export { default as Tag } from './Tag.js';
|
|
139
|
+
export { default as TextAlignCenter } from './TextAlignCenter.js';
|
|
140
|
+
export { default as Text } from './Text.js';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlash = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M16.63 4.103a.75.75 0 0 0-1.027.268l-8.5 14.5a.75.75 0 1 0 1.294.758l8.5-14.5a.75.75 0 0 0-.267-1.026"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSlash as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSlider = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M3.75 2.5a.75.75 0 0 1 .75.75v7a.75.75 0 1 1-1.5 0v-7a.75.75 0 0 1 .75-.75M3 14.5v6.25a.75.75 0 1 0 1.5 0V14.5h2a.75.75 0 1 0 0-1.5H1a.75.75 0 1 0 0 1.5zm9.5-2.75a.75.75 0 1 0-1.5 0v9a.75.75 0 1 0 1.5 0zm-.75-9.25a.75.75 0 0 1 .75.75V7.5h2a.75.75 0 1 1 0 1.5H9a.75.75 0 0 1 0-1.5h2V3.25a.75.75 0 0 1 .75-.75M22.5 15a.75.75 0 1 1 0 1.5h-2v4.25a.75.75 0 1 1-1.5 0V16.5h-2a.75.75 0 1 1 0-1.5zM19.75 2.5a.75.75 0 0 1 .75.75v9a.75.75 0 1 1-1.5 0v-9a.75.75 0 0 1 .75-.75"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgSlider as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSmartphone = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M6.75 1A2.75 2.75 0 0 0 4 3.75v16.5A2.75 2.75 0 0 0 6.75 23h10.5A2.75 2.75 0 0 0 20 20.25V3.75A2.75 2.75 0 0 0 17.25 1zM12 18a1 1 0 0 0 0 2h.01a1 1 0 0 0 0-2z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSmartphone as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStar = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M12.673 1.418a.75.75 0 0 0-1.345 0L8.335 7.483l-6.693.978a.75.75 0 0 0-.415 1.28l4.842 4.717-1.143 6.665a.75.75 0 0 0 1.089.79L12 18.766l5.985 3.149a.75.75 0 0 0 1.089-.79l-1.143-6.666 4.842-4.717a.75.75 0 0 0-.415-1.28l-6.693-.978-2.992-6.065z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgStar as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapHorizontal = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M6.72 3.309a.75.75 0 0 0-1-1.118l-4.47 4a.75.75 0 0 0 0 1.118l4.47 4a.75.75 0 0 0 1-1.118L3.713 7.5H22.25a.75.75 0 0 0 0-1.5H3.713zm10.56 10.5a.75.75 0 1 1 1-1.118l4.47 4a.75.75 0 0 1 0 1.118l-4.47 4a.75.75 0 1 1-1-1.118L20.287 18H1.75a.75.75 0 0 1 0-1.5h18.537z"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgSwapHorizontal as default };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSwapVertical = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M20.691 6.72a.75.75 0 1 0 1.118-1l-4-4.47a.75.75 0 0 0-1.118 0l-4 4.47a.75.75 0 0 0 1.118 1L16.5 3.713V22.25a.75.75 0 0 0 1.5 0V3.713zm-10.5 10.56a.75.75 0 1 1 1.118 1l-4 4.47a.75.75 0 0 1-1.118 0l-4-4.47a.75.75 0 1 1 1.118-1L6 20.287V1.75a.75.75 0 0 1 1.5 0v18.537z",
|
|
12
|
+
opacity: 0.9
|
|
13
|
+
}));
|
|
14
|
+
|
|
15
|
+
export { SvgSwapVertical as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTablet = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M1.805 3.805A2.75 2.75 0 0 1 3.75 3h16.5A2.75 2.75 0 0 1 23 5.75v12.5A2.75 2.75 0 0 1 20.25 21H3.75A2.75 2.75 0 0 1 1 18.25V5.75c0-.73.29-1.429.805-1.945m9.486 13.488a1 1 0 0 1 .704-.293h.01c.264 0 .517.105.704.293A1.002 1.002 0 0 1 12.005 19h-.01a1 1 0 0 1-.704-.293 1 1 0 0 1 0-1.414"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgTablet as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTag = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M2.805 2.805A2.75 2.75 0 0 1 4.75 2h6.422c.73 0 1.428.29 1.944.805l8 8a2.75 2.75 0 0 1 0 3.89l-6.421 6.421a2.75 2.75 0 0 1-3.89 0l-8-8A2.75 2.75 0 0 1 2 11.172V4.75c0-.73.29-1.429.805-1.945m2.488 2.488A1 1 0 0 1 6 5h.01a1 1 0 0 1 0 2H6a1 1 0 0 1-.707-1.707"
|
|
12
|
+
}));
|
|
13
|
+
|
|
14
|
+
export { SvgTag as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgText = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M3 3.75A.75.75 0 0 1 3.75 3h16a.75.75 0 0 1 .75.75v2.5a.75.75 0 1 1-1.5 0V4.5h-6.5v15h2a.75.75 0 1 1 0 1.5H9a.75.75 0 1 1 0-1.5h2v-15H4.5v1.75a.75.75 0 0 1-1.5 0z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgText as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import _extends from '@babel/runtime/helpers/extends';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextAlignCenter = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: 24,
|
|
7
|
+
height: 24,
|
|
8
|
+
fill: "currentColor"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M2.75 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zm3 4a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zM2 13.75a.75.75 0 0 1 .75-.75h18.5a.75.75 0 1 1 0 1.5H2.75a.75.75 0 0 1-.75-.75M5.75 17a.75.75 0 1 0 0 1.5h12.5a.75.75 0 1 0 0-1.5z"
|
|
11
|
+
}));
|
|
12
|
+
|
|
13
|
+
export { SvgTextAlignCenter as default };
|
|
@@ -128,3 +128,13 @@ export { default as ShieldX } from './ShieldX.js';
|
|
|
128
128
|
export { default as Shield } from './Shield.js';
|
|
129
129
|
export { default as ShoppingBag } from './ShoppingBag.js';
|
|
130
130
|
export { default as ShoppingCart } from './ShoppingCart.js';
|
|
131
|
+
export { default as Slash } from './Slash.js';
|
|
132
|
+
export { default as Slider } from './Slider.js';
|
|
133
|
+
export { default as Smartphone } from './Smartphone.js';
|
|
134
|
+
export { default as Star } from './Star.js';
|
|
135
|
+
export { default as SwapHorizontal } from './SwapHorizontal.js';
|
|
136
|
+
export { default as SwapVertical } from './SwapVertical.js';
|
|
137
|
+
export { default as Tablet } from './Tablet.js';
|
|
138
|
+
export { default as Tag } from './Tag.js';
|
|
139
|
+
export { default as TextAlignCenter } from './TextAlignCenter.js';
|
|
140
|
+
export { default as Text } from './Text.js';
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metal-icons",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"description": "A flexible React icon
|
|
4
|
+
"version": "0.1.22",
|
|
5
|
+
"description": "A flexible React icon library.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"icon-library",
|
|
8
|
+
"icons",
|
|
9
|
+
"react",
|
|
10
|
+
"svg"
|
|
11
|
+
],
|
|
6
12
|
"repository": {
|
|
7
13
|
"type": "git",
|
|
8
14
|
"url": "https://github.com/jasonmelgoza/metal-icons.git"
|