@livechat/design-system-icons 1.0.0-alpha.52 → 1.0.0-alpha.55
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/Facebook.tsx +36 -0
- package/lib/react/tabler/FacebookFilled.tsx +33 -0
- package/lib/react/tabler/Linux.tsx +36 -0
- package/lib/react/tabler/LinuxFilled.tsx +42 -0
- package/lib/react/tabler/Twitter.tsx +36 -0
- package/lib/react/tabler/TwitterFilled.tsx +33 -0
- package/lib/react/tabler/index.ts +6 -0
- package/package.json +2 -2
- package/react/tabler/Facebook.js +43 -0
- package/react/tabler/FacebookFilled.js +40 -0
- package/react/tabler/Linux.js +43 -0
- package/react/tabler/LinuxFilled.js +48 -0
- package/react/tabler/Twitter.js +43 -0
- package/react/tabler/TwitterFilled.js +40 -0
- package/react/tabler/index.js +48 -0
- package/svg/tabler/facebook-filled.svg +8 -0
- package/svg/tabler/facebook.svg +8 -0
- package/svg/tabler/linux-filled.svg +9 -0
- package/svg/tabler/linux.svg +8 -0
- package/svg/tabler/twitter-filled.svg +8 -0
- package/svg/tabler/twitter.svg +8 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgFacebook = (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="facebook_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={6}
|
|
18
|
+
y={2}
|
|
19
|
+
width={13}
|
|
20
|
+
height={20}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M7 10v4h3v7h4v-7h3l1-4h-4V8a1 1 0 0 1 1-1h3V3h-3a5 5 0 0 0-5 5v2H7Z"
|
|
24
|
+
stroke="currentcolor"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</mask>
|
|
30
|
+
<g mask="url(#facebook_svg__a)">
|
|
31
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
32
|
+
</g>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default SvgFacebook;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgFacebookFilled = (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="facebook-filled_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={6}
|
|
18
|
+
y={2}
|
|
19
|
+
width={13}
|
|
20
|
+
height={20}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M18 2a1 1 0 0 1 .993.883L19 3v4a1 1 0 0 1-.883.993L18 8h-3v1h3a1 1 0 0 1 .991 1.131l-.02.112-1 4a1 1 0 0 1-.858.75L17 15h-2v6a1 1 0 0 1-.883.993L14 22h-4a1 1 0 0 1-.993-.883L9 21v-6H7a1 1 0 0 1-.993-.883L6 14v-4a1 1 0 0 1 .883-.993L7 9h2V8a6 6 0 0 1 5.775-5.996L15 2h3Z"
|
|
24
|
+
fill="currentcolor"
|
|
25
|
+
/>
|
|
26
|
+
</mask>
|
|
27
|
+
<g mask="url(#facebook-filled_svg__a)">
|
|
28
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export default SvgFacebookFilled;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgLinux = (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="linux_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={2}
|
|
18
|
+
y={3}
|
|
19
|
+
width={20}
|
|
20
|
+
height={19}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M7 11.5 3.5 15M7 11.5V9a5 5 0 0 1 10 0v2.5m-10 0S6 13.674 6 15c0 .812.237 1.604.68 2.311M17 11.5l3.5 3.5M17 11.5s1 2.174 1 3.5c0 .812-.237 1.604-.68 2.311M10.5 8h.005M13.5 8h.005M10 11l2 1.5 2-1.5m0 8.734v1.016c0 .066.042.13.117.177A.544.544 0 0 0 14.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177l1-2.5c0-.331-.21-.65-.586-.884a1.902 1.902 0 0 0-.094-.055M14 19.734V18.25c0-.331.21-.65.586-.884C14.96 17.132 15.47 17 16 17c.354 0 .698.059 1 .168.113.04.221.088.32.143M14 19.734A7.189 7.189 0 0 1 12 20a7.291 7.291 0 0 1-1.836-.221L10 19.75m-3.32-2.439a1.901 1.901 0 0 0-.094.055c-.375.235-.586.553-.586.884l1 2.5c0 .066.042.13.117.177A.544.544 0 0 0 7.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177v-1m-3.32-2.439c.099-.055.206-.103.32-.143A2.974 2.974 0 0 1 8 17c.53 0 1.04.132 1.414.366.375.235.586.553.586.884v1.5"
|
|
24
|
+
stroke="currentcolor"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</mask>
|
|
30
|
+
<g mask="url(#linux_svg__a)">
|
|
31
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
32
|
+
</g>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default SvgLinux;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgLinuxFilled = (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="linux-filled_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={2}
|
|
18
|
+
y={3}
|
|
19
|
+
width={20}
|
|
20
|
+
height={19}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M6.736 17.282a1.98 1.98 0 0 0-.15.084c-.375.235-.586.553-.586.884l1 2.5c0 .066.042.13.117.177A.544.544 0 0 0 7.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177v-1.049m-3.264-2.42A2.826 2.826 0 0 1 8 17c.53 0 1.04.132 1.414.366.375.235.586.553.586.884v1.451m-3.264-2.42A4.704 4.704 0 0 1 6 14.775c0-1.884.916-3.221 1.81-4.077.904-.865 2.276-.611 3.16.273L12 12l1.03-1.03c.884-.884 2.256-1.138 3.16-.273.894.856 1.81 2.193 1.81 4.077 0 .885-.257 1.746-.736 2.508M10 19.702A6.804 6.804 0 0 0 12 20c.688 0 1.364-.103 2-.299m0 0v1.049c0 .066.042.13.117.177A.544.544 0 0 0 14.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177l1-2.5c0-.331-.21-.65-.586-.884a1.983 1.983 0 0 0-.15-.084M14 19.702V18.25c0-.331.21-.65.586-.884C14.96 17.132 15.47 17 16 17c.463 0 .909.1 1.264.282M3.5 15 7 11.5V9a5 5 0 0 1 10 0v2.5l3.5 3.5"
|
|
24
|
+
stroke="currentcolor"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
fillRule="evenodd"
|
|
31
|
+
clipRule="evenodd"
|
|
32
|
+
d="M7.5 8.5C7.461 10.329 9.883 11 12 11s4.539-.671 4.5-2.5C16.46 6.578 14.688 4 12 4 9 4 7.54 6.578 7.5 8.5Zm3-1.5a1 1 0 0 0 0 2h.005a1 1 0 1 0 0-2H10.5Zm3 0a1 1 0 1 0 0 2h.005a1 1 0 1 0 0-2H13.5Z"
|
|
33
|
+
fill="#000"
|
|
34
|
+
/>
|
|
35
|
+
</mask>
|
|
36
|
+
<g mask="url(#linux-filled_svg__a)">
|
|
37
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
38
|
+
</g>
|
|
39
|
+
</svg>
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
export default SvgLinuxFilled;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTwitter = (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="twitter_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={1}
|
|
18
|
+
y={3}
|
|
19
|
+
width={22}
|
|
20
|
+
height={19}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M22 4.11c-1 .49-1.98.69-3 .99-1.121-1.264-2.783-1.334-4.38-.736-1.597.598-2.643 2.06-2.62 3.737v1c-3.245.083-6.135-1.395-8-4 0 0-4.182 7.433 4 11-1.872 1.247-3.739 2.088-6 2 3.308 1.803 6.913 2.423 10.034 1.517 3.58-1.04 6.522-3.723 7.651-7.742a13.84 13.84 0 0 0 .497-3.753c0-.25 1.51-2.772 1.818-4.013v0Z"
|
|
24
|
+
stroke="currentcolor"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</mask>
|
|
30
|
+
<g mask="url(#twitter_svg__a)">
|
|
31
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
32
|
+
</g>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default SvgTwitter;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTwitterFilled = (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="twitter-filled_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={0}
|
|
18
|
+
y={3}
|
|
19
|
+
width={24}
|
|
20
|
+
height={19}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M14.058 3.512c-1.807.767-2.995 2.453-3.056 4.38L11 8.074l-.243-.023C8.365 7.782 6.26 6.54 4.813 4.521a1 1 0 0 0-1.685.091l-.097.186-.049.1c-.719 1.484-1.19 3.29-1.017 5.202l.03.273c.283 2.263 1.5 4.215 3.78 5.68l.172.106-.08.043c-1.316.663-2.519.952-3.828.9-1.056-.04-1.446 1.372-.518 1.878 3.598 1.961 7.461 2.566 10.792 1.6 4.06-1.18 7.152-4.223 8.335-8.433l.127-.495c.238-.993.372-2.006.401-3.024l.003-.332.393-.779.44-.862.214-.434.118-.247c.265-.565.456-1.033.574-1.43l.014-.056.008-.018c.22-.593-.166-1.358-.94-1.358l-.123.007a.996.996 0 0 0-.23.057l-.087.038c-.285.139-.58.26-.88.36l-.356.115-.27.08-.773.214c-1.336-1.118-3.144-1.254-5.012-.554l-.21.083Z"
|
|
24
|
+
fill="currentcolor"
|
|
25
|
+
/>
|
|
26
|
+
</mask>
|
|
27
|
+
<g mask="url(#twitter-filled_svg__a)">
|
|
28
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export default SvgTwitterFilled;
|
|
@@ -138,6 +138,8 @@ export { default as ErrorFilled } from './ErrorFilled';
|
|
|
138
138
|
export { default as Error } from './Error';
|
|
139
139
|
export { default as ExtensionFilled } from './ExtensionFilled';
|
|
140
140
|
export { default as Extension } from './Extension';
|
|
141
|
+
export { default as FacebookFilled } from './FacebookFilled';
|
|
142
|
+
export { default as Facebook } from './Facebook';
|
|
141
143
|
export { default as FileCopyFilled } from './FileCopyFilled';
|
|
142
144
|
export { default as FileCopy } from './FileCopy';
|
|
143
145
|
export { default as FileDownloadFilled } from './FileDownloadFilled';
|
|
@@ -197,6 +199,8 @@ export { default as KeyboardFilled } from './KeyboardFilled';
|
|
|
197
199
|
export { default as Keyboard } from './Keyboard';
|
|
198
200
|
export { default as LinkFilled } from './LinkFilled';
|
|
199
201
|
export { default as Link } from './Link';
|
|
202
|
+
export { default as LinuxFilled } from './LinuxFilled';
|
|
203
|
+
export { default as Linux } from './Linux';
|
|
200
204
|
export { default as ListFilled } from './ListFilled';
|
|
201
205
|
export { default as List } from './List';
|
|
202
206
|
export { default as LockBlackFilled } from './LockBlackFilled';
|
|
@@ -301,6 +305,8 @@ export { default as TrafficFilled } from './TrafficFilled';
|
|
|
301
305
|
export { default as Traffic } from './Traffic';
|
|
302
306
|
export { default as TravelsFilled } from './TravelsFilled';
|
|
303
307
|
export { default as Travels } from './Travels';
|
|
308
|
+
export { default as TwitterFilled } from './TwitterFilled';
|
|
309
|
+
export { default as Twitter } from './Twitter';
|
|
304
310
|
export { default as UnderlineFilled } from './UnderlineFilled';
|
|
305
311
|
export { default as Underline } from './Underline';
|
|
306
312
|
export { default as UndoFilled } from './UndoFilled';
|
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.55",
|
|
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": "d5b16e6ddc1e09a41d1d526881551b3e4fb92904"
|
|
40
40
|
}
|
|
@@ -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 SvgFacebook = 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: "facebook_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 6,
|
|
26
|
+
y: 2,
|
|
27
|
+
width: 13,
|
|
28
|
+
height: 20
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M7 10v4h3v7h4v-7h3l1-4h-4V8a1 1 0 0 1 1-1h3V3h-3a5 5 0 0 0-5 5v2H7Z",
|
|
31
|
+
stroke: "currentcolor",
|
|
32
|
+
strokeWidth: 2,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
36
|
+
mask: "url(#facebook_svg__a)"
|
|
37
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
fill: "currentcolor",
|
|
39
|
+
d: "M0 0h24v24H0z"
|
|
40
|
+
})));
|
|
41
|
+
|
|
42
|
+
var _default = SvgFacebook;
|
|
43
|
+
exports.default = _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 SvgFacebookFilled = 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: "facebook-filled_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 6,
|
|
26
|
+
y: 2,
|
|
27
|
+
width: 13,
|
|
28
|
+
height: 20
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M18 2a1 1 0 0 1 .993.883L19 3v4a1 1 0 0 1-.883.993L18 8h-3v1h3a1 1 0 0 1 .991 1.131l-.02.112-1 4a1 1 0 0 1-.858.75L17 15h-2v6a1 1 0 0 1-.883.993L14 22h-4a1 1 0 0 1-.993-.883L9 21v-6H7a1 1 0 0 1-.993-.883L6 14v-4a1 1 0 0 1 .883-.993L7 9h2V8a6 6 0 0 1 5.775-5.996L15 2h3Z",
|
|
31
|
+
fill: "currentcolor"
|
|
32
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
33
|
+
mask: "url(#facebook-filled_svg__a)"
|
|
34
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
fill: "currentcolor",
|
|
36
|
+
d: "M0 0h24v24H0z"
|
|
37
|
+
})));
|
|
38
|
+
|
|
39
|
+
var _default = SvgFacebookFilled;
|
|
40
|
+
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 SvgLinux = 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: "linux_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 2,
|
|
26
|
+
y: 3,
|
|
27
|
+
width: 20,
|
|
28
|
+
height: 19
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M7 11.5 3.5 15M7 11.5V9a5 5 0 0 1 10 0v2.5m-10 0S6 13.674 6 15c0 .812.237 1.604.68 2.311M17 11.5l3.5 3.5M17 11.5s1 2.174 1 3.5c0 .812-.237 1.604-.68 2.311M10.5 8h.005M13.5 8h.005M10 11l2 1.5 2-1.5m0 8.734v1.016c0 .066.042.13.117.177A.544.544 0 0 0 14.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177l1-2.5c0-.331-.21-.65-.586-.884a1.902 1.902 0 0 0-.094-.055M14 19.734V18.25c0-.331.21-.65.586-.884C14.96 17.132 15.47 17 16 17c.354 0 .698.059 1 .168.113.04.221.088.32.143M14 19.734A7.189 7.189 0 0 1 12 20a7.291 7.291 0 0 1-1.836-.221L10 19.75m-3.32-2.439a1.901 1.901 0 0 0-.094.055c-.375.235-.586.553-.586.884l1 2.5c0 .066.042.13.117.177A.544.544 0 0 0 7.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177v-1m-3.32-2.439c.099-.055.206-.103.32-.143A2.974 2.974 0 0 1 8 17c.53 0 1.04.132 1.414.366.375.235.586.553.586.884v1.5",
|
|
31
|
+
stroke: "currentcolor",
|
|
32
|
+
strokeWidth: 2,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
36
|
+
mask: "url(#linux_svg__a)"
|
|
37
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
fill: "currentcolor",
|
|
39
|
+
d: "M0 0h24v24H0z"
|
|
40
|
+
})));
|
|
41
|
+
|
|
42
|
+
var _default = SvgLinux;
|
|
43
|
+
exports.default = _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
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 SvgLinuxFilled = 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: "linux-filled_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 2,
|
|
26
|
+
y: 3,
|
|
27
|
+
width: 20,
|
|
28
|
+
height: 19
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M6.736 17.282a1.98 1.98 0 0 0-.15.084c-.375.235-.586.553-.586.884l1 2.5c0 .066.042.13.117.177A.544.544 0 0 0 7.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177v-1.049m-3.264-2.42A2.826 2.826 0 0 1 8 17c.53 0 1.04.132 1.414.366.375.235.586.553.586.884v1.451m-3.264-2.42A4.704 4.704 0 0 1 6 14.775c0-1.884.916-3.221 1.81-4.077.904-.865 2.276-.611 3.16.273L12 12l1.03-1.03c.884-.884 2.256-1.138 3.16-.273.894.856 1.81 2.193 1.81 4.077 0 .885-.257 1.746-.736 2.508M10 19.702A6.804 6.804 0 0 0 12 20c.688 0 1.364-.103 2-.299m0 0v1.049c0 .066.042.13.117.177A.544.544 0 0 0 14.4 21h2.2a.544.544 0 0 0 .283-.073c.075-.047.117-.11.117-.177l1-2.5c0-.331-.21-.65-.586-.884a1.983 1.983 0 0 0-.15-.084M14 19.702V18.25c0-.331.21-.65.586-.884C14.96 17.132 15.47 17 16 17c.463 0 .909.1 1.264.282M3.5 15 7 11.5V9a5 5 0 0 1 10 0v2.5l3.5 3.5",
|
|
31
|
+
stroke: "currentcolor",
|
|
32
|
+
strokeWidth: 2,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
+
fillRule: "evenodd",
|
|
37
|
+
clipRule: "evenodd",
|
|
38
|
+
d: "M7.5 8.5C7.461 10.329 9.883 11 12 11s4.539-.671 4.5-2.5C16.46 6.578 14.688 4 12 4 9 4 7.54 6.578 7.5 8.5Zm3-1.5a1 1 0 0 0 0 2h.005a1 1 0 1 0 0-2H10.5Zm3 0a1 1 0 1 0 0 2h.005a1 1 0 1 0 0-2H13.5Z",
|
|
39
|
+
fill: "#000"
|
|
40
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
41
|
+
mask: "url(#linux-filled_svg__a)"
|
|
42
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
43
|
+
fill: "currentcolor",
|
|
44
|
+
d: "M0 0h24v24H0z"
|
|
45
|
+
})));
|
|
46
|
+
|
|
47
|
+
var _default = SvgLinuxFilled;
|
|
48
|
+
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 SvgTwitter = 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: "twitter_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 1,
|
|
26
|
+
y: 3,
|
|
27
|
+
width: 22,
|
|
28
|
+
height: 19
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M22 4.11c-1 .49-1.98.69-3 .99-1.121-1.264-2.783-1.334-4.38-.736-1.597.598-2.643 2.06-2.62 3.737v1c-3.245.083-6.135-1.395-8-4 0 0-4.182 7.433 4 11-1.872 1.247-3.739 2.088-6 2 3.308 1.803 6.913 2.423 10.034 1.517 3.58-1.04 6.522-3.723 7.651-7.742a13.84 13.84 0 0 0 .497-3.753c0-.25 1.51-2.772 1.818-4.013v0Z",
|
|
31
|
+
stroke: "currentcolor",
|
|
32
|
+
strokeWidth: 2,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
36
|
+
mask: "url(#twitter_svg__a)"
|
|
37
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
fill: "currentcolor",
|
|
39
|
+
d: "M0 0h24v24H0z"
|
|
40
|
+
})));
|
|
41
|
+
|
|
42
|
+
var _default = SvgTwitter;
|
|
43
|
+
exports.default = _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 SvgTwitterFilled = 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: "twitter-filled_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 0,
|
|
26
|
+
y: 3,
|
|
27
|
+
width: 24,
|
|
28
|
+
height: 19
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M14.058 3.512c-1.807.767-2.995 2.453-3.056 4.38L11 8.074l-.243-.023C8.365 7.782 6.26 6.54 4.813 4.521a1 1 0 0 0-1.685.091l-.097.186-.049.1c-.719 1.484-1.19 3.29-1.017 5.202l.03.273c.283 2.263 1.5 4.215 3.78 5.68l.172.106-.08.043c-1.316.663-2.519.952-3.828.9-1.056-.04-1.446 1.372-.518 1.878 3.598 1.961 7.461 2.566 10.792 1.6 4.06-1.18 7.152-4.223 8.335-8.433l.127-.495c.238-.993.372-2.006.401-3.024l.003-.332.393-.779.44-.862.214-.434.118-.247c.265-.565.456-1.033.574-1.43l.014-.056.008-.018c.22-.593-.166-1.358-.94-1.358l-.123.007a.996.996 0 0 0-.23.057l-.087.038c-.285.139-.58.26-.88.36l-.356.115-.27.08-.773.214c-1.336-1.118-3.144-1.254-5.012-.554l-.21.083Z",
|
|
31
|
+
fill: "currentcolor"
|
|
32
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
33
|
+
mask: "url(#twitter-filled_svg__a)"
|
|
34
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
fill: "currentcolor",
|
|
36
|
+
d: "M0 0h24v24H0z"
|
|
37
|
+
})));
|
|
38
|
+
|
|
39
|
+
var _default = SvgTwitterFilled;
|
|
40
|
+
exports.default = _default;
|
package/react/tabler/index.js
CHANGED
|
@@ -807,6 +807,18 @@ Object.defineProperty(exports, "ExtensionFilled", {
|
|
|
807
807
|
return _ExtensionFilled.default;
|
|
808
808
|
}
|
|
809
809
|
});
|
|
810
|
+
Object.defineProperty(exports, "Facebook", {
|
|
811
|
+
enumerable: true,
|
|
812
|
+
get: function () {
|
|
813
|
+
return _Facebook.default;
|
|
814
|
+
}
|
|
815
|
+
});
|
|
816
|
+
Object.defineProperty(exports, "FacebookFilled", {
|
|
817
|
+
enumerable: true,
|
|
818
|
+
get: function () {
|
|
819
|
+
return _FacebookFilled.default;
|
|
820
|
+
}
|
|
821
|
+
});
|
|
810
822
|
Object.defineProperty(exports, "FileCopy", {
|
|
811
823
|
enumerable: true,
|
|
812
824
|
get: function () {
|
|
@@ -1197,6 +1209,18 @@ Object.defineProperty(exports, "LinkFilled", {
|
|
|
1197
1209
|
return _LinkFilled.default;
|
|
1198
1210
|
}
|
|
1199
1211
|
});
|
|
1212
|
+
Object.defineProperty(exports, "Linux", {
|
|
1213
|
+
enumerable: true,
|
|
1214
|
+
get: function () {
|
|
1215
|
+
return _Linux.default;
|
|
1216
|
+
}
|
|
1217
|
+
});
|
|
1218
|
+
Object.defineProperty(exports, "LinuxFilled", {
|
|
1219
|
+
enumerable: true,
|
|
1220
|
+
get: function () {
|
|
1221
|
+
return _LinuxFilled.default;
|
|
1222
|
+
}
|
|
1223
|
+
});
|
|
1200
1224
|
Object.defineProperty(exports, "List", {
|
|
1201
1225
|
enumerable: true,
|
|
1202
1226
|
get: function () {
|
|
@@ -1821,6 +1845,18 @@ Object.defineProperty(exports, "TravelsFilled", {
|
|
|
1821
1845
|
return _TravelsFilled.default;
|
|
1822
1846
|
}
|
|
1823
1847
|
});
|
|
1848
|
+
Object.defineProperty(exports, "Twitter", {
|
|
1849
|
+
enumerable: true,
|
|
1850
|
+
get: function () {
|
|
1851
|
+
return _Twitter.default;
|
|
1852
|
+
}
|
|
1853
|
+
});
|
|
1854
|
+
Object.defineProperty(exports, "TwitterFilled", {
|
|
1855
|
+
enumerable: true,
|
|
1856
|
+
get: function () {
|
|
1857
|
+
return _TwitterFilled.default;
|
|
1858
|
+
}
|
|
1859
|
+
});
|
|
1824
1860
|
Object.defineProperty(exports, "Underline", {
|
|
1825
1861
|
enumerable: true,
|
|
1826
1862
|
get: function () {
|
|
@@ -2246,6 +2282,10 @@ var _ExtensionFilled = _interopRequireDefault(require("./ExtensionFilled"));
|
|
|
2246
2282
|
|
|
2247
2283
|
var _Extension = _interopRequireDefault(require("./Extension"));
|
|
2248
2284
|
|
|
2285
|
+
var _FacebookFilled = _interopRequireDefault(require("./FacebookFilled"));
|
|
2286
|
+
|
|
2287
|
+
var _Facebook = _interopRequireDefault(require("./Facebook"));
|
|
2288
|
+
|
|
2249
2289
|
var _FileCopyFilled = _interopRequireDefault(require("./FileCopyFilled"));
|
|
2250
2290
|
|
|
2251
2291
|
var _FileCopy = _interopRequireDefault(require("./FileCopy"));
|
|
@@ -2364,6 +2404,10 @@ var _LinkFilled = _interopRequireDefault(require("./LinkFilled"));
|
|
|
2364
2404
|
|
|
2365
2405
|
var _Link = _interopRequireDefault(require("./Link"));
|
|
2366
2406
|
|
|
2407
|
+
var _LinuxFilled = _interopRequireDefault(require("./LinuxFilled"));
|
|
2408
|
+
|
|
2409
|
+
var _Linux = _interopRequireDefault(require("./Linux"));
|
|
2410
|
+
|
|
2367
2411
|
var _ListFilled = _interopRequireDefault(require("./ListFilled"));
|
|
2368
2412
|
|
|
2369
2413
|
var _List = _interopRequireDefault(require("./List"));
|
|
@@ -2572,6 +2616,10 @@ var _TravelsFilled = _interopRequireDefault(require("./TravelsFilled"));
|
|
|
2572
2616
|
|
|
2573
2617
|
var _Travels = _interopRequireDefault(require("./Travels"));
|
|
2574
2618
|
|
|
2619
|
+
var _TwitterFilled = _interopRequireDefault(require("./TwitterFilled"));
|
|
2620
|
+
|
|
2621
|
+
var _Twitter = _interopRequireDefault(require("./Twitter"));
|
|
2622
|
+
|
|
2575
2623
|
var _UnderlineFilled = _interopRequireDefault(require("./UnderlineFilled"));
|
|
2576
2624
|
|
|
2577
2625
|
var _Underline = _interopRequireDefault(require("./Underline"));
|
|
@@ -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_14454_42049" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="6" y="2" width="13" height="20">
|
|
3
|
+
<path d="M18 2C18.2449 2.00003 18.4813 2.08996 18.6644 2.25272C18.8474 2.41547 18.9643 2.63975 18.993 2.883L19 3V7C19 7.24493 18.91 7.48134 18.7473 7.66437C18.5845 7.84741 18.3603 7.96434 18.117 7.993L18 8H15V9H18C18.1424 9.00005 18.2831 9.0305 18.4127 9.0893C18.5423 9.14811 18.6579 9.23391 18.7517 9.34098C18.8456 9.44804 18.9154 9.57391 18.9567 9.71015C18.998 9.84639 19.0096 9.98987 18.991 10.131L18.971 10.243L17.971 14.243C17.9214 14.4405 17.8126 14.6182 17.6593 14.7522C17.506 14.8862 17.3154 14.9702 17.113 14.993L17 15H15V21C15 21.2449 14.91 21.4813 14.7473 21.6644C14.5845 21.8474 14.3603 21.9643 14.117 21.993L14 22H10C9.75507 22 9.51866 21.91 9.33563 21.7473C9.15259 21.5845 9.03566 21.3603 9.007 21.117L9 21V15H7C6.75507 15 6.51866 14.91 6.33563 14.7473C6.15259 14.5845 6.03566 14.3603 6.007 14.117L6 14V10C6.00003 9.75507 6.08996 9.51866 6.25272 9.33563C6.41547 9.15259 6.63975 9.03566 6.883 9.007L7 9H9V8C8.99994 6.44762 9.60157 4.95564 10.6785 3.83753C11.7554 2.71942 13.2237 2.06221 14.775 2.004L15 2H18Z" fill="currentcolor"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_14454_42049)">
|
|
6
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
7
|
+
</g>
|
|
8
|
+
</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_14454_42042" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="6" y="2" width="13" height="20">
|
|
3
|
+
<path d="M7 10V14H10V21H14V14H17L18 10H14V8C14 7.73478 14.1054 7.48043 14.2929 7.29289C14.4804 7.10536 14.7348 7 15 7H18V3H15C13.6739 3 12.4021 3.52678 11.4645 4.46447C10.5268 5.40215 10 6.67392 10 8V10H7Z" stroke="currentcolor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_14454_42042)">
|
|
6
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0_14459_42110" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="2" y="3" width="20" height="19">
|
|
3
|
+
<path d="M6.73563 17.2815C6.68366 17.308 6.63364 17.3362 6.58579 17.3661C6.21071 17.6005 6 17.9185 6 18.25L7 20.75C7 20.8163 7.04214 20.8799 7.11716 20.9268C7.19217 20.9737 7.29391 21 7.4 21H9.6C9.70609 21 9.80783 20.9737 9.88284 20.9268C9.95786 20.8799 10 20.8163 10 20.75V19.7011M6.73563 17.2815C7.09101 17.1002 7.53724 17 8 17C8.53043 17 9.03914 17.1317 9.41421 17.3661C9.78929 17.6005 10 17.9185 10 18.25V19.5V19.7011M6.73563 17.2815C6.25724 16.5195 6 15.6585 6 14.7743C6 12.8895 6.9161 11.5528 7.81094 10.6966C8.71439 9.83222 10.0857 10.0857 10.9698 10.9698L12 12L13.0302 10.9698C13.9143 10.0857 15.2856 9.83222 16.1891 10.6966C17.0839 11.5528 18 12.8895 18 14.7743C18 15.6585 17.7428 16.5195 17.2644 17.2815M10 19.7011C10.6364 19.8971 11.3121 20 12 20C12.6879 20 13.3636 19.8971 14 19.7011M14 19.7011V20.75C14 20.8163 14.0421 20.8799 14.1172 20.9268C14.1922 20.9737 14.2939 21 14.4 21H16.6C16.7061 21 16.8078 20.9737 16.8828 20.9268C16.9579 20.8799 17 20.8163 17 20.75L18 18.25C18 17.9185 17.7893 17.6005 17.4142 17.3661C17.3664 17.3362 17.3163 17.308 17.2644 17.2815M14 19.7011V18.25C14 17.9185 14.2107 17.6005 14.5858 17.3661C14.9609 17.1317 15.4696 17 16 17C16.4628 17 16.909 17.1002 17.2644 17.2815M3.5 15L6.99995 11.5V9C6.99995 7.67392 7.52674 6.40215 8.46442 5.46447C9.4021 4.52678 10.6739 4 12 4C13.326 4 14.5978 4.52678 15.5355 5.46447C16.4732 6.40215 17 7.67392 17 9V11.5L20.5 15" stroke="currentcolor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49997 8.5C7.46141 10.3285 9.88332 11 12 11C14.1167 11 16.5386 10.3285 16.5 8.5C16.4595 6.57812 14.6881 4 12 4C9 4 7.54049 6.57812 7.49997 8.5ZM10.5 7C9.94772 7 9.5 7.44772 9.5 8C9.5 8.55228 9.94772 9 10.5 9H10.505C11.0573 9 11.505 8.55228 11.505 8C11.505 7.44772 11.0573 7 10.505 7H10.5ZM13.5 7C12.9477 7 12.5 7.44772 12.5 8C12.5 8.55228 12.9477 9 13.5 9H13.505C14.0573 9 14.505 8.55228 14.505 8C14.505 7.44772 14.0573 7 13.505 7H13.5Z" fill="black"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_14459_42110)">
|
|
7
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
8
|
+
</g>
|
|
9
|
+
</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_14459_42109" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="2" y="3" width="20" height="19">
|
|
3
|
+
<path d="M6.99995 11.5L3.5 15M6.99995 11.5V9C6.99995 7.67392 7.52674 6.40215 8.46442 5.46447C9.4021 4.52678 10.6739 4 12 4C13.326 4 14.5978 4.52678 15.5355 5.46447C16.4732 6.40215 17 7.67392 17 9V11.5M6.99995 11.5C6.99995 11.5 6 13.6739 6 15C6 15.8122 6.23714 16.604 6.67947 17.3112M17 11.5L20.5 15M17 11.5C17 11.5 18 13.6739 18 15C18 15.8122 17.7629 16.604 17.3205 17.3112M10.5 8H10.505M13.5 8H13.505M9.99995 11L12 12.5L14 11M14 19.7339V20V20.75C14 20.8163 14.0421 20.8799 14.1172 20.9268C14.1922 20.9737 14.2939 21 14.4 21L16.6 21C16.7061 21 16.8078 20.9737 16.8828 20.9268C16.9579 20.8799 17 20.8163 17 20.75L18 18.25C18 17.9185 17.7893 17.6005 17.4142 17.3661C17.3838 17.3471 17.3526 17.3288 17.3205 17.3112M14 19.7339V18.25C14 17.9185 14.2107 17.6005 14.5858 17.3661C14.9609 17.1317 15.4696 17 16 17C16.3541 17 16.6985 17.0587 17 17.1675C17.1135 17.2084 17.221 17.2565 17.3205 17.3112M14 19.7339C13.3936 19.9085 12.7305 20 12 20C11.3346 20 10.7251 19.9241 10.1635 19.7786L10 19.75M6.67947 17.3112C6.6474 17.3288 6.61616 17.3471 6.58579 17.3661C6.21071 17.6005 6 17.9185 6 18.25L7 20.75C7 20.8163 7.04214 20.8799 7.11716 20.9268C7.19217 20.9737 7.29391 21 7.4 21L9.6 21C9.70609 21 9.80783 20.9737 9.88284 20.9268C9.95786 20.8799 10 20.8163 10 20.75V20V19.75M6.67947 17.3112C6.77903 17.2565 6.88647 17.2084 7 17.1675C7.30145 17.0587 7.64589 17 8 17C8.53043 17 9.03914 17.1317 9.41421 17.3661C9.78929 17.6005 10 17.9185 10 18.25L10 19.5V19.75" stroke="currentcolor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_14459_42109)">
|
|
6
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
7
|
+
</g>
|
|
8
|
+
</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_14454_42050" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="3" width="24" height="19">
|
|
3
|
+
<path d="M14.0581 3.51243C12.2511 4.27943 11.0631 5.96543 11.0021 7.89243L11.0001 8.07443L10.7571 8.05143C8.36508 7.78243 6.25908 6.53943 4.81308 4.52043C4.71517 4.38359 4.58431 4.27368 4.43262 4.20086C4.28094 4.12804 4.11333 4.09467 3.94532 4.10385C3.77732 4.11302 3.61434 4.16444 3.47148 4.25334C3.32863 4.34224 3.21051 4.46575 3.12808 4.61243L3.03108 4.79843L2.98208 4.89743C2.26308 6.38243 1.79208 8.18743 1.96508 10.1004L1.99508 10.3734C2.27808 12.6364 3.49508 14.5884 5.77408 16.0524L5.94708 16.1594L5.86608 16.2024C4.55108 16.8654 3.34808 17.1544 2.03908 17.1024C0.98308 17.0624 0.59308 18.4744 1.52108 18.9804C5.11908 20.9414 8.98208 21.5464 12.3131 20.5804C16.3731 19.4004 19.4651 16.3574 20.6481 12.1474L20.7751 11.6524C21.0131 10.6594 21.1471 9.64643 21.1761 8.62843L21.1791 8.29643L21.5721 7.51743L22.0121 6.65543L22.2261 6.22143L22.3441 5.97443C22.6091 5.40943 22.8001 4.94143 22.9181 4.54443L22.9321 4.48843L22.9401 4.47043C23.1601 3.87743 22.7741 3.11243 21.9991 3.11243L21.8771 3.11943C21.7981 3.12914 21.7205 3.14827 21.6461 3.17643L21.5601 3.21443C21.2747 3.35302 20.9808 3.47326 20.6801 3.57443L20.3241 3.68943L20.0531 3.76943L19.2811 3.98343C17.9451 2.86543 16.1371 2.72943 14.2691 3.42943L14.0581 3.51243Z" fill="currentcolor"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_14454_42050)">
|
|
6
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
7
|
+
</g>
|
|
8
|
+
</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_14454_42043" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="1" y="3" width="22" height="19">
|
|
3
|
+
<path d="M22 4.1106C21 4.6006 20.02 4.7996 19 5.1006C17.879 3.8356 16.217 3.7656 14.62 4.3636C13.023 4.9616 11.977 6.4236 12 8.1006V9.1006C8.755 9.1836 5.865 7.7056 4 5.1006C4 5.1006 -0.182 12.5336 8 16.1006C6.128 17.3476 4.261 18.1886 2 18.1006C5.308 19.9036 8.913 20.5236 12.034 19.6176C15.614 18.5776 18.556 15.8946 19.685 11.8756C20.0218 10.6533 20.189 9.39046 20.182 8.1226C20.182 7.8736 21.692 5.3506 22 4.1096V4.1106Z" stroke="currentcolor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_14454_42043)">
|
|
6
|
+
<rect width="24" height="24" fill="currentcolor"/>
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|