@livechat/design-system-icons 1.0.0-alpha.47 → 1.0.0-alpha.48
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/lib/react/tabler/SoundOnFilled.tsx +1 -7
- package/lib/react/tabler/Windows.tsx +35 -0
- package/lib/react/tabler/WindowsFilled.tsx +37 -0
- package/lib/react/tabler/index.ts +2 -0
- package/package.json +2 -2
- package/react/tabler/SoundOnFilled.js +1 -6
- package/react/tabler/Windows.js +42 -0
- package/react/tabler/WindowsFilled.js +43 -0
- package/react/tabler/index.js +16 -0
- package/svg/tabler/sound_on-filled.svg +1 -1
- package/svg/tabler/windows-filled.svg +12 -0
- package/svg/tabler/windows.svg +8 -0
|
@@ -17,15 +17,9 @@ const SvgSoundOnFilled = (props: SVGProps<SVGSVGElement>) => (
|
|
|
17
17
|
<path
|
|
18
18
|
fillRule="evenodd"
|
|
19
19
|
clipRule="evenodd"
|
|
20
|
-
d="M16.922 4.371a1 1 0 0 1 1.407-.149 10.002 10.002 0 0 1 0 15.556 1 1 0 0 1-1.257-1.556 8 8 0 0 0 0-12.444 1 1 0 0 1-.15-1.
|
|
20
|
+
d="M16.922 4.371a1 1 0 0 1 1.407-.149 10.002 10.002 0 0 1 0 15.556 1 1 0 0 1-1.257-1.556 8 8 0 0 0 0-12.444 1 1 0 0 1-.15-1.407ZM10.78 3.159a1.8 1.8 0 0 0-2.115.786L5.511 8H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1.51l3.155 4.055A1.8 1.8 0 0 0 12 18.933V5.067a1.8 1.8 0 0 0-1.22-1.908Z"
|
|
21
21
|
fill="currentcolor"
|
|
22
22
|
/>
|
|
23
|
-
<path
|
|
24
|
-
fillRule="evenodd"
|
|
25
|
-
clipRule="evenodd"
|
|
26
|
-
d="M10.78 3.159a1.8 1.8 0 0 0-2.115.786L5.511 8H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1.51l3.155 4.055A1.8 1.8 0 0 0 12 18.933V5.067a1.8 1.8 0 0 0-1.22-1.908Z"
|
|
27
|
-
fill="#1B1B20"
|
|
28
|
-
/>
|
|
29
23
|
</svg>
|
|
30
24
|
);
|
|
31
25
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgWindows = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<mask
|
|
12
|
+
id="windows_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={3}
|
|
18
|
+
y={2}
|
|
19
|
+
width={18}
|
|
20
|
+
height={20}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="m17.9 4.995-4.9.613V11h6V5.9c0-.462-.442-.95-1.1-.905ZM19 13h-6v5.392l4.48.56a1 1 0 0 1 .499-.036c.47.086 1.021-.323 1.021-.916v-5Zm-8-2V5.858l-5.076.634a1.011 1.011 0 0 1-.025.003C5.354 6.55 5 6.97 5 7.4V11h6Zm-6 2h6v5.142l-5.076-.634a.677.677 0 0 0-.025-.003C5.354 17.451 5 17.032 5 16.6V13Zm-2-1V7.4c0-1.564 1.238-2.742 2.687-2.894l11.989-1.498a.998.998 0 0 1 .041-.004C19.45 2.859 21 4.166 21 5.9V18c0 1.613-1.314 2.895-2.827 2.928a.999.999 0 0 1-.497.064L5.687 19.494C4.237 19.342 3 18.164 3 16.6V12Z"
|
|
26
|
+
fill="currentcolor"
|
|
27
|
+
/>
|
|
28
|
+
</mask>
|
|
29
|
+
<g mask="url(#windows_svg__a)">
|
|
30
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default SvgWindows;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgWindowsFilled = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<mask
|
|
12
|
+
id="windows-filled_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={3}
|
|
18
|
+
y={2}
|
|
19
|
+
width={18}
|
|
20
|
+
height={19}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="m10 5-4.2.5c-1 .1-1.8.9-1.8 1.9V10h6V5ZM4 14v2.6c0 1 .8 1.8 1.8 1.9l4.2.5v-5H4ZM14 19.5l3.8.4c1.1.2 2.2-.7 2.2-1.9v-4h-6v5.5ZM20 10h-6V4.5l3.8-.5c1.2-.1 2.2.8 2.2 1.9V10Z"
|
|
24
|
+
fill="currentcolor"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
d="m5.8 5.5.1.995a.973.973 0 0 0 .018-.002L5.8 5.5ZM10 5h1V3.874l-1.118.133L10 5Zm-6 5H3v1h1v-1Zm6 0v1h1v-1h-1Zm-6 4v-1H3v1h1Zm1.8 4.5.118-.993-.019-.002-.099.995Zm4.2.5-.118.993 1.118.133V19h-1Zm0-5h1v-1h-1v1Zm4 5.5h-1v.9l.895.095L14 19.5Zm3.8.4.179-.984a.982.982 0 0 0-.074-.01l-.105.994ZM20 14h1v-1h-1v1Zm-6 0v-1h-1v1h1Zm6-4v1h1v-1h-1Zm-6 0h-1v1h1v-1Zm0-5.5-.13-.991-.87.114V4.5h1Zm3.8-.5-.083-.997a.988.988 0 0 0-.047.006L17.8 4ZM5.918 6.493l4.2-.5-.236-1.986-4.2.5.236 1.986ZM5 7.4c0-.431.354-.85.9-.905l-.2-1.99C4.247 4.65 3 5.832 3 7.4h2ZM5 10V7.4H3V10h2Zm5-1H4v2h6V9ZM9 5v5h2V5H9ZM5 16.6V14H3v2.6h2Zm.9.905c-.546-.054-.9-.473-.9-.905H3c0 1.569 1.246 2.75 2.7 2.895l.2-1.99Zm4.218.502-4.2-.5-.236 1.986 4.2.5.236-1.986ZM9 14v5h2v-5H9Zm-5 1h6v-2H4v2Zm15 3c0 .593-.552 1.002-1.021.916l-.358 1.968C19.351 21.198 21 19.807 21 18h-2Zm0-4v4h2v-4h-2Zm-5 1h6v-2h-6v2Zm1 4.5V14h-2v5.5h2ZM20 9h-6v2h6V9Zm-5 1V4.5h-2V10h2Zm-.87-4.509 3.8-.5-.26-1.982-3.8.5.26 1.982Zm3.753-.494C18.55 4.94 19 5.434 19 5.9h2c0-1.734-1.55-3.041-3.283-2.897l.166 1.994ZM19 5.9V10h2V5.9h-2Zm-1.095 13.005-3.8-.4-.21 1.99 3.8.4.21-1.99Z"
|
|
28
|
+
fill="currentcolor"
|
|
29
|
+
/>
|
|
30
|
+
</mask>
|
|
31
|
+
<g mask="url(#windows-filled_svg__a)">
|
|
32
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
export default SvgWindowsFilled;
|
|
@@ -308,5 +308,7 @@ export { default as WaitingFilled } from './WaitingFilled';
|
|
|
308
308
|
export { default as Waiting } from './Waiting';
|
|
309
309
|
export { default as WarningFilled } from './WarningFilled';
|
|
310
310
|
export { default as Warning } from './Warning';
|
|
311
|
+
export { default as WindowsFilled } from './WindowsFilled';
|
|
312
|
+
export { default as Windows } from './Windows';
|
|
311
313
|
export { default as WorldFilled } from './WorldFilled';
|
|
312
314
|
export { default as World } from './World';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livechat/design-system-icons",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.48",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": ">= 16"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "2778f5d8b34fbbcfa4df77c810307c654c9dec1d"
|
|
40
40
|
}
|
|
@@ -24,13 +24,8 @@ const SvgSoundOnFilled = props => /*#__PURE__*/React.createElement("svg", {
|
|
|
24
24
|
}), /*#__PURE__*/React.createElement("path", {
|
|
25
25
|
fillRule: "evenodd",
|
|
26
26
|
clipRule: "evenodd",
|
|
27
|
-
d: "M16.922 4.371a1 1 0 0 1 1.407-.149 10.002 10.002 0 0 1 0 15.556 1 1 0 0 1-1.257-1.556 8 8 0 0 0 0-12.444 1 1 0 0 1-.15-1.
|
|
27
|
+
d: "M16.922 4.371a1 1 0 0 1 1.407-.149 10.002 10.002 0 0 1 0 15.556 1 1 0 0 1-1.257-1.556 8 8 0 0 0 0-12.444 1 1 0 0 1-.15-1.407ZM10.78 3.159a1.8 1.8 0 0 0-2.115.786L5.511 8H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1.51l3.155 4.055A1.8 1.8 0 0 0 12 18.933V5.067a1.8 1.8 0 0 0-1.22-1.908Z",
|
|
28
28
|
fill: "currentcolor"
|
|
29
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
fillRule: "evenodd",
|
|
31
|
-
clipRule: "evenodd",
|
|
32
|
-
d: "M10.78 3.159a1.8 1.8 0 0 0-2.115.786L5.511 8H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1.51l3.155 4.055A1.8 1.8 0 0 0 12 18.933V5.067a1.8 1.8 0 0 0-1.22-1.908Z",
|
|
33
|
-
fill: "#1B1B20"
|
|
34
29
|
}));
|
|
35
30
|
|
|
36
31
|
var _default = SvgSoundOnFilled;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
11
|
+
|
|
12
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
13
|
+
|
|
14
|
+
const SvgWindows = props => /*#__PURE__*/React.createElement("svg", {
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
fill: "none",
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
...props
|
|
19
|
+
}, /*#__PURE__*/React.createElement("mask", {
|
|
20
|
+
id: "windows_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 3,
|
|
26
|
+
y: 2,
|
|
27
|
+
width: 18,
|
|
28
|
+
height: 20
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "m17.9 4.995-4.9.613V11h6V5.9c0-.462-.442-.95-1.1-.905ZM19 13h-6v5.392l4.48.56a1 1 0 0 1 .499-.036c.47.086 1.021-.323 1.021-.916v-5Zm-8-2V5.858l-5.076.634a1.011 1.011 0 0 1-.025.003C5.354 6.55 5 6.97 5 7.4V11h6Zm-6 2h6v5.142l-5.076-.634a.677.677 0 0 0-.025-.003C5.354 17.451 5 17.032 5 16.6V13Zm-2-1V7.4c0-1.564 1.238-2.742 2.687-2.894l11.989-1.498a.998.998 0 0 1 .041-.004C19.45 2.859 21 4.166 21 5.9V18c0 1.613-1.314 2.895-2.827 2.928a.999.999 0 0 1-.497.064L5.687 19.494C4.237 19.342 3 18.164 3 16.6V12Z",
|
|
33
|
+
fill: "currentcolor"
|
|
34
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
35
|
+
mask: "url(#windows_svg__a)"
|
|
36
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: "currentcolor",
|
|
38
|
+
d: "M0 0h24v24H0z"
|
|
39
|
+
})));
|
|
40
|
+
|
|
41
|
+
var _default = SvgWindows;
|
|
42
|
+
exports.default = _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
11
|
+
|
|
12
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
13
|
+
|
|
14
|
+
const SvgWindowsFilled = props => /*#__PURE__*/React.createElement("svg", {
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
fill: "none",
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
...props
|
|
19
|
+
}, /*#__PURE__*/React.createElement("mask", {
|
|
20
|
+
id: "windows-filled_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 3,
|
|
26
|
+
y: 2,
|
|
27
|
+
width: 18,
|
|
28
|
+
height: 19
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "m10 5-4.2.5c-1 .1-1.8.9-1.8 1.9V10h6V5ZM4 14v2.6c0 1 .8 1.8 1.8 1.9l4.2.5v-5H4ZM14 19.5l3.8.4c1.1.2 2.2-.7 2.2-1.9v-4h-6v5.5ZM20 10h-6V4.5l3.8-.5c1.2-.1 2.2.8 2.2 1.9V10Z",
|
|
31
|
+
fill: "currentcolor"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "m5.8 5.5.1.995a.973.973 0 0 0 .018-.002L5.8 5.5ZM10 5h1V3.874l-1.118.133L10 5Zm-6 5H3v1h1v-1Zm6 0v1h1v-1h-1Zm-6 4v-1H3v1h1Zm1.8 4.5.118-.993-.019-.002-.099.995Zm4.2.5-.118.993 1.118.133V19h-1Zm0-5h1v-1h-1v1Zm4 5.5h-1v.9l.895.095L14 19.5Zm3.8.4.179-.984a.982.982 0 0 0-.074-.01l-.105.994ZM20 14h1v-1h-1v1Zm-6 0v-1h-1v1h1Zm6-4v1h1v-1h-1Zm-6 0h-1v1h1v-1Zm0-5.5-.13-.991-.87.114V4.5h1Zm3.8-.5-.083-.997a.988.988 0 0 0-.047.006L17.8 4ZM5.918 6.493l4.2-.5-.236-1.986-4.2.5.236 1.986ZM5 7.4c0-.431.354-.85.9-.905l-.2-1.99C4.247 4.65 3 5.832 3 7.4h2ZM5 10V7.4H3V10h2Zm5-1H4v2h6V9ZM9 5v5h2V5H9ZM5 16.6V14H3v2.6h2Zm.9.905c-.546-.054-.9-.473-.9-.905H3c0 1.569 1.246 2.75 2.7 2.895l.2-1.99Zm4.218.502-4.2-.5-.236 1.986 4.2.5.236-1.986ZM9 14v5h2v-5H9Zm-5 1h6v-2H4v2Zm15 3c0 .593-.552 1.002-1.021.916l-.358 1.968C19.351 21.198 21 19.807 21 18h-2Zm0-4v4h2v-4h-2Zm-5 1h6v-2h-6v2Zm1 4.5V14h-2v5.5h2ZM20 9h-6v2h6V9Zm-5 1V4.5h-2V10h2Zm-.87-4.509 3.8-.5-.26-1.982-3.8.5.26 1.982Zm3.753-.494C18.55 4.94 19 5.434 19 5.9h2c0-1.734-1.55-3.041-3.283-2.897l.166 1.994ZM19 5.9V10h2V5.9h-2Zm-1.095 13.005-3.8-.4-.21 1.99 3.8.4.21-1.99Z",
|
|
34
|
+
fill: "currentcolor"
|
|
35
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
36
|
+
mask: "url(#windows-filled_svg__a)"
|
|
37
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
fill: "currentcolor",
|
|
39
|
+
d: "M0 0h24v24H0z"
|
|
40
|
+
})));
|
|
41
|
+
|
|
42
|
+
var _default = SvgWindowsFilled;
|
|
43
|
+
exports.default = _default;
|
package/react/tabler/index.js
CHANGED
|
@@ -1863,6 +1863,18 @@ Object.defineProperty(exports, "WarningFilled", {
|
|
|
1863
1863
|
return _WarningFilled.default;
|
|
1864
1864
|
}
|
|
1865
1865
|
});
|
|
1866
|
+
Object.defineProperty(exports, "Windows", {
|
|
1867
|
+
enumerable: true,
|
|
1868
|
+
get: function () {
|
|
1869
|
+
return _Windows.default;
|
|
1870
|
+
}
|
|
1871
|
+
});
|
|
1872
|
+
Object.defineProperty(exports, "WindowsFilled", {
|
|
1873
|
+
enumerable: true,
|
|
1874
|
+
get: function () {
|
|
1875
|
+
return _WindowsFilled.default;
|
|
1876
|
+
}
|
|
1877
|
+
});
|
|
1866
1878
|
Object.defineProperty(exports, "World", {
|
|
1867
1879
|
enumerable: true,
|
|
1868
1880
|
get: function () {
|
|
@@ -2496,6 +2508,10 @@ var _WarningFilled = _interopRequireDefault(require("./WarningFilled"));
|
|
|
2496
2508
|
|
|
2497
2509
|
var _Warning = _interopRequireDefault(require("./Warning"));
|
|
2498
2510
|
|
|
2511
|
+
var _WindowsFilled = _interopRequireDefault(require("./WindowsFilled"));
|
|
2512
|
+
|
|
2513
|
+
var _Windows = _interopRequireDefault(require("./Windows"));
|
|
2514
|
+
|
|
2499
2515
|
var _WorldFilled = _interopRequireDefault(require("./WorldFilled"));
|
|
2500
2516
|
|
|
2501
2517
|
var _World = _interopRequireDefault(require("./World"));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
2
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2001 7.40006C14.5314 6.95823 15.1582 6.86869 15.6001 7.20006C16.3452 7.75894 16.9501 8.48365 17.3666 9.31678C17.7832 10.1499 18.0001 11.0686 18.0001 12.0001C18.0001 12.9315 17.7832 13.8502 17.3666 14.6833C16.9501 15.5165 16.3452 16.2412 15.6001 16.8001C15.1582 17.1314 14.5314 17.0419 14.2001 16.6001C13.8687 16.1582 13.9582 15.5314 14.4001 15.2001C14.8968 14.8275 15.3001 14.3443 15.5778 13.7889C15.8555 13.2335 16.0001 12.621 16.0001 12.0001C16.0001 11.3791 15.8555 10.7666 15.5778 10.2112C15.3001 9.65578 14.8968 9.17265 14.4001 8.80006C13.9582 8.46869 13.8687 7.84189 14.2001 7.40006Z" fill="currentcolor"/>
|
|
3
3
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9225 4.37149C17.2696 3.94194 17.8992 3.87512 18.3288 4.22226C19.4887 5.15965 20.4243 6.34462 21.0671 7.69039C21.7098 9.03616 22.0434 10.5087 22.0434 12C22.0434 13.4914 21.7098 14.9639 21.0671 16.3097C20.4243 17.6554 19.4887 18.8404 18.3288 19.7778C17.8992 20.1249 17.2696 20.0581 16.9225 19.6286C16.5753 19.199 16.6421 18.5694 17.0717 18.2223C17.9997 17.4723 18.7481 16.5244 19.2623 15.4477C19.7765 14.3711 20.0434 13.1931 20.0434 12C20.0434 10.8069 19.7765 9.62894 19.2623 8.55232C18.7481 7.4757 17.9997 6.52772 17.0717 5.77781C16.6421 5.43068 16.5753 4.80105 16.9225 4.37149Z" fill="currentcolor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7805 3.15853C10.3729 3.02267 9.93016 3.03707 9.53226 3.19914C9.16889 3.34715 8.86481 3.6094 8.665 3.94473L5.51092 7.99997H4C3.46957 7.99997 2.96086 8.21069 2.58579 8.58576C2.21071 8.96083 2 9.46954 2 9.99997V14C2 14.5304 2.21071 15.0391 2.58579 15.4142C2.96086 15.7893 3.46957 16 4 16H5.51092L8.66499 20.0552C8.86481 20.3905 9.16889 20.6528 9.53226 20.8008C9.93016 20.9629 10.3729 20.9773 10.7805 20.8414C11.1881 20.7056 11.5336 20.4284 11.7547 20.06C11.9584 19.7205 12.044 19.3242 12 18.9327V5.06729C12.044 4.67571 11.9584 4.27942 11.7547 3.93995C11.5336 3.57156 11.1881 3.29439 10.7805 3.15853Z" fill="
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7805 3.15853C10.3729 3.02267 9.93016 3.03707 9.53226 3.19914C9.16889 3.34715 8.86481 3.6094 8.665 3.94473L5.51092 7.99997H4C3.46957 7.99997 2.96086 8.21069 2.58579 8.58576C2.21071 8.96083 2 9.46954 2 9.99997V14C2 14.5304 2.21071 15.0391 2.58579 15.4142C2.96086 15.7893 3.46957 16 4 16H5.51092L8.66499 20.0552C8.86481 20.3905 9.16889 20.6528 9.53226 20.8008C9.93016 20.9629 10.3729 20.9773 10.7805 20.8414C11.1881 20.7056 11.5336 20.4284 11.7547 20.06C11.9584 19.7205 12.044 19.3242 12 18.9327V5.06729C12.044 4.67571 11.9584 4.27942 11.7547 3.93995C11.5336 3.57156 11.1881 3.29439 10.7805 3.15853Z" fill="currentcolor"/>
|
|
5
5
|
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0_13480_43493" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="3" y="2" width="18" height="19">
|
|
3
|
+
<path d="M10 5L5.8 5.50003C4.8 5.60003 4 6.40003 4 7.40003V10H10V5Z" fill="currentcolor"/>
|
|
4
|
+
<path d="M4 14V16.6C4 17.6 4.8 18.4 5.8 18.5L10 19V14H4Z" fill="currentcolor"/>
|
|
5
|
+
<path d="M14 19.5L17.8 19.9C18.9 20.1 20 19.2 20 18V14H14V19.5Z" fill="currentcolor"/>
|
|
6
|
+
<path d="M20 10H14V4.5L17.8 4.00003C19 3.90003 20 4.80003 20 5.90003V10Z" fill="currentcolor"/>
|
|
7
|
+
<path d="M5.8 5.50003L5.8995 6.49507C5.90575 6.49445 5.91199 6.49376 5.91822 6.49302L5.8 5.50003ZM10 5H11V3.87388L9.88178 4.00701L10 5ZM4 10H3V11H4V10ZM10 10V11H11V10H10ZM4 14V13H3V14H4ZM5.8 18.5L5.91821 17.507C5.91198 17.5063 5.90574 17.5056 5.8995 17.505L5.8 18.5ZM10 19L9.8818 19.993L11 20.1261V19H10ZM10 14H11V13H10V14ZM14 19.5H13V20.4003L13.8953 20.4945L14 19.5ZM17.8 19.9L17.9789 18.9162C17.9543 18.9117 17.9295 18.9081 17.9047 18.9055L17.8 19.9ZM20 14H21V13H20V14ZM14 14V13H13V14H14ZM20 10V11H21V10H20ZM14 10H13V11H14V10ZM14 4.5L13.8696 3.50854L13 3.62295V4.5H14ZM17.8 4.00003L17.717 3.00349C17.7011 3.00481 17.6853 3.00651 17.6696 3.00858L17.8 4.00003ZM5.91822 6.49302L10.1182 5.99299L9.88178 4.00701L5.68178 4.50705L5.91822 6.49302ZM5 7.40003C5 6.96851 5.35435 6.54959 5.8995 6.49507L5.7005 4.505C4.24565 4.65048 3 5.83156 3 7.40003H5ZM5 10V7.40003H3V10H5ZM10 9H4V11H10V9ZM9 5V10H11V5H9ZM5 16.6V14H3V16.6H5ZM5.8995 17.505C5.35435 17.4505 5 17.0316 5 16.6H3C3 18.1685 4.24565 19.3496 5.7005 19.4951L5.8995 17.505ZM10.1182 18.007L5.91821 17.507L5.6818 19.493L9.8818 19.993L10.1182 18.007ZM9 14V19H11V14H9ZM4 15H10V13H4V15ZM19 18C19 18.5931 18.4484 19.0015 17.9789 18.9162L17.6211 20.8839C19.3516 21.1985 21 19.8069 21 18H19ZM19 14V18H21V14H19ZM14 15H20V13H14V15ZM15 19.5V14H13V19.5H15ZM20 9H14V11H20V9ZM15 10V4.5H13V10H15ZM14.1304 5.49146L17.9304 4.99149L17.6696 3.00858L13.8696 3.50854L14.1304 5.49146ZM17.883 4.99658C18.5496 4.94103 19 5.43373 19 5.90003H21C21 4.16634 19.4504 2.85904 17.717 3.00349L17.883 4.99658ZM19 5.90003V10H21V5.90003H19ZM17.9047 18.9055L14.1047 18.5055L13.8953 20.4945L17.6953 20.8945L17.9047 18.9055Z" fill="currentcolor"/>
|
|
8
|
+
</mask>
|
|
9
|
+
<g mask="url(#mask0_13480_43493)">
|
|
10
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0_13480_43487" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="3" y="2" width="18" height="20">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9006 4.99533L13 5.60791V11.0001H19V5.90013C19 5.43794 18.5575 4.94981 17.9006 4.99533ZM19 13.0001H13V18.3923L17.4808 18.9524C17.6393 18.8991 17.8105 18.8856 17.9789 18.9163C18.4484 19.0016 19 18.5932 19 18.0001V13.0001ZM11 11.0001V5.85791L5.92404 6.49241C5.91587 6.49343 5.90769 6.49435 5.8995 6.49517C5.35435 6.54968 5 6.96861 5 7.40013V11.0001H11ZM5 13.0001H11V18.1423L5.92404 17.5079C5.91587 17.5068 5.90769 17.5059 5.8995 17.5051C5.35435 17.4506 5 17.0317 5 16.6001V13.0001ZM3 12.0001V7.40013C3 5.8365 4.23795 4.65789 5.687 4.50647L17.676 3.00785C17.6896 3.00615 17.7033 3.00473 17.717 3.00359C19.4504 2.85913 21 4.16644 21 5.90013V12.0001V18.0001C21 19.6133 19.6861 20.8954 18.173 20.9279C18.0172 20.9906 17.8463 21.0137 17.676 20.9924L5.68699 19.4938C4.23794 19.3424 3 18.1638 3 16.6001V12.0001Z" fill="currentcolor"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_13480_43487)">
|
|
6
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|