@livechat/design-system-icons 1.0.0-alpha.48 → 1.0.0-alpha.52

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.
Files changed (42) hide show
  1. package/lib/react/tabler/FiletypeExe.tsx +35 -0
  2. package/lib/react/tabler/FiletypeHtml.tsx +35 -0
  3. package/lib/react/tabler/FiletypeJpg.tsx +35 -0
  4. package/lib/react/tabler/FiletypeMp3.tsx +35 -0
  5. package/lib/react/tabler/FiletypeOther.tsx +36 -0
  6. package/lib/react/tabler/FiletypePdf.tsx +35 -0
  7. package/lib/react/tabler/FiletypePpt.tsx +35 -0
  8. package/lib/react/tabler/FiletypeTxt.tsx +35 -0
  9. package/lib/react/tabler/FiletypeVideo.tsx +36 -0
  10. package/lib/react/tabler/FiletypeXls.tsx +35 -0
  11. package/lib/react/tabler/FiletypeZip.tsx +35 -0
  12. package/lib/react/tabler/Logout.tsx +35 -0
  13. package/lib/react/tabler/LogoutFilled.tsx +35 -0
  14. package/lib/react/tabler/index.ts +13 -0
  15. package/package.json +2 -2
  16. package/react/tabler/FiletypeExe.js +42 -0
  17. package/react/tabler/FiletypeHtml.js +42 -0
  18. package/react/tabler/FiletypeJpg.js +42 -0
  19. package/react/tabler/FiletypeMp3.js +42 -0
  20. package/react/tabler/FiletypeOther.js +43 -0
  21. package/react/tabler/FiletypePdf.js +42 -0
  22. package/react/tabler/FiletypePpt.js +42 -0
  23. package/react/tabler/FiletypeTxt.js +42 -0
  24. package/react/tabler/FiletypeVideo.js +43 -0
  25. package/react/tabler/FiletypeXls.js +42 -0
  26. package/react/tabler/FiletypeZip.js +42 -0
  27. package/react/tabler/Logout.js +42 -0
  28. package/react/tabler/LogoutFilled.js +42 -0
  29. package/react/tabler/index.js +104 -0
  30. package/svg/tabler/filetype-exe.svg +8 -0
  31. package/svg/tabler/filetype-html.svg +8 -0
  32. package/svg/tabler/filetype-jpg.svg +8 -0
  33. package/svg/tabler/filetype-mp3.svg +8 -0
  34. package/svg/tabler/filetype-other.svg +8 -0
  35. package/svg/tabler/filetype-pdf.svg +8 -0
  36. package/svg/tabler/filetype-ppt.svg +8 -0
  37. package/svg/tabler/filetype-txt.svg +8 -0
  38. package/svg/tabler/filetype-video.svg +8 -0
  39. package/svg/tabler/filetype-xls.svg +8 -0
  40. package/svg/tabler/filetype-zip.svg +8 -0
  41. package/svg/tabler/logout-filled.svg +8 -0
  42. package/svg/tabler/logout.svg +8 -0
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeExe = (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="filetype-exe_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M6.293 4.293A1 1 0 0 1 7 4h6v3a2 2 0 0 0 2 2h3v10a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707ZM16.586 7 15 5.414V7h1.586ZM7 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7Zm6 8.5a1 1 0 1 0-2 0v.672c-.33.116-.637.29-.91.514l-.575-.346a1 1 0 0 0-1.03 1.714l.576.346a3 3 0 0 0-.01 1.148l-.583.336a1 1 0 1 0 1 1.732l.582-.336c.282.241.604.426.95.548v.672a1 1 0 1 0 2 0v-.672a3 3 0 0 0 .91-.514l.574.346a1 1 0 1 0 1.031-1.714l-.575-.346a3.004 3.004 0 0 0 .01-1.148l.58-.336a1 1 0 1 0-1-1.732l-.58.336a2.998 2.998 0 0 0-.95-.548V10.5Zm-.14 2.991A.996.996 0 0 0 12 13a1 1 0 1 0 .871.509l-.005-.009-.005-.009Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-exe_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeExe;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeHtml = (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="filetype-html_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M7 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V9h-3a2 2 0 0 1-2-2V4H7Zm8 1.414L16.586 7H15V5.414ZM4.879 2.88A3 3 0 0 1 7 2h7a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v11a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5a3 3 0 0 1 .879-2.121Zm5.568 9.227a1 1 0 0 1 .447 1.341L10.118 15l.776 1.553a1 1 0 1 1-1.788.894l-1-2a1 1 0 0 1 0-.894l1-2a1 1 0 0 1 1.341-.447Zm4.447.447a1 1 0 1 0-1.788.894L13.882 15l-.776 1.553a1 1 0 1 0 1.788.894l1-2a1 1 0 0 0 0-.894l-1-2Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-html_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeHtml;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeJpg = (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="filetype-jpg_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M7 4a1 1 0 0 0-1 1v8.614l.743-.732.008-.007C7.314 12.333 8.013 12 8.778 12c.765 0 1.464.333 2.027.875l.013.013 1.96 1.96.182-.182.013-.013c.563-.542 1.262-.875 2.027-.875.765 0 1.464.333 2.027.875l.014.013.959.96V9h-3a2 2 0 0 1-2-2V4H7ZM4 16v3a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7a3 3 0 0 0-3 3v11Zm14 3v-.546l-2.366-2.366c-.26-.248-.48-.31-.634-.31-.154 0-.374.062-.634.31l-.174.174 1.015 1.015a1 1 0 0 1-1.414 1.414l-1.719-1.718-.003-.004-.004-.003-2.655-2.656c-.26-.248-.48-.31-.634-.31-.155 0-.376.063-.637.313L6 16.419V19a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1ZM15 5.414 16.586 7H15V5.414ZM9.5 8a1 1 0 0 0 0 2h.01a1 1 0 1 0 0-2H9.5Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-jpg_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeJpg;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeMp3 = (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="filetype-mp3_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M7 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V9h-3a2 2 0 0 1-2-2V4H7Zm8 1.414L16.586 7H15V5.414ZM4.879 2.88A3 3 0 0 1 7 2h7a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v11a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5a3 3 0 0 1 .879-2.121Zm4.707 11.707A2 2 0 0 1 11 14v-3a1 1 0 0 1 1.447-.894l2 1a1 1 0 1 1-.894 1.788L13 12.618V16a2 2 0 1 1-3.414-1.414Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-mp3_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeMp3;
@@ -0,0 +1,36 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeOther = (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="filetype-other_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ d="M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8m-5-5 5 5m-5-5v4a1 1 0 0 0 1 1h4"
24
+ stroke="currentcolor"
25
+ strokeWidth={2}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </mask>
30
+ <g mask="url(#filetype-other_svg__a)">
31
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
32
+ </g>
33
+ </svg>
34
+ );
35
+
36
+ export default SvgFiletypeOther;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypePdf = (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="filetype-pdf_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M6.293 4.293A1 1 0 0 1 7 4h6v3a2 2 0 0 0 2 2h3v10a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707ZM16.586 7 15 5.414V7h1.586ZM7 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7Zm1.713 7.496a2 2 0 1 1 3.872.859l2.318 2.762a2 2 0 1 1-1.105 3.345l-2.781.665a2 2 0 1 1-2.498-2.485l.819-3.512a1.997 1.997 0 0 1-.625-1.634Zm2.512 2.35 2.146 2.557a1.906 1.906 0 0 0-.038.114l-2.782.665a1.997 1.997 0 0 0-.085-.085l.759-3.252Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-pdf_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypePdf;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypePpt = (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="filetype-ppt_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M7 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V9h-3a2 2 0 0 1-2-2V4H7Zm8 1.414L16.586 7H15V5.414ZM4.879 2.88A3 3 0 0 1 7 2h7a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v11a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5a3 3 0 0 1 .879-2.121ZM12 9a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm2.828 4H13v-1.828A2.999 2.999 0 0 1 14.828 13Zm0 2A2.999 2.999 0 1 1 11 11.172V14a1 1 0 0 0 1 1h2.828Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-ppt_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypePpt;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeTxt = (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="filetype-txt_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M6.293 4.293A1 1 0 0 1 7 4h6v3a2 2 0 0 0 2 2h3v10a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707ZM16.586 7 15 5.414V7h1.586ZM7 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7Zm2 6a1 1 0 0 0 0 2h1a1 1 0 1 0 0-2H9Zm-1 5a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H9Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-txt_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeTxt;
@@ -0,0 +1,36 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeVideo = (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="filetype-video_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ d="M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8m-5-5 5 5m-5-5v4a1 1 0 0 0 1 1h4m-9 2.333v5.334a.333.333 0 0 0 .508.284l4.333-2.667a.333.333 0 0 0 0-.568l-4.333-2.667a.333.333 0 0 0-.508.284Z"
24
+ stroke="currentcolor"
25
+ strokeWidth={2}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ </mask>
30
+ <g mask="url(#filetype-video_svg__a)">
31
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
32
+ </g>
33
+ </svg>
34
+ );
35
+
36
+ export default SvgFiletypeVideo;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeXls = (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="filetype-xls_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={20}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M6.293 4.293A1 1 0 0 1 7 4h6v3a2 2 0 0 0 2 2h3v10a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707ZM16.586 7 15 5.414V7h1.586ZM7 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7Zm3 10a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0v-5Zm2 3a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm4-1a1 1 0 1 0-2 0v3a1 1 0 1 0 2 0v-3Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-xls_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeXls;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgFiletypeZip = (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="filetype-zip_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={4}
18
+ y={2}
19
+ width={16}
20
+ height={21}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M7 4a1 1 0 0 0-1 1v14.002a1 1 0 0 0 .5.867 1 1 0 1 1-1 1.732A3 3 0 0 1 4 18.999L5 19H4V5a3 3 0 0 1 3-3h7a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v11a3 3 0 0 1-3 3h-1a1 1 0 1 1 0-2h1a1 1 0 0 0 1-1V8.414L13.586 4H7Zm4 14a1 1 0 0 0-1 1v2h2v-2a1 1 0 0 0-1-1Zm-2.121-1.121A3 3 0 0 1 14 19v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-2a3 3 0 0 1 .879-2.121ZM12 6a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1ZM9 9a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm3 1a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Zm-3 3a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2h-1a1 1 0 0 1-1-1Zm3 1a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2h-1Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#filetype-zip_svg__a)">
30
+ <path fill="currentcolor" d="M0 0h24v24H0z" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgFiletypeZip;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgLogout = (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="logout_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={2}
18
+ y={3}
19
+ width={20}
20
+ height={18}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M5 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h7a3 3 0 0 0 3-3v-2a1 1 0 1 0-2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2a1 1 0 1 0 2 0V6a3 3 0 0 0-3-3H5Zm13.707 5.293a1 1 0 1 0-1.414 1.414L18.586 11H7a1 1 0 1 0 0 2h11.586l-1.293 1.293a1 1 0 0 0 1.414 1.414l3-3a1 1 0 0 0 0-1.414l-3-3Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#logout_svg__a)">
30
+ <path d="M0 0h24v24H0V0Z" fill="currentcolor" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgLogout;
@@ -0,0 +1,35 @@
1
+ import * as React from 'react';
2
+ import { SVGProps } from 'react';
3
+
4
+ const SvgLogoutFilled = (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="logout-filled_svg__a"
13
+ style={{
14
+ maskType: 'alpha',
15
+ }}
16
+ maskUnits="userSpaceOnUse"
17
+ x={2}
18
+ y={3}
19
+ width={20}
20
+ height={18}
21
+ >
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M5 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h7a3 3 0 0 0 3-3v-2a1 1 0 1 0-2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2a1 1 0 1 0 2 0V6a3 3 0 0 0-3-3H5Zm13.707 5.293a1 1 0 1 0-1.414 1.414L18.586 11H7a1 1 0 1 0 0 2h11.586l-1.293 1.293a1 1 0 0 0 1.414 1.414l3-3a1 1 0 0 0 0-1.414l-3-3Z"
26
+ fill="currentcolor"
27
+ />
28
+ </mask>
29
+ <g mask="url(#logout-filled_svg__a)">
30
+ <path d="M.5 0h24v24H.5V0Z" fill="currentcolor" />
31
+ </g>
32
+ </svg>
33
+ );
34
+
35
+ export default SvgLogoutFilled;
@@ -144,6 +144,17 @@ export { default as FileDownloadFilled } from './FileDownloadFilled';
144
144
  export { default as FileDownload } from './FileDownload';
145
145
  export { default as FileUploadFilled } from './FileUploadFilled';
146
146
  export { default as FileUpload } from './FileUpload';
147
+ export { default as FiletypeExe } from './FiletypeExe';
148
+ export { default as FiletypeHtml } from './FiletypeHtml';
149
+ export { default as FiletypeJpg } from './FiletypeJpg';
150
+ export { default as FiletypeMp3 } from './FiletypeMp3';
151
+ export { default as FiletypeOther } from './FiletypeOther';
152
+ export { default as FiletypePdf } from './FiletypePdf';
153
+ export { default as FiletypePpt } from './FiletypePpt';
154
+ export { default as FiletypeTxt } from './FiletypeTxt';
155
+ export { default as FiletypeVideo } from './FiletypeVideo';
156
+ export { default as FiletypeXls } from './FiletypeXls';
157
+ export { default as FiletypeZip } from './FiletypeZip';
147
158
  export { default as FilterFilled } from './FilterFilled';
148
159
  export { default as Filter } from './Filter';
149
160
  export { default as FlagsFilled } from './FlagsFilled';
@@ -192,6 +203,8 @@ export { default as LockBlackFilled } from './LockBlackFilled';
192
203
  export { default as LockBlack } from './LockBlack';
193
204
  export { default as LockOpenFilled } from './LockOpenFilled';
194
205
  export { default as LockOpen } from './LockOpen';
206
+ export { default as LogoutFilled } from './LogoutFilled';
207
+ export { default as Logout } from './Logout';
195
208
  export { default as MoreHorizFilled } from './MoreHorizFilled';
196
209
  export { default as MoreHoriz } from './MoreHoriz';
197
210
  export { default as MoveToFilled } from './MoveToFilled';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livechat/design-system-icons",
3
- "version": "1.0.0-alpha.48",
3
+ "version": "1.0.0-alpha.52",
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": "2778f5d8b34fbbcfa4df77c810307c654c9dec1d"
39
+ "gitHead": "fa990e60ae2dd212ae84ae721d1edca55ca61c10"
40
40
  }
@@ -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 SvgFiletypeExe = 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: "filetype-exe_svg__a",
21
+ style: {
22
+ maskType: 'alpha'
23
+ },
24
+ maskUnits: "userSpaceOnUse",
25
+ x: 4,
26
+ y: 2,
27
+ width: 16,
28
+ height: 20
29
+ }, /*#__PURE__*/React.createElement("path", {
30
+ fillRule: "evenodd",
31
+ clipRule: "evenodd",
32
+ d: "M6.293 4.293A1 1 0 0 1 7 4h6v3a2 2 0 0 0 2 2h3v10a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707ZM16.586 7 15 5.414V7h1.586ZM7 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7Zm6 8.5a1 1 0 1 0-2 0v.672c-.33.116-.637.29-.91.514l-.575-.346a1 1 0 0 0-1.03 1.714l.576.346a3 3 0 0 0-.01 1.148l-.583.336a1 1 0 1 0 1 1.732l.582-.336c.282.241.604.426.95.548v.672a1 1 0 1 0 2 0v-.672a3 3 0 0 0 .91-.514l.574.346a1 1 0 1 0 1.031-1.714l-.575-.346a3.004 3.004 0 0 0 .01-1.148l.58-.336a1 1 0 1 0-1-1.732l-.58.336a2.998 2.998 0 0 0-.95-.548V10.5Zm-.14 2.991A.996.996 0 0 0 12 13a1 1 0 1 0 .871.509l-.005-.009-.005-.009Z",
33
+ fill: "currentcolor"
34
+ })), /*#__PURE__*/React.createElement("g", {
35
+ mask: "url(#filetype-exe_svg__a)"
36
+ }, /*#__PURE__*/React.createElement("path", {
37
+ fill: "currentcolor",
38
+ d: "M0 0h24v24H0z"
39
+ })));
40
+
41
+ var _default = SvgFiletypeExe;
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 SvgFiletypeHtml = 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: "filetype-html_svg__a",
21
+ style: {
22
+ maskType: 'alpha'
23
+ },
24
+ maskUnits: "userSpaceOnUse",
25
+ x: 4,
26
+ y: 2,
27
+ width: 16,
28
+ height: 20
29
+ }, /*#__PURE__*/React.createElement("path", {
30
+ fillRule: "evenodd",
31
+ clipRule: "evenodd",
32
+ d: "M7 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V9h-3a2 2 0 0 1-2-2V4H7Zm8 1.414L16.586 7H15V5.414ZM4.879 2.88A3 3 0 0 1 7 2h7a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v11a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5a3 3 0 0 1 .879-2.121Zm5.568 9.227a1 1 0 0 1 .447 1.341L10.118 15l.776 1.553a1 1 0 1 1-1.788.894l-1-2a1 1 0 0 1 0-.894l1-2a1 1 0 0 1 1.341-.447Zm4.447.447a1 1 0 1 0-1.788.894L13.882 15l-.776 1.553a1 1 0 1 0 1.788.894l1-2a1 1 0 0 0 0-.894l-1-2Z",
33
+ fill: "currentcolor"
34
+ })), /*#__PURE__*/React.createElement("g", {
35
+ mask: "url(#filetype-html_svg__a)"
36
+ }, /*#__PURE__*/React.createElement("path", {
37
+ fill: "currentcolor",
38
+ d: "M0 0h24v24H0z"
39
+ })));
40
+
41
+ var _default = SvgFiletypeHtml;
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 SvgFiletypeJpg = 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: "filetype-jpg_svg__a",
21
+ style: {
22
+ maskType: 'alpha'
23
+ },
24
+ maskUnits: "userSpaceOnUse",
25
+ x: 4,
26
+ y: 2,
27
+ width: 16,
28
+ height: 20
29
+ }, /*#__PURE__*/React.createElement("path", {
30
+ fillRule: "evenodd",
31
+ clipRule: "evenodd",
32
+ d: "M7 4a1 1 0 0 0-1 1v8.614l.743-.732.008-.007C7.314 12.333 8.013 12 8.778 12c.765 0 1.464.333 2.027.875l.013.013 1.96 1.96.182-.182.013-.013c.563-.542 1.262-.875 2.027-.875.765 0 1.464.333 2.027.875l.014.013.959.96V9h-3a2 2 0 0 1-2-2V4H7ZM4 16v3a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H7a3 3 0 0 0-3 3v11Zm14 3v-.546l-2.366-2.366c-.26-.248-.48-.31-.634-.31-.154 0-.374.062-.634.31l-.174.174 1.015 1.015a1 1 0 0 1-1.414 1.414l-1.719-1.718-.003-.004-.004-.003-2.655-2.656c-.26-.248-.48-.31-.634-.31-.155 0-.376.063-.637.313L6 16.419V19a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1ZM15 5.414 16.586 7H15V5.414ZM9.5 8a1 1 0 0 0 0 2h.01a1 1 0 1 0 0-2H9.5Z",
33
+ fill: "currentcolor"
34
+ })), /*#__PURE__*/React.createElement("g", {
35
+ mask: "url(#filetype-jpg_svg__a)"
36
+ }, /*#__PURE__*/React.createElement("path", {
37
+ fill: "currentcolor",
38
+ d: "M0 0h24v24H0z"
39
+ })));
40
+
41
+ var _default = SvgFiletypeJpg;
42
+ exports.default = _default;