@abqm-ds/icons 1.0.3 → 1.0.4

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 (69) hide show
  1. package/.turbo/turbo-build.log +10 -10
  2. package/CHANGELOG.md +6 -0
  3. package/README.md +133 -141
  4. package/package.json +1 -1
  5. package/scripts/move-icons.js +84 -84
  6. package/src/components/AwardFillIcon.tsx +23 -23
  7. package/src/components/BroadcastIcon.tsx +25 -25
  8. package/src/components/CaretDownIcon.tsx +18 -18
  9. package/src/components/CaretRightIcon.tsx +18 -18
  10. package/src/components/FacebookIcon.tsx +18 -18
  11. package/src/components/FilterIcon.tsx +18 -18
  12. package/src/components/HorseIcon.tsx +16 -16
  13. package/src/components/InstagramIcon.tsx +18 -18
  14. package/src/components/ListOlIcon.tsx +25 -25
  15. package/src/components/LogoSeqmIcon.tsx +79 -79
  16. package/src/components/LogoSeqmMobileIcon.tsx +35 -35
  17. package/src/components/MenuIcon.tsx +20 -20
  18. package/src/components/PencilSquareIcon.tsx +25 -25
  19. package/src/components/PersonCircleIcon.tsx +26 -26
  20. package/src/components/PlusIcon.tsx +18 -18
  21. package/src/components/PrinterIcon.tsx +18 -18
  22. package/src/components/SearchIcon.tsx +25 -25
  23. package/src/components/StarIcon.tsx +18 -18
  24. package/src/components/XIcon.tsx +18 -18
  25. package/src/components/YoutubeIcon.tsx +18 -18
  26. package/src/icons/AwardFill.svg +4 -4
  27. package/src/icons/Broadcast.svg +10 -10
  28. package/src/icons/CaretDown.svg +3 -3
  29. package/src/icons/CaretRight.svg +3 -3
  30. package/src/icons/ListOl.svg +4 -4
  31. package/src/icons/LogoSeqm.svg +44 -44
  32. package/src/icons/LogoSeqmMobile.svg +10 -10
  33. package/src/icons/Menu.svg +3 -3
  34. package/src/icons/PencilSquare.svg +4 -4
  35. package/src/icons/PersonCircle.svg +11 -11
  36. package/src/icons/Search.svg +10 -10
  37. package/src/icons/Star.svg +3 -3
  38. package/src/icons/X.svg +3 -3
  39. package/src/icons/{Facebook.svg → facebook.svg} +3 -3
  40. package/src/icons/{Filter.svg → filter.svg} +3 -3
  41. package/src/icons/{Horse.svg → horse.svg} +3 -3
  42. package/src/icons/{Instagram.svg → instagram.svg} +3 -3
  43. package/src/icons/{Plus.svg → plus.svg} +3 -3
  44. package/src/icons/{Printer.svg → printer.svg} +3 -3
  45. package/src/icons/{Youtube.svg → youtube.svg} +3 -3
  46. package/src/index.ts +30 -30
  47. package/tsconfig.json +20 -20
  48. package/tsup.config.ts +9 -9
  49. package/.turbo/turbo-clean.log +0 -4
  50. package/src/_temp/AwardFill.tsx +0 -24
  51. package/src/_temp/Broadcast.tsx +0 -26
  52. package/src/_temp/CaretDown.tsx +0 -19
  53. package/src/_temp/CaretRight.tsx +0 -19
  54. package/src/_temp/Facebook.tsx +0 -19
  55. package/src/_temp/Filter.tsx +0 -19
  56. package/src/_temp/Horse.tsx +0 -17
  57. package/src/_temp/Instagram.tsx +0 -19
  58. package/src/_temp/ListOl.tsx +0 -26
  59. package/src/_temp/LogoSeqm.tsx +0 -80
  60. package/src/_temp/LogoSeqmMobile.tsx +0 -36
  61. package/src/_temp/Menu.tsx +0 -21
  62. package/src/_temp/PencilSquare.tsx +0 -26
  63. package/src/_temp/PersonCircle.tsx +0 -27
  64. package/src/_temp/Plus.tsx +0 -19
  65. package/src/_temp/Printer.tsx +0 -19
  66. package/src/_temp/Search.tsx +0 -26
  67. package/src/_temp/Star.tsx +0 -19
  68. package/src/_temp/X.tsx +0 -19
  69. package/src/_temp/Youtube.tsx +0 -19
@@ -1,25 +1,25 @@
1
- import type { SVGProps } from 'react';
2
- const PencilSquareIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 16 16"
9
- {...props}
10
- >
11
- <path
12
- fill="#001007"
13
- fillOpacity={0.5}
14
- d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12z"
15
- />
16
- <path
17
- fill="#001007"
18
- fillOpacity={0.5}
19
- fillRule="evenodd"
20
- d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 1 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
21
- clipRule="evenodd"
22
- />
23
- </svg>
24
- );
25
- export default PencilSquareIcon;
1
+ import type { SVGProps } from 'react';
2
+ const PencilSquareIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 16 16"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#001007"
13
+ fillOpacity={0.5}
14
+ d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12z"
15
+ />
16
+ <path
17
+ fill="#001007"
18
+ fillOpacity={0.5}
19
+ fillRule="evenodd"
20
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 1 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
21
+ clipRule="evenodd"
22
+ />
23
+ </svg>
24
+ );
25
+ export default PencilSquareIcon;
@@ -1,26 +1,26 @@
1
- import type { SVGProps } from 'react';
2
- const PersonCircleIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 38 38"
9
- {...props}
10
- >
11
- <g fill="#002710" fillOpacity={0.25} clipPath="url(#PersonCircle_svg__a)">
12
- <path d="M26.031 14.313a7.03 7.03 0 1 1-14.061 0 7.03 7.03 0 0 1 14.061 0" />
13
- <path
14
- fillRule="evenodd"
15
- d="M.25 19a18.75 18.75 0 1 1 37.5 0 18.75 18.75 0 0 1-37.5 0M19 2.594A16.406 16.406 0 0 0 6.184 29.242c1.664-2.681 5.328-5.555 12.816-5.555s11.15 2.872 12.816 5.555A16.406 16.406 0 0 0 19 2.594"
16
- clipRule="evenodd"
17
- />
18
- </g>
19
- <defs>
20
- <clipPath id="PersonCircle_svg__a">
21
- <path fill="#fff" d="M.25.25h37.5v37.5H.25z" />
22
- </clipPath>
23
- </defs>
24
- </svg>
25
- );
26
- export default PersonCircleIcon;
1
+ import type { SVGProps } from 'react';
2
+ const PersonCircleIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 38 38"
9
+ {...props}
10
+ >
11
+ <g fill="#002710" fillOpacity={0.25} clipPath="url(#PersonCircle_svg__a)">
12
+ <path d="M26.031 14.313a7.03 7.03 0 1 1-14.061 0 7.03 7.03 0 0 1 14.061 0" />
13
+ <path
14
+ fillRule="evenodd"
15
+ d="M.25 19a18.75 18.75 0 1 1 37.5 0 18.75 18.75 0 0 1-37.5 0M19 2.594A16.406 16.406 0 0 0 6.184 29.242c1.664-2.681 5.328-5.555 12.816-5.555s11.15 2.872 12.816 5.555A16.406 16.406 0 0 0 19 2.594"
16
+ clipRule="evenodd"
17
+ />
18
+ </g>
19
+ <defs>
20
+ <clipPath id="PersonCircle_svg__a">
21
+ <path fill="#fff" d="M.25.25h37.5v37.5H.25z" />
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
25
+ );
26
+ export default PersonCircleIcon;
@@ -1,18 +1,18 @@
1
- import type { SVGProps } from 'react';
2
- const PlusIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 8 8"
9
- {...props}
10
- >
11
- <path
12
- fill="#001007"
13
- fillOpacity={0.5}
14
- d="M4 .5a.44.44 0 0 1 .438.438v2.625h2.625a.437.437 0 1 1 0 .874H4.438v2.625a.437.437 0 1 1-.875 0V4.438H.938a.437.437 0 1 1 0-.875h2.625V.938A.437.437 0 0 1 4 .5"
15
- />
16
- </svg>
17
- );
18
- export default PlusIcon;
1
+ import type { SVGProps } from 'react';
2
+ const PlusIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 8 8"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#001007"
13
+ fillOpacity={0.5}
14
+ d="M4 .5a.44.44 0 0 1 .438.438v2.625h2.625a.437.437 0 1 1 0 .874H4.438v2.625a.437.437 0 1 1-.875 0V4.438H.938a.437.437 0 1 1 0-.875h2.625V.938A.437.437 0 0 1 4 .5"
15
+ />
16
+ </svg>
17
+ );
18
+ export default PlusIcon;
@@ -1,18 +1,18 @@
1
- import type { SVGProps } from 'react';
2
- const PrinterIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 14 14"
9
- {...props}
10
- >
11
- <path
12
- fill="#001007"
13
- fillOpacity={0.5}
14
- d="M4.375.875a1.75 1.75 0 0 0-1.75 1.75v1.75H1.75A1.75 1.75 0 0 0 0 6.125V8.75a1.75 1.75 0 0 0 1.75 1.75h.875v.875a1.75 1.75 0 0 0 1.75 1.75h5.25a1.75 1.75 0 0 0 1.75-1.75V10.5h.875A1.75 1.75 0 0 0 14 8.75V6.125a1.75 1.75 0 0 0-1.75-1.75h-.875v-1.75a1.75 1.75 0 0 0-1.75-1.75zM3.5 2.625a.875.875 0 0 1 .875-.875h5.25a.875.875 0 0 1 .875.875v1.75h-7zM4.375 7a1.75 1.75 0 0 0-1.75 1.75v.875H1.75a.875.875 0 0 1-.875-.875V6.125a.875.875 0 0 1 .875-.875h10.5a.875.875 0 0 1 .875.875V8.75a.875.875 0 0 1-.875.875h-.875V8.75A1.75 1.75 0 0 0 9.625 7zM10.5 8.75v2.625a.875.875 0 0 1-.875.875h-5.25a.875.875 0 0 1-.875-.875V8.75a.875.875 0 0 1 .875-.875h5.25a.875.875 0 0 1 .875.875"
15
- />
16
- </svg>
17
- );
18
- export default PrinterIcon;
1
+ import type { SVGProps } from 'react';
2
+ const PrinterIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 14 14"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#001007"
13
+ fillOpacity={0.5}
14
+ d="M4.375.875a1.75 1.75 0 0 0-1.75 1.75v1.75H1.75A1.75 1.75 0 0 0 0 6.125V8.75a1.75 1.75 0 0 0 1.75 1.75h.875v.875a1.75 1.75 0 0 0 1.75 1.75h5.25a1.75 1.75 0 0 0 1.75-1.75V10.5h.875A1.75 1.75 0 0 0 14 8.75V6.125a1.75 1.75 0 0 0-1.75-1.75h-.875v-1.75a1.75 1.75 0 0 0-1.75-1.75zM3.5 2.625a.875.875 0 0 1 .875-.875h5.25a.875.875 0 0 1 .875.875v1.75h-7zM4.375 7a1.75 1.75 0 0 0-1.75 1.75v.875H1.75a.875.875 0 0 1-.875-.875V6.125a.875.875 0 0 1 .875-.875h10.5a.875.875 0 0 1 .875.875V8.75a.875.875 0 0 1-.875.875h-.875V8.75A1.75 1.75 0 0 0 9.625 7zM10.5 8.75v2.625a.875.875 0 0 1-.875.875h-5.25a.875.875 0 0 1-.875-.875V8.75a.875.875 0 0 1 .875-.875h5.25a.875.875 0 0 1 .875.875"
15
+ />
16
+ </svg>
17
+ );
18
+ export default PrinterIcon;
@@ -1,25 +1,25 @@
1
- import type { SVGProps } from 'react';
2
- const SearchIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 12 12"
9
- {...props}
10
- >
11
- <g clipPath="url(#Search_svg__a)">
12
- <path
13
- fill="#fff"
14
- fillOpacity={0.5}
15
- d="M8.807 7.758a4.875 4.875 0 1 0-1.048 1.048q.033.045.073.086l2.887 2.888a.75.75 0 0 0 1.061-1.06L8.893 7.831a1 1 0 0 0-.086-.075M9 4.875a4.125 4.125 0 1 1-8.25 0 4.125 4.125 0 0 1 8.25 0"
16
- />
17
- </g>
18
- <defs>
19
- <clipPath id="Search_svg__a">
20
- <path fill="#fff" d="M0 0h12v12H0z" />
21
- </clipPath>
22
- </defs>
23
- </svg>
24
- );
25
- export default SearchIcon;
1
+ import type { SVGProps } from 'react';
2
+ const SearchIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 12 12"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#Search_svg__a)">
12
+ <path
13
+ fill="#fff"
14
+ fillOpacity={0.5}
15
+ d="M8.807 7.758a4.875 4.875 0 1 0-1.048 1.048q.033.045.073.086l2.887 2.888a.75.75 0 0 0 1.061-1.06L8.893 7.831a1 1 0 0 0-.086-.075M9 4.875a4.125 4.125 0 1 1-8.25 0 4.125 4.125 0 0 1 8.25 0"
16
+ />
17
+ </g>
18
+ <defs>
19
+ <clipPath id="Search_svg__a">
20
+ <path fill="#fff" d="M0 0h12v12H0z" />
21
+ </clipPath>
22
+ </defs>
23
+ </svg>
24
+ );
25
+ export default SearchIcon;
@@ -1,18 +1,18 @@
1
- import type { SVGProps } from 'react';
2
- const StarIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 16 16"
9
- {...props}
10
- >
11
- <path
12
- fill="#001007"
13
- fillOpacity={0.5}
14
- d="M2.866 14.85c-.078.444.36.791.746.593l4.39-2.256 4.389 2.256c.386.198.824-.149.746-.592l-.83-4.73 3.522-3.356c.33-.314.16-.888-.282-.95l-4.898-.696L8.465.792a.513.513 0 0 0-.927 0L5.354 5.12l-4.898.696c-.441.062-.612.636-.283.95l3.523 3.356-.83 4.73zm4.905-2.767-3.686 1.894.694-3.957a.56.56 0 0 0-.163-.505L1.71 6.745l4.052-.576a.53.53 0 0 0 .393-.288L8 2.223l1.847 3.658a.53.53 0 0 0 .393.288l4.052.575-2.906 2.77a.56.56 0 0 0-.163.506l.694 3.957-3.686-1.894a.5.5 0 0 0-.461 0z"
15
- />
16
- </svg>
17
- );
18
- export default StarIcon;
1
+ import type { SVGProps } from 'react';
2
+ const StarIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 16 16"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#001007"
13
+ fillOpacity={0.5}
14
+ d="M2.866 14.85c-.078.444.36.791.746.593l4.39-2.256 4.389 2.256c.386.198.824-.149.746-.592l-.83-4.73 3.522-3.356c.33-.314.16-.888-.282-.95l-4.898-.696L8.465.792a.513.513 0 0 0-.927 0L5.354 5.12l-4.898.696c-.441.062-.612.636-.283.95l3.523 3.356-.83 4.73zm4.905-2.767-3.686 1.894.694-3.957a.56.56 0 0 0-.163-.505L1.71 6.745l4.052-.576a.53.53 0 0 0 .393-.288L8 2.223l1.847 3.658a.53.53 0 0 0 .393.288l4.052.575-2.906 2.77a.56.56 0 0 0-.163.506l.694 3.957-3.686-1.894a.5.5 0 0 0-.461 0z"
15
+ />
16
+ </svg>
17
+ );
18
+ export default StarIcon;
@@ -1,18 +1,18 @@
1
- import type { SVGProps } from 'react';
2
- const XIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 14 14"
9
- {...props}
10
- >
11
- <path
12
- fill="#fff"
13
- fillOpacity={0.75}
14
- d="M.292.292a1 1 0 0 1 1.416 0L7 5.586 12.292.292a1.002 1.002 0 0 1 1.416 1.416L8.414 7l5.294 5.292a1 1 0 0 1-.708 1.71 1 1 0 0 1-.708-.294L7 8.414l-5.292 5.294a1.002 1.002 0 0 1-1.416-1.416L5.586 7 .292 1.708a1 1 0 0 1 0-1.416"
15
- />
16
- </svg>
17
- );
18
- export default XIcon;
1
+ import type { SVGProps } from 'react';
2
+ const XIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 14 14"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#fff"
13
+ fillOpacity={0.75}
14
+ d="M.292.292a1 1 0 0 1 1.416 0L7 5.586 12.292.292a1.002 1.002 0 0 1 1.416 1.416L8.414 7l5.294 5.292a1 1 0 0 1-.708 1.71 1 1 0 0 1-.708-.294L7 8.414l-5.292 5.294a1.002 1.002 0 0 1-1.416-1.416L5.586 7 .292 1.708a1 1 0 0 1 0-1.416"
15
+ />
16
+ </svg>
17
+ );
18
+ export default XIcon;
@@ -1,18 +1,18 @@
1
- import type { SVGProps } from 'react';
2
- const YoutubeIcon = (props: SVGProps<SVGSVGElement>) => (
3
- <svg
4
- xmlns="http://www.w3.org/2000/svg"
5
- width="1em"
6
- height="1em"
7
- fill="none"
8
- viewBox="0 0 12 9"
9
- {...props}
10
- >
11
- <path
12
- fill="#001007"
13
- fillOpacity={0.75}
14
- d="M6.038.558h.067c.616.002 3.74.025 4.583.251a1.51 1.51 0 0 1 1.06 1.065c.077.285.13.662.166 1.052l.007.078.017.195.006.078c.048.685.054 1.327.055 1.467v.057c0 .145-.007.83-.061 1.545l-.006.078-.007.078c-.038.43-.093.855-.176 1.169a1.5 1.5 0 0 1-1.062 1.065c-.87.234-4.176.25-4.634.251h-.107c-.232 0-1.19-.004-2.195-.039l-.128-.004-.065-.003-.128-.006L3.3 8.93c-.832-.037-1.625-.096-1.99-.195A1.5 1.5 0 0 1 .25 7.671C.167 7.358.11 6.93.074 6.502l-.006-.078-.007-.078A24 24 0 0 1 0 4.819v-.093c.002-.16.008-.718.048-1.333l.005-.077.003-.04L.06 3.2l.017-.195.008-.078c.036-.39.089-.768.164-1.052A1.5 1.5 0 0 1 1.313.81C1.677.712 2.47.652 3.302.614L3.43.61l.129-.005.064-.002.128-.005A75 75 0 0 1 5.895.559zM4.8 2.965V6.58l3.118-1.806z"
15
- />
16
- </svg>
17
- );
18
- export default YoutubeIcon;
1
+ import type { SVGProps } from 'react';
2
+ const YoutubeIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 12 9"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#001007"
13
+ fillOpacity={0.75}
14
+ d="M6.038.558h.067c.616.002 3.74.025 4.583.251a1.51 1.51 0 0 1 1.06 1.065c.077.285.13.662.166 1.052l.007.078.017.195.006.078c.048.685.054 1.327.055 1.467v.057c0 .145-.007.83-.061 1.545l-.006.078-.007.078c-.038.43-.093.855-.176 1.169a1.5 1.5 0 0 1-1.062 1.065c-.87.234-4.176.25-4.634.251h-.107c-.232 0-1.19-.004-2.195-.039l-.128-.004-.065-.003-.128-.006L3.3 8.93c-.832-.037-1.625-.096-1.99-.195A1.5 1.5 0 0 1 .25 7.671C.167 7.358.11 6.93.074 6.502l-.006-.078-.007-.078A24 24 0 0 1 0 4.819v-.093c.002-.16.008-.718.048-1.333l.005-.077.003-.04L.06 3.2l.017-.195.008-.078c.036-.39.089-.768.164-1.052A1.5 1.5 0 0 1 1.313.81C1.677.712 2.47.652 3.302.614L3.43.61l.129-.005.064-.002.128-.005A75 75 0 0 1 5.895.559zM4.8 2.965V6.58l3.118-1.806z"
15
+ />
16
+ </svg>
17
+ );
18
+ export default YoutubeIcon;
@@ -1,4 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.00001 0L9.66901 0.864L11.527 1.146L12.369 2.826L13.706 4.146L13.4 6L13.706 7.854L12.369 9.174L11.527 10.854L9.66901 11.136L8.00001 12L6.33101 11.136L4.47301 10.854L3.63101 9.174L2.29401 7.854L2.60001 6L2.29401 4.146L3.63101 2.826L4.47301 1.146L6.33101 0.864L8.00001 0Z" fill="#001007" fill-opacity="0.5"/>
3
- <path d="M4 11.794V16L8 15L12 16V11.794L9.982 12.1L8 13.126L6.018 12.1L4 11.794Z" fill="#001007" fill-opacity="0.5"/>
4
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.00001 0L9.66901 0.864L11.527 1.146L12.369 2.826L13.706 4.146L13.4 6L13.706 7.854L12.369 9.174L11.527 10.854L9.66901 11.136L8.00001 12L6.33101 11.136L4.47301 10.854L3.63101 9.174L2.29401 7.854L2.60001 6L2.29401 4.146L3.63101 2.826L4.47301 1.146L6.33101 0.864L8.00001 0Z" fill="#001007" fill-opacity="0.5"/>
3
+ <path d="M4 11.794V16L8 15L12 16V11.794L9.982 12.1L8 13.126L6.018 12.1L4 11.794Z" fill="#001007" fill-opacity="0.5"/>
4
+ </svg>
@@ -1,10 +1,10 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_330_11980)">
3
- <path d="M3.04999 3.05001C2.3999 3.70003 1.88422 4.47174 1.53239 5.32106C1.18057 6.17039 0.999481 7.0807 0.999481 8.00001C0.999481 8.91932 1.18057 9.82963 1.53239 10.679C1.88422 11.5283 2.3999 12.3 3.04999 12.95C3.14107 13.0443 3.19146 13.1706 3.19032 13.3017C3.18918 13.4328 3.1366 13.5582 3.0439 13.6509C2.95119 13.7436 2.82579 13.7962 2.69469 13.7973C2.56359 13.7985 2.43729 13.7481 2.34299 13.657C1.60007 12.9141 1.01076 12.0322 0.608698 11.0616C0.206635 10.0909 -0.000305176 9.05062 -0.000305176 8.00001C-0.000305176 6.9494 0.206635 5.90908 0.608698 4.93845C1.01076 3.96782 1.60007 3.08588 2.34299 2.34301C2.43729 2.25193 2.56359 2.20153 2.69469 2.20267C2.82579 2.20381 2.95119 2.2564 3.0439 2.3491C3.1366 2.4418 3.18918 2.56721 3.19032 2.69831C3.19146 2.82941 3.14107 2.95571 3.04999 3.05001ZM5.17199 5.17201C4.4221 5.92212 4.00084 6.93935 4.00084 8.00001C4.00084 9.06067 4.4221 10.0779 5.17199 10.828C5.21847 10.8745 5.25535 10.9297 5.28051 10.9904C5.30567 11.0512 5.31862 11.1163 5.31862 11.182C5.31862 11.2478 5.30567 11.3129 5.28051 11.3736C5.25535 11.4343 5.21847 11.4895 5.17199 11.536C5.1255 11.5825 5.07031 11.6194 5.00957 11.6445C4.94883 11.6697 4.88373 11.6826 4.81799 11.6826C4.75224 11.6826 4.68714 11.6697 4.6264 11.6445C4.56566 11.6194 4.51047 11.5825 4.46399 11.536C3.99955 11.0717 3.63114 10.5204 3.37978 9.91373C3.12843 9.30702 2.99905 8.65673 2.99905 8.00001C2.99905 7.34329 3.12843 6.693 3.37978 6.08629C3.63114 5.47957 3.99955 4.92832 4.46399 4.46401C4.55787 4.37012 4.68521 4.31738 4.81799 4.31738C4.95076 4.31738 5.0781 4.37012 5.17199 4.46401C5.26587 4.5579 5.31862 4.68523 5.31862 4.81801C5.31862 4.95079 5.26587 5.07812 5.17199 5.17201ZM10.828 4.46401C10.8744 4.41745 10.9296 4.3805 10.9904 4.3553C11.0511 4.33009 11.1162 4.31712 11.182 4.31712C11.2478 4.31712 11.3129 4.33009 11.3736 4.3553C11.4344 4.3805 11.4895 4.41745 11.536 4.46401C12.0004 4.92832 12.3688 5.47957 12.6202 6.08629C12.8715 6.693 13.0009 7.34329 13.0009 8.00001C13.0009 8.65673 12.8715 9.30702 12.6202 9.91373C12.3688 10.5204 12.0004 11.0717 11.536 11.536C11.4895 11.5825 11.4343 11.6194 11.3736 11.6445C11.3128 11.6697 11.2477 11.6826 11.182 11.6826C11.1162 11.6826 11.0511 11.6697 10.9904 11.6445C10.9297 11.6194 10.8745 11.5825 10.828 11.536C10.7815 11.4895 10.7446 11.4343 10.7195 11.3736C10.6943 11.3129 10.6814 11.2478 10.6814 11.182C10.6814 11.1163 10.6943 11.0512 10.7195 10.9904C10.7446 10.9297 10.7815 10.8745 10.828 10.828C11.5779 10.0779 11.9991 9.06067 11.9991 8.00001C11.9991 6.93935 11.5779 5.92212 10.828 5.17201C10.7814 5.12556 10.7445 5.07039 10.7193 5.00964C10.6941 4.9489 10.6811 4.88378 10.6811 4.81801C10.6811 4.75224 10.6941 4.68712 10.7193 4.62638C10.7445 4.56563 10.7814 4.51046 10.828 4.46401ZM12.95 2.34401C13.0438 2.25027 13.1709 2.19762 13.3035 2.19762C13.4361 2.19762 13.5632 2.25027 13.657 2.34401C15.1571 3.84427 15.9998 5.87895 15.9998 8.00051C15.9998 10.1221 15.1571 12.1567 13.657 13.657C13.5627 13.7481 13.4364 13.7985 13.3053 13.7973C13.1742 13.7962 13.0488 13.7436 12.9561 13.6509C12.8634 13.5582 12.8108 13.4328 12.8096 13.3017C12.8085 13.1706 12.8589 13.0443 12.95 12.95C13.6001 12.3 14.1158 11.5283 14.4676 10.679C14.8194 9.82963 15.0005 8.91932 15.0005 8.00001C15.0005 7.0807 14.8194 6.17039 14.4676 5.32106C14.1158 4.47174 13.6001 3.70003 12.95 3.05001C12.8563 2.95625 12.8036 2.82909 12.8036 2.69651C12.8036 2.56393 12.8563 2.43677 12.95 2.34301V2.34401ZM9.99999 8.00001C9.99999 8.53044 9.78927 9.03915 9.4142 9.41422C9.03913 9.7893 8.53042 10 7.99999 10C7.46955 10 6.96085 9.7893 6.58577 9.41422C6.2107 9.03915 5.99999 8.53044 5.99999 8.00001C5.99999 7.46958 6.2107 6.96087 6.58577 6.5858C6.96085 6.21072 7.46955 6.00001 7.99999 6.00001C8.53042 6.00001 9.03913 6.21072 9.4142 6.5858C9.78927 6.96087 9.99999 7.46958 9.99999 8.00001Z" fill="#001007" fill-opacity="0.5"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_330_11980">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_330_11980)">
3
+ <path d="M3.04999 3.05001C2.3999 3.70003 1.88422 4.47174 1.53239 5.32106C1.18057 6.17039 0.999481 7.0807 0.999481 8.00001C0.999481 8.91932 1.18057 9.82963 1.53239 10.679C1.88422 11.5283 2.3999 12.3 3.04999 12.95C3.14107 13.0443 3.19146 13.1706 3.19032 13.3017C3.18918 13.4328 3.1366 13.5582 3.0439 13.6509C2.95119 13.7436 2.82579 13.7962 2.69469 13.7973C2.56359 13.7985 2.43729 13.7481 2.34299 13.657C1.60007 12.9141 1.01076 12.0322 0.608698 11.0616C0.206635 10.0909 -0.000305176 9.05062 -0.000305176 8.00001C-0.000305176 6.9494 0.206635 5.90908 0.608698 4.93845C1.01076 3.96782 1.60007 3.08588 2.34299 2.34301C2.43729 2.25193 2.56359 2.20153 2.69469 2.20267C2.82579 2.20381 2.95119 2.2564 3.0439 2.3491C3.1366 2.4418 3.18918 2.56721 3.19032 2.69831C3.19146 2.82941 3.14107 2.95571 3.04999 3.05001ZM5.17199 5.17201C4.4221 5.92212 4.00084 6.93935 4.00084 8.00001C4.00084 9.06067 4.4221 10.0779 5.17199 10.828C5.21847 10.8745 5.25535 10.9297 5.28051 10.9904C5.30567 11.0512 5.31862 11.1163 5.31862 11.182C5.31862 11.2478 5.30567 11.3129 5.28051 11.3736C5.25535 11.4343 5.21847 11.4895 5.17199 11.536C5.1255 11.5825 5.07031 11.6194 5.00957 11.6445C4.94883 11.6697 4.88373 11.6826 4.81799 11.6826C4.75224 11.6826 4.68714 11.6697 4.6264 11.6445C4.56566 11.6194 4.51047 11.5825 4.46399 11.536C3.99955 11.0717 3.63114 10.5204 3.37978 9.91373C3.12843 9.30702 2.99905 8.65673 2.99905 8.00001C2.99905 7.34329 3.12843 6.693 3.37978 6.08629C3.63114 5.47957 3.99955 4.92832 4.46399 4.46401C4.55787 4.37012 4.68521 4.31738 4.81799 4.31738C4.95076 4.31738 5.0781 4.37012 5.17199 4.46401C5.26587 4.5579 5.31862 4.68523 5.31862 4.81801C5.31862 4.95079 5.26587 5.07812 5.17199 5.17201ZM10.828 4.46401C10.8744 4.41745 10.9296 4.3805 10.9904 4.3553C11.0511 4.33009 11.1162 4.31712 11.182 4.31712C11.2478 4.31712 11.3129 4.33009 11.3736 4.3553C11.4344 4.3805 11.4895 4.41745 11.536 4.46401C12.0004 4.92832 12.3688 5.47957 12.6202 6.08629C12.8715 6.693 13.0009 7.34329 13.0009 8.00001C13.0009 8.65673 12.8715 9.30702 12.6202 9.91373C12.3688 10.5204 12.0004 11.0717 11.536 11.536C11.4895 11.5825 11.4343 11.6194 11.3736 11.6445C11.3128 11.6697 11.2477 11.6826 11.182 11.6826C11.1162 11.6826 11.0511 11.6697 10.9904 11.6445C10.9297 11.6194 10.8745 11.5825 10.828 11.536C10.7815 11.4895 10.7446 11.4343 10.7195 11.3736C10.6943 11.3129 10.6814 11.2478 10.6814 11.182C10.6814 11.1163 10.6943 11.0512 10.7195 10.9904C10.7446 10.9297 10.7815 10.8745 10.828 10.828C11.5779 10.0779 11.9991 9.06067 11.9991 8.00001C11.9991 6.93935 11.5779 5.92212 10.828 5.17201C10.7814 5.12556 10.7445 5.07039 10.7193 5.00964C10.6941 4.9489 10.6811 4.88378 10.6811 4.81801C10.6811 4.75224 10.6941 4.68712 10.7193 4.62638C10.7445 4.56563 10.7814 4.51046 10.828 4.46401ZM12.95 2.34401C13.0438 2.25027 13.1709 2.19762 13.3035 2.19762C13.4361 2.19762 13.5632 2.25027 13.657 2.34401C15.1571 3.84427 15.9998 5.87895 15.9998 8.00051C15.9998 10.1221 15.1571 12.1567 13.657 13.657C13.5627 13.7481 13.4364 13.7985 13.3053 13.7973C13.1742 13.7962 13.0488 13.7436 12.9561 13.6509C12.8634 13.5582 12.8108 13.4328 12.8096 13.3017C12.8085 13.1706 12.8589 13.0443 12.95 12.95C13.6001 12.3 14.1158 11.5283 14.4676 10.679C14.8194 9.82963 15.0005 8.91932 15.0005 8.00001C15.0005 7.0807 14.8194 6.17039 14.4676 5.32106C14.1158 4.47174 13.6001 3.70003 12.95 3.05001C12.8563 2.95625 12.8036 2.82909 12.8036 2.69651C12.8036 2.56393 12.8563 2.43677 12.95 2.34301V2.34401ZM9.99999 8.00001C9.99999 8.53044 9.78927 9.03915 9.4142 9.41422C9.03913 9.7893 8.53042 10 7.99999 10C7.46955 10 6.96085 9.7893 6.58577 9.41422C6.2107 9.03915 5.99999 8.53044 5.99999 8.00001C5.99999 7.46958 6.2107 6.96087 6.58577 6.5858C6.96085 6.21072 7.46955 6.00001 7.99999 6.00001C8.53042 6.00001 9.03913 6.21072 9.4142 6.5858C9.78927 6.96087 9.99999 7.46958 9.99999 8.00001Z" fill="#001007" fill-opacity="0.5"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_330_11980">
7
+ <rect width="16" height="16" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M4.43526 5.355L0.838258 1.2435C0.413758 0.75975 0.758758 2.75779e-07 1.40301 2.75779e-07H8.59701C8.74119 -0.000123345 8.88236 0.0413159 9.00359 0.119356C9.12483 0.197396 9.221 0.308728 9.2806 0.44002C9.34019 0.571312 9.36067 0.716999 9.3396 0.859633C9.31852 1.00227 9.25678 1.1358 9.16176 1.24425L5.56476 5.35425C5.49436 5.43481 5.40755 5.49937 5.31014 5.54361C5.21273 5.58785 5.10699 5.61073 5.00001 5.61073C4.89303 5.61073 4.78728 5.58785 4.68988 5.54361C4.59247 5.49937 4.50565 5.43481 4.43526 5.35425V5.355Z" fill="white" fill-opacity="0.5"/>
3
- </svg>
1
+ <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.43526 5.355L0.838258 1.2435C0.413758 0.75975 0.758758 2.75779e-07 1.40301 2.75779e-07H8.59701C8.74119 -0.000123345 8.88236 0.0413159 9.00359 0.119356C9.12483 0.197396 9.221 0.308728 9.2806 0.44002C9.34019 0.571312 9.36067 0.716999 9.3396 0.859633C9.31852 1.00227 9.25678 1.1358 9.16176 1.24425L5.56476 5.35425C5.49436 5.43481 5.40755 5.49937 5.31014 5.54361C5.21273 5.58785 5.10699 5.61073 5.00001 5.61073C4.89303 5.61073 4.78728 5.58785 4.68988 5.54361C4.59247 5.49937 4.50565 5.43481 4.43526 5.35425V5.355Z" fill="white" fill-opacity="0.5"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M6.105 5.56475L1.9935 9.16175C1.509 9.58625 0.75 9.24125 0.75 8.597V1.403C0.749877 1.25882 0.791316 1.11766 0.869356 0.996419C0.947396 0.875181 1.05873 0.779007 1.19002 0.719416C1.32131 0.659824 1.467 0.639339 1.60963 0.660416C1.75227 0.681492 1.8858 0.743236 1.99425 0.838252L6.10425 4.43525C6.18481 4.50565 6.24937 4.59246 6.29361 4.68987C6.33785 4.78728 6.36073 4.89302 6.36073 5C6.36073 5.10698 6.33785 5.21273 6.29361 5.31013C6.24937 5.40754 6.18481 5.49436 6.10425 5.56475H6.105Z" fill="white" fill-opacity="0.85"/>
3
- </svg>
1
+ <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.105 5.56475L1.9935 9.16175C1.509 9.58625 0.75 9.24125 0.75 8.597V1.403C0.749877 1.25882 0.791316 1.11766 0.869356 0.996419C0.947396 0.875181 1.05873 0.779007 1.19002 0.719416C1.32131 0.659824 1.467 0.639339 1.60963 0.660416C1.75227 0.681492 1.8858 0.743236 1.99425 0.838252L6.10425 4.43525C6.18481 4.50565 6.24937 4.59246 6.29361 4.68987C6.33785 4.78728 6.36073 4.89302 6.36073 5C6.36073 5.10698 6.33785 5.21273 6.29361 5.31013C6.24937 5.40754 6.18481 5.49436 6.10425 5.56475H6.105Z" fill="white" fill-opacity="0.85"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5 11.5C5 11.3674 5.05268 11.2402 5.14645 11.1464C5.24021 11.0527 5.36739 11 5.5 11H14.5C14.6326 11 14.7598 11.0527 14.8536 11.1464C14.9473 11.2402 15 11.3674 15 11.5C15 11.6326 14.9473 11.7598 14.8536 11.8536C14.7598 11.9473 14.6326 12 14.5 12H5.5C5.36739 12 5.24021 11.9473 5.14645 11.8536C5.05268 11.7598 5 11.6326 5 11.5ZM5 7.5C5 7.36739 5.05268 7.24021 5.14645 7.14645C5.24021 7.05268 5.36739 7 5.5 7H14.5C14.6326 7 14.7598 7.05268 14.8536 7.14645C14.9473 7.24021 15 7.36739 15 7.5C15 7.63261 14.9473 7.75979 14.8536 7.85355C14.7598 7.94732 14.6326 8 14.5 8H5.5C5.36739 8 5.24021 7.94732 5.14645 7.85355C5.05268 7.75979 5 7.63261 5 7.5ZM5 3.5C5 3.36739 5.05268 3.24021 5.14645 3.14645C5.24021 3.05268 5.36739 3 5.5 3H14.5C14.6326 3 14.7598 3.05268 14.8536 3.14645C14.9473 3.24021 15 3.36739 15 3.5C15 3.63261 14.9473 3.75979 14.8536 3.85355C14.7598 3.94732 14.6326 4 14.5 4H5.5C5.36739 4 5.24021 3.94732 5.14645 3.85355C5.05268 3.75979 5 3.63261 5 3.5Z" fill="#001007" fill-opacity="0.5"/>
3
- <path d="M1.713 11.865V11.391H2C2.217 11.391 2.363 11.254 2.363 11.074C2.363 10.889 2.205 10.764 2.002 10.764C1.779 10.764 1.635 10.916 1.629 11.074H1.039C1.055 10.607 1.412 10.287 2.025 10.287C2.613 10.285 2.979 10.578 2.982 10.99C2.98389 11.1313 2.93543 11.2687 2.84528 11.3775C2.75513 11.4864 2.62919 11.5595 2.49 11.584V11.617C2.64781 11.6288 2.79501 11.7009 2.90098 11.8184C3.00696 11.936 3.06356 12.0898 3.059 12.248C3.062 12.781 2.557 13.048 2.008 13.048C1.352 13.048 1.008 12.678 1 12.254H1.582C1.59 12.432 1.768 12.56 2.004 12.563C2.258 12.563 2.428 12.418 2.426 12.213C2.424 12.018 2.271 11.865 2.012 11.865H1.712H1.713ZM1.709 7.166H1.105V7.131C1.105 6.723 1.4 6.287 2.063 6.287C2.646 6.287 3.023 6.613 3.023 7.043C3.023 7.432 2.766 7.66 2.547 7.891L2.01 8.463V8.493H3.064V9H1.143V8.605L2.1 7.615C2.238 7.473 2.393 7.311 2.393 7.107C2.393 6.927 2.246 6.787 2.051 6.787C2.00598 6.78535 1.9611 6.79293 1.91913 6.80928C1.87715 6.82563 1.83897 6.8504 1.80693 6.88206C1.77489 6.91373 1.74967 6.95162 1.73283 6.9934C1.71599 7.03518 1.70788 7.07997 1.709 7.125V7.166ZM2.564 5H1.929V2.924H1.898L1.3 3.344V2.777L1.929 2.334H2.564V5Z" fill="#001007" fill-opacity="0.5"/>
4
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5 11.5C5 11.3674 5.05268 11.2402 5.14645 11.1464C5.24021 11.0527 5.36739 11 5.5 11H14.5C14.6326 11 14.7598 11.0527 14.8536 11.1464C14.9473 11.2402 15 11.3674 15 11.5C15 11.6326 14.9473 11.7598 14.8536 11.8536C14.7598 11.9473 14.6326 12 14.5 12H5.5C5.36739 12 5.24021 11.9473 5.14645 11.8536C5.05268 11.7598 5 11.6326 5 11.5ZM5 7.5C5 7.36739 5.05268 7.24021 5.14645 7.14645C5.24021 7.05268 5.36739 7 5.5 7H14.5C14.6326 7 14.7598 7.05268 14.8536 7.14645C14.9473 7.24021 15 7.36739 15 7.5C15 7.63261 14.9473 7.75979 14.8536 7.85355C14.7598 7.94732 14.6326 8 14.5 8H5.5C5.36739 8 5.24021 7.94732 5.14645 7.85355C5.05268 7.75979 5 7.63261 5 7.5ZM5 3.5C5 3.36739 5.05268 3.24021 5.14645 3.14645C5.24021 3.05268 5.36739 3 5.5 3H14.5C14.6326 3 14.7598 3.05268 14.8536 3.14645C14.9473 3.24021 15 3.36739 15 3.5C15 3.63261 14.9473 3.75979 14.8536 3.85355C14.7598 3.94732 14.6326 4 14.5 4H5.5C5.36739 4 5.24021 3.94732 5.14645 3.85355C5.05268 3.75979 5 3.63261 5 3.5Z" fill="#001007" fill-opacity="0.5"/>
3
+ <path d="M1.713 11.865V11.391H2C2.217 11.391 2.363 11.254 2.363 11.074C2.363 10.889 2.205 10.764 2.002 10.764C1.779 10.764 1.635 10.916 1.629 11.074H1.039C1.055 10.607 1.412 10.287 2.025 10.287C2.613 10.285 2.979 10.578 2.982 10.99C2.98389 11.1313 2.93543 11.2687 2.84528 11.3775C2.75513 11.4864 2.62919 11.5595 2.49 11.584V11.617C2.64781 11.6288 2.79501 11.7009 2.90098 11.8184C3.00696 11.936 3.06356 12.0898 3.059 12.248C3.062 12.781 2.557 13.048 2.008 13.048C1.352 13.048 1.008 12.678 1 12.254H1.582C1.59 12.432 1.768 12.56 2.004 12.563C2.258 12.563 2.428 12.418 2.426 12.213C2.424 12.018 2.271 11.865 2.012 11.865H1.712H1.713ZM1.709 7.166H1.105V7.131C1.105 6.723 1.4 6.287 2.063 6.287C2.646 6.287 3.023 6.613 3.023 7.043C3.023 7.432 2.766 7.66 2.547 7.891L2.01 8.463V8.493H3.064V9H1.143V8.605L2.1 7.615C2.238 7.473 2.393 7.311 2.393 7.107C2.393 6.927 2.246 6.787 2.051 6.787C2.00598 6.78535 1.9611 6.79293 1.91913 6.80928C1.87715 6.82563 1.83897 6.8504 1.80693 6.88206C1.77489 6.91373 1.74967 6.95162 1.73283 6.9934C1.71599 7.03518 1.70788 7.07997 1.709 7.125V7.166ZM2.564 5H1.929V2.924H1.898L1.3 3.344V2.777L1.929 2.334H2.564V5Z" fill="#001007" fill-opacity="0.5"/>
4
+ </svg>