@livechat/design-system-icons 1.0.0-alpha.39 → 1.0.0-alpha.47
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/Bold.tsx +28 -0
- package/lib/react/tabler/BoldFilled.tsx +21 -0
- package/lib/react/tabler/GridDots.tsx +35 -0
- package/lib/react/tabler/GridDotsFilled.tsx +35 -0
- package/lib/react/tabler/Italic.tsx +21 -0
- package/lib/react/tabler/ItalicFilled.tsx +21 -0
- package/lib/react/tabler/PlayerRecord.tsx +21 -0
- package/lib/react/tabler/PlayerRecordFilled.tsx +18 -0
- package/lib/react/tabler/Strikethrough.tsx +21 -0
- package/lib/react/tabler/StrikethroughFilled.tsx +21 -0
- package/lib/react/tabler/TextFormatting.tsx +21 -0
- package/lib/react/tabler/TextFormattingFilled.tsx +21 -0
- package/lib/react/tabler/Underline.tsx +21 -0
- package/lib/react/tabler/UnderlineFilled.tsx +21 -0
- package/lib/react/tabler/UsersGroup.tsx +35 -0
- package/lib/react/tabler/UsersGroupFilled.tsx +35 -0
- package/lib/react/tabler/index.ts +16 -0
- package/package.json +2 -2
- package/react/tabler/Bold.js +35 -0
- package/react/tabler/BoldFilled.js +28 -0
- package/react/tabler/GridDots.js +42 -0
- package/react/tabler/GridDotsFilled.js +42 -0
- package/react/tabler/Italic.js +28 -0
- package/react/tabler/ItalicFilled.js +28 -0
- package/react/tabler/PlayerRecord.js +28 -0
- package/react/tabler/PlayerRecordFilled.js +25 -0
- package/react/tabler/Strikethrough.js +28 -0
- package/react/tabler/StrikethroughFilled.js +28 -0
- package/react/tabler/TextFormatting.js +28 -0
- package/react/tabler/TextFormattingFilled.js +28 -0
- package/react/tabler/Underline.js +28 -0
- package/react/tabler/UnderlineFilled.js +28 -0
- package/react/tabler/UsersGroup.js +42 -0
- package/react/tabler/UsersGroupFilled.js +42 -0
- package/react/tabler/index.js +128 -0
- package/svg/tabler/bold-filled.svg +4 -0
- package/svg/tabler/bold.svg +11 -0
- package/svg/tabler/grid-dots-filled.svg +8 -0
- package/svg/tabler/grid-dots.svg +8 -0
- package/svg/tabler/italic-filled.svg +5 -0
- package/svg/tabler/italic.svg +5 -0
- package/svg/tabler/player-record-filled.svg +3 -0
- package/svg/tabler/player-record.svg +3 -0
- package/svg/tabler/strikethrough-filled.svg +4 -0
- package/svg/tabler/strikethrough.svg +4 -0
- package/svg/tabler/text formatting-filled.svg +5 -0
- package/svg/tabler/text formatting.svg +5 -0
- package/svg/tabler/underline-filled.svg +4 -0
- package/svg/tabler/underline.svg +4 -0
- package/svg/tabler/users-group-filled.svg +8 -0
- package/svg/tabler/users-group.svg +8 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgBold = (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
|
+
<g
|
|
12
|
+
clipPath="url(#bold_svg__a)"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
>
|
|
18
|
+
<path d="M7 5h6a3.5 3.5 0 1 1 0 7H7V5ZM13 12h1a3.5 3.5 0 1 1 0 7H7v-7" />
|
|
19
|
+
</g>
|
|
20
|
+
<defs>
|
|
21
|
+
<clipPath id="bold_svg__a">
|
|
22
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
23
|
+
</clipPath>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
export default SvgBold;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgBoldFilled = (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
|
+
<path
|
|
12
|
+
d="M7 5h6a3.5 3.5 0 1 1 0 7H7V5ZM13 12h1a3.5 3.5 0 1 1 0 7H7v-7"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgBoldFilled;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgGridDots = (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="grid-dots_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={3}
|
|
18
|
+
y={3}
|
|
19
|
+
width={18}
|
|
20
|
+
height={18}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M3.586 3.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828Zm7 0a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.586 10.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM12 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM5 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z"
|
|
26
|
+
fill="currentcolor"
|
|
27
|
+
/>
|
|
28
|
+
</mask>
|
|
29
|
+
<g mask="url(#grid-dots_svg__a)">
|
|
30
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default SvgGridDots;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgGridDotsFilled = (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="grid-dots-filled_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={3}
|
|
18
|
+
y={3}
|
|
19
|
+
width={18}
|
|
20
|
+
height={18}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M3.586 3.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828Zm7 0a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.586 10.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM12 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM5 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z"
|
|
26
|
+
fill="currentcolor"
|
|
27
|
+
/>
|
|
28
|
+
</mask>
|
|
29
|
+
<g mask="url(#grid-dots-filled_svg__a)">
|
|
30
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default SvgGridDotsFilled;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgItalic = (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
|
+
<path
|
|
12
|
+
d="M11 5h6M7 19h6M14 5l-4 14"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgItalic;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgItalicFilled = (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
|
+
<path
|
|
12
|
+
d="M11 5h6M7 19h6M14 5l-4 14"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgItalicFilled;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPlayerRecord = (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
|
+
<path
|
|
12
|
+
d="M5 12a7 7 0 1 0 14 0 7 7 0 0 0-14 0Z"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgPlayerRecord;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPlayerRecordFilled = (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
|
+
<path
|
|
12
|
+
d="M8 5.072a8 8 0 1 1-3.995 7.213L4 12l.005-.285A8 8 0 0 1 8 5.072Z"
|
|
13
|
+
fill="currentcolor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
export default SvgPlayerRecordFilled;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStrikethrough = (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
|
+
<path
|
|
12
|
+
d="M5 12h14M16 6.5c-.227-.44-.746-.828-1.473-1.101C13.799 5.126 12.908 4.986 12 5h-1a3.5 3.5 0 1 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5c-.908.014-1.8-.126-2.527-.399-.727-.273-1.246-.66-1.473-1.101"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgStrikethrough;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgStrikethroughFilled = (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
|
+
<path
|
|
12
|
+
d="M5 12h14M16 6.5c-.227-.44-.746-.828-1.473-1.101C13.799 5.126 12.908 4.986 12 5h-1a3.5 3.5 0 1 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5c-.908.014-1.8-.126-2.527-.399-.727-.273-1.246-.66-1.473-1.101"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgStrikethroughFilled;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextformatting = (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
|
+
<path
|
|
12
|
+
d="M9 15V8a3 3 0 1 1 6 0v7M9 11h6M5 19h14"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgTextformatting;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextformattingFilled = (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
|
+
<path
|
|
12
|
+
d="M9 15V8a3 3 0 1 1 6 0v7M9 11h6M5 19h14"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgTextformattingFilled;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgUnderline = (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
|
+
<path
|
|
12
|
+
d="M7 5v5a5 5 0 1 0 10 0V5M5 19h14"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgUnderline;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgUnderlineFilled = (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
|
+
<path
|
|
12
|
+
d="M7 5v5a5 5 0 1 0 10 0V5M5 19h14"
|
|
13
|
+
stroke="currentcolor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default SvgUnderlineFilled;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgUsersGroup = (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="users-group_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={2}
|
|
18
|
+
y={2}
|
|
19
|
+
width={20}
|
|
20
|
+
height={20}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M4.879 2.879A3 3 0 1 1 9.12 7.12 3 3 0 0 1 4.88 2.88ZM7 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm7.879-1.121A3 3 0 1 1 19.12 7.12 3 3 0 0 1 14.88 2.88ZM17 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-5 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-.707 2.293a1 1 0 1 1 1.414 1.414 1 1 0 0 1-1.414-1.414Zm-2 7A1 1 0 0 1 10 19h4a1 1 0 0 1 1 1v1a1 1 0 1 0 2 0v-1a3 3 0 0 0-3-3h-4a3 3 0 0 0-3 3v1a1 1 0 1 0 2 0v-1a1 1 0 0 1 .293-.707ZM17 9a1 1 0 1 0 0 2h2a1 1 0 0 1 1 1v1a1 1 0 1 0 2 0v-1a3 3 0 0 0-3-3h-2ZM4.293 11.293A1 1 0 0 1 5 11h2a1 1 0 1 0 0-2H5a3 3 0 0 0-3 3v1a1 1 0 1 0 2 0v-1a1 1 0 0 1 .293-.707Z"
|
|
26
|
+
fill="currentcolor"
|
|
27
|
+
/>
|
|
28
|
+
</mask>
|
|
29
|
+
<g mask="url(#users-group_svg__a)">
|
|
30
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default SvgUsersGroup;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgUsersGroupFilled = (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="users-group-filled_svg__a"
|
|
13
|
+
style={{
|
|
14
|
+
maskType: 'alpha',
|
|
15
|
+
}}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
x={2}
|
|
18
|
+
y={2}
|
|
19
|
+
width={20}
|
|
20
|
+
height={20}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M4.879 2.879A3 3 0 1 1 9.12 7.12 3 3 0 0 1 4.88 2.88Zm10 0A3 3 0 1 1 19.12 7.12 3 3 0 0 1 14.88 2.88ZM8 9.749c0 .163-.054.32-.145.454A4.976 4.976 0 0 0 7 13c0 .52-.386 1-.907 1H3a1 1 0 0 1-1-1v-1a3 3 0 0 1 3-3h2.25a.75.75 0 0 1 .75.75Zm8 0c0 .163.054.32.145.454.54.798.855 1.76.855 2.797 0 .52.386 1 .907 1H21a1 1 0 0 0 1-1v-1a3 3 0 0 0-3-3h-2.25a.75.75 0 0 0-.75.75ZM8 22a1 1 0 0 1-1-1v-1a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v1a1 1 0 0 1-1 1H8Zm1.879-11.121a3 3 0 1 1 4.242 4.242A3 3 0 0 1 9.88 10.88Z"
|
|
26
|
+
fill="currentcolor"
|
|
27
|
+
/>
|
|
28
|
+
</mask>
|
|
29
|
+
<g mask="url(#users-group-filled_svg__a)">
|
|
30
|
+
<path fill="currentcolor" d="M0 0h24v24H0z" />
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default SvgUsersGroupFilled;
|
|
@@ -50,6 +50,8 @@ export { default as AutomationFilled } from './AutomationFilled';
|
|
|
50
50
|
export { default as Automation } from './Automation';
|
|
51
51
|
export { default as BlockFilled } from './BlockFilled';
|
|
52
52
|
export { default as Block } from './Block';
|
|
53
|
+
export { default as BoldFilled } from './BoldFilled';
|
|
54
|
+
export { default as Bold } from './Bold';
|
|
53
55
|
export { default as BotFilled } from './BotFilled';
|
|
54
56
|
export { default as Bot } from './Bot';
|
|
55
57
|
export { default as BugReportFilled } from './BugReportFilled';
|
|
@@ -160,6 +162,8 @@ export { default as GreetingPlainTextFilled } from './GreetingPlainTextFilled';
|
|
|
160
162
|
export { default as GreetingPlainText } from './GreetingPlainText';
|
|
161
163
|
export { default as GreetingQuickReplyFilled } from './GreetingQuickReplyFilled';
|
|
162
164
|
export { default as GreetingQuickReply } from './GreetingQuickReply';
|
|
165
|
+
export { default as GridDotsFilled } from './GridDotsFilled';
|
|
166
|
+
export { default as GridDots } from './GridDots';
|
|
163
167
|
export { default as GroupFilled } from './GroupFilled';
|
|
164
168
|
export { default as Group } from './Group';
|
|
165
169
|
export { default as HandWaveFilled } from './HandWaveFilled';
|
|
@@ -176,6 +180,8 @@ export { default as ImageFilled } from './ImageFilled';
|
|
|
176
180
|
export { default as Image } from './Image';
|
|
177
181
|
export { default as InfoFilled } from './InfoFilled';
|
|
178
182
|
export { default as Info } from './Info';
|
|
183
|
+
export { default as ItalicFilled } from './ItalicFilled';
|
|
184
|
+
export { default as Italic } from './Italic';
|
|
179
185
|
export { default as KeyboardFilled } from './KeyboardFilled';
|
|
180
186
|
export { default as Keyboard } from './Keyboard';
|
|
181
187
|
export { default as LinkFilled } from './LinkFilled';
|
|
@@ -218,6 +224,8 @@ export { default as PlayArrowFilled } from './PlayArrowFilled';
|
|
|
218
224
|
export { default as PlayArrow } from './PlayArrow';
|
|
219
225
|
export { default as PlayCircleFilled } from './PlayCircleFilled';
|
|
220
226
|
export { default as PlayCircle } from './PlayCircle';
|
|
227
|
+
export { default as PlayerRecordFilled } from './PlayerRecordFilled';
|
|
228
|
+
export { default as PlayerRecord } from './PlayerRecord';
|
|
221
229
|
export { default as PositionFilled } from './PositionFilled';
|
|
222
230
|
export { default as Position } from './Position';
|
|
223
231
|
export { default as PowerSettingsFilled } from './PowerSettingsFilled';
|
|
@@ -246,12 +254,16 @@ export { default as SoundOffFilled } from './SoundOffFilled';
|
|
|
246
254
|
export { default as SoundOff } from './SoundOff';
|
|
247
255
|
export { default as SoundOnFilled } from './SoundOnFilled';
|
|
248
256
|
export { default as SoundOn } from './SoundOn';
|
|
257
|
+
export { default as StrikethroughFilled } from './StrikethroughFilled';
|
|
258
|
+
export { default as Strikethrough } from './Strikethrough';
|
|
249
259
|
export { default as SymbolsFilled } from './SymbolsFilled';
|
|
250
260
|
export { default as Symbols } from './Symbols';
|
|
251
261
|
export { default as TableFilled } from './TableFilled';
|
|
252
262
|
export { default as Table } from './Table';
|
|
253
263
|
export { default as TagFilled } from './TagFilled';
|
|
254
264
|
export { default as Tag } from './Tag';
|
|
265
|
+
export { default as TextFormattingFilled } from './TextFormattingFilled';
|
|
266
|
+
export { default as TextFormatting } from './TextFormatting';
|
|
255
267
|
export { default as TextBlockFilled } from './TextBlockFilled';
|
|
256
268
|
export { default as TextBlock } from './TextBlock';
|
|
257
269
|
export { default as TextFieldsFilled } from './TextFieldsFilled';
|
|
@@ -276,8 +288,12 @@ export { default as TrafficFilled } from './TrafficFilled';
|
|
|
276
288
|
export { default as Traffic } from './Traffic';
|
|
277
289
|
export { default as TravelsFilled } from './TravelsFilled';
|
|
278
290
|
export { default as Travels } from './Travels';
|
|
291
|
+
export { default as UnderlineFilled } from './UnderlineFilled';
|
|
292
|
+
export { default as Underline } from './Underline';
|
|
279
293
|
export { default as UndoFilled } from './UndoFilled';
|
|
280
294
|
export { default as Undo } from './Undo';
|
|
295
|
+
export { default as UsersGroupFilled } from './UsersGroupFilled';
|
|
296
|
+
export { default as UsersGroup } from './UsersGroup';
|
|
281
297
|
export { default as VerifiedUserFilled } from './VerifiedUserFilled';
|
|
282
298
|
export { default as VerifiedUser } from './VerifiedUser';
|
|
283
299
|
export { default as VideoFilled } from './VideoFilled';
|
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.47",
|
|
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": "7eb1252817120ed63f5e9f5395063835ada6ef89"
|
|
40
40
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 SvgBold = 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("g", {
|
|
20
|
+
clipPath: "url(#bold_svg__a)",
|
|
21
|
+
stroke: "currentcolor",
|
|
22
|
+
strokeWidth: 2,
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round"
|
|
25
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M7 5h6a3.5 3.5 0 1 1 0 7H7V5ZM13 12h1a3.5 3.5 0 1 1 0 7H7v-7"
|
|
27
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
28
|
+
id: "bold_svg__a"
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fill: "#fff",
|
|
31
|
+
d: "M0 0h24v24H0z"
|
|
32
|
+
}))));
|
|
33
|
+
|
|
34
|
+
var _default = SvgBold;
|
|
35
|
+
exports.default = _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
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 SvgBoldFilled = 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("path", {
|
|
20
|
+
d: "M7 5h6a3.5 3.5 0 1 1 0 7H7V5ZM13 12h1a3.5 3.5 0 1 1 0 7H7v-7",
|
|
21
|
+
stroke: "currentcolor",
|
|
22
|
+
strokeWidth: 2,
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round"
|
|
25
|
+
}));
|
|
26
|
+
|
|
27
|
+
var _default = SvgBoldFilled;
|
|
28
|
+
exports.default = _default;
|
|
@@ -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 SvgGridDots = 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: "grid-dots_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 3,
|
|
26
|
+
y: 3,
|
|
27
|
+
width: 18,
|
|
28
|
+
height: 18
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M3.586 3.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828Zm7 0a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.586 10.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM12 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM5 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z",
|
|
33
|
+
fill: "currentcolor"
|
|
34
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
35
|
+
mask: "url(#grid-dots_svg__a)"
|
|
36
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: "currentcolor",
|
|
38
|
+
d: "M0 0h24v24H0z"
|
|
39
|
+
})));
|
|
40
|
+
|
|
41
|
+
var _default = SvgGridDots;
|
|
42
|
+
exports.default = _default;
|
|
@@ -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 SvgGridDotsFilled = 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: "grid-dots-filled_svg__a",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: 'alpha'
|
|
23
|
+
},
|
|
24
|
+
maskUnits: "userSpaceOnUse",
|
|
25
|
+
x: 3,
|
|
26
|
+
y: 3,
|
|
27
|
+
width: 18,
|
|
28
|
+
height: 18
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M3.586 3.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828Zm7 0a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.586 10.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM12 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM5 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.586.586a2 2 0 1 1 2.828 2.828 2 2 0 0 1-2.828-2.828ZM19 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z",
|
|
33
|
+
fill: "currentcolor"
|
|
34
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
35
|
+
mask: "url(#grid-dots-filled_svg__a)"
|
|
36
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: "currentcolor",
|
|
38
|
+
d: "M0 0h24v24H0z"
|
|
39
|
+
})));
|
|
40
|
+
|
|
41
|
+
var _default = SvgGridDotsFilled;
|
|
42
|
+
exports.default = _default;
|