@abqm-ds/icons 1.0.14 → 1.0.16

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 (115) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/CHANGELOG.md +12 -0
  3. package/README.md +13 -7
  4. package/dist/index.cjs +1108 -464
  5. package/dist/index.d.cts +56 -10
  6. package/dist/index.d.ts +56 -10
  7. package/dist/index.js +1084 -463
  8. package/package.json +10 -7
  9. package/scripts/move-icons.js +11 -6
  10. package/scripts/process.js +8 -2
  11. package/scripts/updateIndex.js +16 -6
  12. package/src/components/ApartacaoIconSEQM.tsx +20 -0
  13. package/src/components/BreakawayRopingIconSEQM.tsx +20 -0
  14. package/src/components/BulldogIconSEQM.tsx +20 -0
  15. package/src/components/CincoTamboresIconSEQM.tsx +20 -0
  16. package/src/components/ConformacaoIconSEQM.tsx +20 -0
  17. package/src/components/LacoCabecaIconSEQM.tsx +20 -0
  18. package/src/components/LacoCompridoIconSEQM.tsx +20 -0
  19. package/src/components/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  20. package/src/components/LacoEmDuplaIconSEQM.tsx +20 -0
  21. package/src/components/LacoIndividualIconSEQM.tsx +20 -0
  22. package/src/components/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  23. package/src/components/LacoPeIconSEQM.tsx +20 -0
  24. package/src/components/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  25. package/src/components/PerformanceHalterIconSEQM.tsx +20 -0
  26. package/src/components/RanchSortingIconSEQM.tsx +20 -0
  27. package/src/components/RedeasIconSEQM.tsx +20 -0
  28. package/src/components/SeisBalizasIconSEQM.tsx +20 -0
  29. package/src/components/TeamPenningIconSEQM.tsx +20 -0
  30. package/src/components/TresTamboresIconSEQM.tsx +20 -0
  31. package/src/components/VaquejadaIconSEQM.tsx +20 -0
  32. package/src/components/WesternPleasureIconSEQM.tsx +20 -0
  33. package/src/components/WorkingCowHorseIconSEQM.tsx +20 -0
  34. package/src/components/icons/AppleIcon.tsx +22 -0
  35. package/src/components/icons/ArrowDownShortIcon.tsx +19 -0
  36. package/src/components/icons/AwardFillIcon.tsx +21 -0
  37. package/src/components/icons/BarChartIcon.tsx +17 -0
  38. package/src/components/icons/BoxArrowInLeftIcon.tsx +25 -0
  39. package/src/components/icons/BroadcastIcon.tsx +24 -0
  40. package/src/components/icons/CaretDownFillIcon.tsx +17 -0
  41. package/src/components/icons/CaretLeftFillIcon.tsx +17 -0
  42. package/src/components/icons/CaretRightFillIcon.tsx +17 -0
  43. package/src/components/icons/CircleIcon.tsx +24 -0
  44. package/src/components/icons/FacebookIcon.tsx +24 -0
  45. package/src/components/icons/FileEarmarkTextIcon.tsx +21 -0
  46. package/src/components/icons/FileTextIcon.tsx +21 -0
  47. package/src/components/icons/FilterIcon.tsx +17 -0
  48. package/src/components/icons/GoogleColorIcon.tsx +28 -0
  49. package/src/components/icons/GoogleIcon.tsx +24 -0
  50. package/src/components/icons/InstagramIcon.tsx +24 -0
  51. package/src/components/icons/ListIcon.tsx +19 -0
  52. package/src/components/icons/ListOlIcon.tsx +23 -0
  53. package/src/components/icons/PencilSquareIcon.tsx +23 -0
  54. package/src/components/icons/PersonCircleIcon.tsx +26 -0
  55. package/src/components/icons/PlusIcon.tsx +17 -0
  56. package/src/components/icons/PrinterIcon.tsx +18 -0
  57. package/src/components/icons/SearchIcon.tsx +24 -0
  58. package/src/components/icons/SpinnerRingResizeIcon.tsx +37 -0
  59. package/src/components/icons/StarIcon.tsx +24 -0
  60. package/src/components/icons/XIcon.tsx +17 -0
  61. package/src/components/icons/YoutubeIcon.tsx +17 -0
  62. package/src/components/icons/index.ts +28 -0
  63. package/src/components/iconsSEQM/ApartacaoIconSEQM.tsx +20 -0
  64. package/src/components/iconsSEQM/BreakawayRopingIconSEQM.tsx +20 -0
  65. package/src/components/iconsSEQM/BulldogIconSEQM.tsx +20 -0
  66. package/src/components/iconsSEQM/CincoTamboresIconSEQM.tsx +20 -0
  67. package/src/components/iconsSEQM/ConformacaoIconSEQM.tsx +20 -0
  68. package/src/components/iconsSEQM/LacoCabecaIconSEQM.tsx +20 -0
  69. package/src/components/iconsSEQM/LacoCompridoIconSEQM.tsx +20 -0
  70. package/src/components/iconsSEQM/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  71. package/src/components/iconsSEQM/LacoEmDuplaIconSEQM.tsx +20 -0
  72. package/src/components/iconsSEQM/LacoIndividualIconSEQM.tsx +20 -0
  73. package/src/components/iconsSEQM/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  74. package/src/components/iconsSEQM/LacoPeIconSEQM.tsx +20 -0
  75. package/src/components/iconsSEQM/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  76. package/src/components/iconsSEQM/PerformanceHalterIconSEQM.tsx +20 -0
  77. package/src/components/iconsSEQM/RanchSortingIconSEQM.tsx +20 -0
  78. package/src/components/iconsSEQM/RedeasIconSEQM.tsx +20 -0
  79. package/src/components/iconsSEQM/SeisBalizasIconSEQM.tsx +20 -0
  80. package/src/components/iconsSEQM/TeamPenningIconSEQM.tsx +20 -0
  81. package/src/components/iconsSEQM/TresTamboresIconSEQM.tsx +20 -0
  82. package/src/components/iconsSEQM/VaquejadaIconSEQM.tsx +20 -0
  83. package/src/components/iconsSEQM/WesternPleasureIconSEQM.tsx +20 -0
  84. package/src/components/iconsSEQM/WorkingCowHorseIconSEQM.tsx +20 -0
  85. package/src/components/iconsSEQM/index.ts +22 -0
  86. package/src/{_logos/LogoPadrao.tsx → components/logos/LogoPadraoIcon.tsx} +6 -7
  87. package/src/{_logos/LogoSeqmBlackGreen.tsx → components/logos/LogoSeqmBlackGreenIcon.tsx} +13 -14
  88. package/src/{_logos/LogoSeqm.tsx → components/logos/LogoSeqmIcon.tsx} +13 -14
  89. package/src/{_logos/LogoSeqmMobile.tsx → components/logos/LogoSeqmMobileIcon.tsx} +7 -8
  90. package/src/components/logos/index.ts +4 -0
  91. package/src/icons/google-color.svg +1 -0
  92. package/src/icons/google.svg +10 -0
  93. package/src/iconsSEQM/apartacao.svg +3 -0
  94. package/src/iconsSEQM/breakaway-roping.svg +3 -0
  95. package/src/iconsSEQM/bulldog.svg +3 -0
  96. package/src/iconsSEQM/cinco-tambores.svg +3 -0
  97. package/src/iconsSEQM/conformacao.svg +3 -0
  98. package/src/iconsSEQM/laco-cabeca.svg +3 -0
  99. package/src/iconsSEQM/laco-comprido-tecnico.svg +3 -0
  100. package/src/iconsSEQM/laco-comprido.svg +3 -0
  101. package/src/iconsSEQM/laco-em-dupla.svg +3 -0
  102. package/src/iconsSEQM/laco-individual-tecnico.svg +3 -0
  103. package/src/iconsSEQM/laco-individual.svg +3 -0
  104. package/src/iconsSEQM/laco-pe.svg +3 -0
  105. package/src/iconsSEQM/maneabilidade-e-velocidade.svg +6 -0
  106. package/src/iconsSEQM/performance-halter.svg +3 -0
  107. package/src/iconsSEQM/ranch-sorting.svg +3 -0
  108. package/src/iconsSEQM/redeas.svg +3 -0
  109. package/src/iconsSEQM/seis-balizas.svg +3 -0
  110. package/src/iconsSEQM/team-penning.svg +3 -0
  111. package/src/iconsSEQM/tres-tambores.svg +3 -0
  112. package/src/iconsSEQM/vaquejada.svg +4 -0
  113. package/src/iconsSEQM/western-pleasure.svg +3 -0
  114. package/src/iconsSEQM/working-cow-horse.svg +3 -0
  115. package/src/index.ts +3 -31
@@ -0,0 +1,17 @@
1
+ import type { SVGProps } from 'react';
2
+ const BarChartIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M6 16.5H3V21h3zm7.5-6h-3V21h3zM21 3v18h-3V3zm-3-1.5A1.5 1.5 0 0 0 16.5 3v18a1.5 1.5 0 0 0 1.5 1.5h3a1.5 1.5 0 0 0 1.5-1.5V3A1.5 1.5 0 0 0 21 1.5zm-9 9A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5V21a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 21zm-7.5 6A1.5 1.5 0 0 1 3 15h3a1.5 1.5 0 0 1 1.5 1.5V21A1.5 1.5 0 0 1 6 22.5H3A1.5 1.5 0 0 1 1.5 21z"
14
+ />
15
+ </svg>
16
+ );
17
+ export default BarChartIcon;
@@ -0,0 +1,25 @@
1
+ import type { SVGProps } from 'react';
2
+ const BoxArrowInLeftIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ fillRule="evenodd"
14
+ d="M15 5.25a.75.75 0 0 0-.75-.75h-12a.75.75 0 0 0-.75.75v13.5a.75.75 0 0 0 .75.75h12a.75.75 0 0 0 .75-.75v-3a.75.75 0 1 1 1.5 0v3A2.25 2.25 0 0 1 14.25 21h-12A2.25 2.25 0 0 1 0 18.75V5.25A2.25 2.25 0 0 1 2.25 3h12a2.25 2.25 0 0 1 2.25 2.25v3a.75.75 0 1 1-1.5 0z"
15
+ clipRule="evenodd"
16
+ />
17
+ <path
18
+ fill={props?.fill ? props.fill : '#1E1E1E'}
19
+ fillRule="evenodd"
20
+ d="M6.219 12.531a.75.75 0 0 1 0-1.062l4.5-4.5a.75.75 0 1 1 1.062 1.062L8.56 11.25H21.75a.75.75 0 1 1 0 1.5H8.56l3.22 3.219a.752.752 0 0 1-1.061 1.062z"
21
+ clipRule="evenodd"
22
+ />
23
+ </svg>
24
+ );
25
+ export default BoxArrowInLeftIcon;
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from 'react';
2
+ const BroadcastIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#Broadcast_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M4.575 4.575a10.5 10.5 0 0 0 0 14.85.75.75 0 0 1-1.06 1.06 12 12 0 0 1 0-16.97.75.75 0 0 1 1.06 1.06m3.183 3.183a6 6 0 0 0 0 8.484.75.75 0 1 1-1.062 1.062 7.5 7.5 0 0 1 0-10.608.75.75 0 1 1 1.062 1.062m8.484-1.062a.75.75 0 0 1 1.062 0 7.5 7.5 0 0 1 0 10.608.752.752 0 0 1-1.062-1.062 6 6 0 0 0 0-8.484.75.75 0 0 1 0-1.062m3.183-3.18a.75.75 0 0 1 1.06 0 12 12 0 0 1 0 16.97.75.75 0 0 1-1.06-1.061 10.5 10.5 0 0 0 0-14.85.75.75 0 0 1 0-1.06zM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="Broadcast_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default BroadcastIcon;
@@ -0,0 +1,17 @@
1
+ import type { SVGProps } from 'react';
2
+ const CaretDownFillIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M10.87 16.71 3.678 8.487C2.827 7.519 3.517 6 4.806 6h14.388a1.5 1.5 0 0 1 1.13 2.489l-7.195 8.22a1.5 1.5 0 0 1-2.258 0z"
14
+ />
15
+ </svg>
16
+ );
17
+ export default CaretDownFillIcon;
@@ -0,0 +1,17 @@
1
+ import type { SVGProps } from 'react';
2
+ const CaretLeftFillIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="m5.79 13.13 8.223 7.193c.969.85 2.487.16 2.487-1.129V4.806a1.5 1.5 0 0 0-2.488-1.13l-8.22 7.195a1.5 1.5 0 0 0 0 2.258z"
14
+ />
15
+ </svg>
16
+ );
17
+ export default CaretLeftFillIcon;
@@ -0,0 +1,17 @@
1
+ import type { SVGProps } from 'react';
2
+ const CaretRightFillIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="m18.21 13.13-8.223 7.193c-.969.85-2.487.16-2.487-1.129V4.806a1.5 1.5 0 0 1 2.489-1.13l8.22 7.195a1.5 1.5 0 0 1 0 2.258z"
14
+ />
15
+ </svg>
16
+ );
17
+ export default CaretRightFillIcon;
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from 'react';
2
+ const CircleIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#circle_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M12 22.5a10.5 10.5 0 1 1 0-21 10.5 10.5 0 0 1 0 21m0 1.5a12 12 0 1 0 0-24 12 12 0 0 0 0 24"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="circle_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default CircleIcon;
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from 'react';
2
+ const FacebookIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#facebook_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M24 12.074C24 5.403 18.627-.002 12-.002 5.37 0-.003 5.405-.003 12.075c0 6.026 4.39 11.02 10.125 11.927v-8.438H7.077v-3.489h3.048V9.413c0-3.026 1.793-4.697 4.533-4.697 1.314 0 2.687.236 2.687.236v2.97H15.83c-1.49 0-1.954.931-1.954 1.887v2.265h3.327l-.531 3.489h-2.798V24C19.611 23.094 24 18.099 24 12.074"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="facebook_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default FacebookIcon;
@@ -0,0 +1,21 @@
1
+ import type { SVGProps } from 'react';
2
+ const FileEarmarkTextIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M8.25 10.5a.75.75 0 1 0 0 1.5h7.5a.75.75 0 1 0 0-1.5zm-.75 3.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75m0 3a.75.75 0 0 1 .75-.75h3a.75.75 0 1 1 0 1.5h-3a.75.75 0 0 1-.75-.75"
14
+ />
15
+ <path
16
+ fill={props?.fill ? props.fill : '#1E1E1E'}
17
+ d="M14.25 0H6a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6.75zm0 1.5v3a2.25 2.25 0 0 0 2.25 2.25h3V21a1.5 1.5 0 0 1-1.5 1.5H6A1.5 1.5 0 0 1 4.5 21V3A1.5 1.5 0 0 1 6 1.5z"
18
+ />
19
+ </svg>
20
+ );
21
+ export default FileEarmarkTextIcon;
@@ -0,0 +1,21 @@
1
+ import type { SVGProps } from 'react';
2
+ const FileTextIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M7.5 6a.75.75 0 0 0 0 1.5h9a.75.75 0 1 0 0-1.5zm-.75 3.75A.75.75 0 0 1 7.5 9h9a.75.75 0 1 1 0 1.5h-9a.75.75 0 0 1-.75-.75M7.5 12a.75.75 0 1 0 0 1.5h9a.75.75 0 1 0 0-1.5zm0 3a.75.75 0 1 0 0 1.5H12a.75.75 0 1 0 0-1.5z"
14
+ />
15
+ <path
16
+ fill={props?.fill ? props.fill : '#1E1E1E'}
17
+ d="M3 3a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v18a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm15-1.5H6A1.5 1.5 0 0 0 4.5 3v18A1.5 1.5 0 0 0 6 22.5h12a1.5 1.5 0 0 0 1.5-1.5V3A1.5 1.5 0 0 0 18 1.5"
18
+ />
19
+ </svg>
20
+ );
21
+ export default FileTextIcon;
@@ -0,0 +1,17 @@
1
+ import type { SVGProps } from 'react';
2
+ const FilterIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M9 15.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 1 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m-3-4.5a.75.75 0 0 1 .75-.75h10.5a.75.75 0 1 1 0 1.5H6.75a.75.75 0 0 1-.75-.75m-3-4.5A.75.75 0 0 1 3.75 6h16.5a.75.75 0 1 1 0 1.5H3.75A.75.75 0 0 1 3 6.75"
14
+ />
15
+ </svg>
16
+ );
17
+ export default FilterIcon;
@@ -0,0 +1,28 @@
1
+ import type { SVGProps } from 'react';
2
+ const GoogleColorIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ viewBox="0 0 48 48"
8
+ {...props}
9
+ >
10
+ <path
11
+ fill={props?.fill ? props.fill : '#FFC107'}
12
+ d="M43.611 20.083H42V20H24v8h11.303c-1.649 4.657-6.08 8-11.303 8-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917"
13
+ />
14
+ <path
15
+ fill={props?.fill ? props.fill : '#FF3D00'}
16
+ d="m6.306 14.691 6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691"
17
+ />
18
+ <path
19
+ fill={props?.fill ? props.fill : '#4CAF50'}
20
+ d="M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238A11.9 11.9 0 0 1 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44"
21
+ />
22
+ <path
23
+ fill={props?.fill ? props.fill : '#1976D2'}
24
+ d="M43.611 20.083H42V20H24v8h11.303a12.04 12.04 0 0 1-4.087 5.571l.003-.002 6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917"
25
+ />
26
+ </svg>
27
+ );
28
+ export default GoogleColorIcon;
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from 'react';
2
+ const GoogleIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#google_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M23.318 9.837c.14.806.21 1.622.208 2.44 0 3.65-1.305 6.737-3.576 8.827h.003C17.967 22.938 15.237 24 12 24a12 12 0 0 1 0-24 11.53 11.53 0 0 1 8.028 3.123L16.602 6.55A6.52 6.52 0 0 0 12 4.75c-3.13 0-5.79 2.112-6.738 4.956a7.2 7.2 0 0 0 0 4.595h.005c.952 2.84 3.607 4.951 6.738 4.951 1.616 0 3.005-.414 4.082-1.146h-.004a5.55 5.55 0 0 0 2.399-3.646H12v-4.62h11.317z"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="google_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default GoogleIcon;
@@ -0,0 +1,24 @@
1
+ import type { SVGProps } from 'react';
2
+ const InstagramIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#instagram_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M12 0C8.743 0 8.334.015 7.055.072 5.775.132 4.904.333 4.14.63c-.8.301-1.526.774-2.125 1.385A5.9 5.9 0 0 0 .63 4.14c-.297.762-.5 1.635-.558 2.91C.015 8.332 0 8.74 0 12.002c0 3.257.015 3.665.072 4.945.06 1.278.261 2.15.558 2.913a5.9 5.9 0 0 0 1.385 2.125 5.86 5.86 0 0 0 2.123 1.385c.766.297 1.636.5 2.914.558C8.332 23.985 8.74 24 12 24s3.666-.015 4.947-.072c1.277-.06 2.151-.261 2.915-.558a5.9 5.9 0 0 0 2.124-1.385 5.9 5.9 0 0 0 1.384-2.125c.296-.764.498-1.635.558-2.913.057-1.28.072-1.687.072-4.947s-.015-3.668-.072-4.948c-.06-1.277-.262-2.15-.558-2.912a5.9 5.9 0 0 0-1.385-2.125A5.9 5.9 0 0 0 19.86.63c-.765-.297-1.638-.5-2.915-.558C15.666.015 15.259 0 11.997 0h.005zm-1.075 2.163H12c3.205 0 3.584.01 4.849.069 1.17.052 1.805.249 2.228.412.56.218.96.479 1.38.899s.68.819.898 1.38c.164.422.36 1.058.412 2.228.058 1.264.07 1.643.07 4.846s-.012 3.584-.07 4.848c-.053 1.17-.249 1.805-.413 2.228-.192.52-.499.992-.898 1.378-.42.42-.819.68-1.38.897-.42.165-1.056.36-2.228.414-1.264.057-1.643.07-4.847.07s-3.586-.013-4.85-.07c-1.17-.054-1.804-.249-2.227-.414a3.7 3.7 0 0 1-1.38-.897 3.7 3.7 0 0 1-.9-1.38c-.164-.422-.36-1.058-.413-2.228-.057-1.264-.069-1.643-.069-4.849 0-3.204.012-3.582.069-4.846.054-1.17.249-1.806.414-2.23.218-.559.478-.96.899-1.38.42-.42.819-.679 1.38-.896.423-.165 1.057-.36 2.227-.414 1.107-.052 1.536-.066 3.773-.068zm7.482 1.992a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88m-6.405 1.683a6.163 6.163 0 1 0-.193 12.325 6.163 6.163 0 0 0 .193-12.325m0 2.162a4 4 0 1 1 0 8 4 4 0 0 1 0-8"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="instagram_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default InstagramIcon;
@@ -0,0 +1,19 @@
1
+ import type { SVGProps } from 'react';
2
+ const ListIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ fillRule="evenodd"
14
+ d="M3.75 18a.75.75 0 0 1 .75-.75h15a.75.75 0 1 1 0 1.5h-15a.75.75 0 0 1-.75-.75m0-6a.75.75 0 0 1 .75-.75h15a.75.75 0 1 1 0 1.5h-15a.75.75 0 0 1-.75-.75m0-6a.75.75 0 0 1 .75-.75h15a.75.75 0 1 1 0 1.5h-15A.75.75 0 0 1 3.75 6"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
19
+ export default ListIcon;
@@ -0,0 +1,23 @@
1
+ import type { SVGProps } from 'react';
2
+ const ListOlIcon = (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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ fillRule="evenodd"
14
+ d="M7.5 17.25a.75.75 0 0 1 .75-.75h13.5a.75.75 0 1 1 0 1.5H8.25a.75.75 0 0 1-.75-.75m0-6a.75.75 0 0 1 .75-.75h13.5a.75.75 0 1 1 0 1.5H8.25a.75.75 0 0 1-.75-.75m0-6a.75.75 0 0 1 .75-.75h13.5a.75.75 0 1 1 0 1.5H8.25a.75.75 0 0 1-.75-.75"
15
+ clipRule="evenodd"
16
+ />
17
+ <path
18
+ fill={props?.fill ? props.fill : '#1E1E1E'}
19
+ d="M2.57 17.798v-.711H3c.325 0 .545-.206.545-.476 0-.277-.237-.465-.542-.465-.335 0-.55.228-.56.465h-.885c.024-.7.56-1.18 1.48-1.18.882-.003 1.43.436 1.435 1.054a.89.89 0 0 1-.738.891v.05a.923.923 0 0 1 .853.946c.005.8-.752 1.2-1.576 1.2-.984 0-1.5-.555-1.512-1.191h.873c.012.267.279.459.633.463.381 0 .636-.217.633-.524-.003-.293-.232-.523-.621-.523h-.45zm-.006-7.049h-.907v-.053c0-.611.443-1.266 1.438-1.266.874 0 1.44.49 1.44 1.135 0 .583-.386.925-.715 1.271l-.805.858v.045h1.581v.761H1.715v-.592l1.435-1.485c.207-.213.44-.457.44-.762 0-.27-.221-.48-.514-.48a.495.495 0 0 0-.513.507zM3.846 7.5h-.953V4.386h-.046l-.897.63v-.85l.944-.665h.952z"
20
+ />
21
+ </svg>
22
+ );
23
+ export default ListOlIcon;
@@ -0,0 +1,23 @@
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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M23.253 2.91a.75.75 0 0 1 0 1.059L21.69 5.535l-3-3L20.253.969a.75.75 0 0 1 1.06 0l1.94 1.94m-2.625 3.684-3-3-10.22 10.22a.75.75 0 0 0-.18.295l-1.208 3.62a.375.375 0 0 0 .474.475l3.62-1.208a.75.75 0 0 0 .295-.18l10.22-10.22z"
14
+ />
15
+ <path
16
+ fill={props?.fill ? props.fill : '#1E1E1E'}
17
+ fillRule="evenodd"
18
+ d="M1.5 20.25a2.25 2.25 0 0 0 2.25 2.25h16.5a2.25 2.25 0 0 0 2.25-2.25v-9a.75.75 0 1 0-1.5 0v9a.75.75 0 0 1-.75.75H3.75a.75.75 0 0 1-.75-.75V3.75A.75.75 0 0 1 3.75 3h9.75a.75.75 0 1 0 0-1.5H3.75A2.25 2.25 0 0 0 1.5 3.75z"
19
+ clipRule="evenodd"
20
+ />
21
+ </svg>
22
+ );
23
+ export default PencilSquareIcon;
@@ -0,0 +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 24 24"
9
+ {...props}
10
+ >
11
+ <g fill="#1E1E1E" clipPath="url(#person-circle_svg__a)">
12
+ <path d="M16.5 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0" />
13
+ <path
14
+ fillRule="evenodd"
15
+ d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0M12 1.5a10.5 10.5 0 0 0-8.202 17.055C4.863 16.839 7.208 15 12 15c4.793 0 7.136 1.837 8.202 3.555A10.5 10.5 0 0 0 12 1.5"
16
+ clipRule="evenodd"
17
+ />
18
+ </g>
19
+ <defs>
20
+ <clipPath id="person-circle_svg__a">
21
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
25
+ );
26
+ export default PersonCircleIcon;
@@ -0,0 +1,17 @@
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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M12 6a.75.75 0 0 1 .75.75v4.5h4.5a.75.75 0 1 1 0 1.5h-4.5v4.5a.75.75 0 1 1-1.5 0v-4.5h-4.5a.75.75 0 1 1 0-1.5h4.5v-4.5A.75.75 0 0 1 12 6"
14
+ />
15
+ </svg>
16
+ );
17
+ export default PlusIcon;
@@ -0,0 +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 24 24"
9
+ {...props}
10
+ >
11
+ <path fill={props?.fill ? props.fill : '#1E1E1E'} d="M3.75 12a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" />
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M7.5 1.5a3 3 0 0 0-3 3v3H3a3 3 0 0 0-3 3V15a3 3 0 0 0 3 3h1.5v1.5a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3V18H21a3 3 0 0 0 3-3v-4.5a3 3 0 0 0-3-3h-1.5v-3a3 3 0 0 0-3-3zM6 4.5A1.5 1.5 0 0 1 7.5 3h9A1.5 1.5 0 0 1 18 4.5v3H6zM7.5 12a3 3 0 0 0-3 3v1.5H3A1.5 1.5 0 0 1 1.5 15v-4.5A1.5 1.5 0 0 1 3 9h18a1.5 1.5 0 0 1 1.5 1.5V15a1.5 1.5 0 0 1-1.5 1.5h-1.5V15a3 3 0 0 0-3-3zM18 15v4.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 6 19.5V15a1.5 1.5 0 0 1 1.5-1.5h9A1.5 1.5 0 0 1 18 15"
15
+ />
16
+ </svg>
17
+ );
18
+ export default PrinterIcon;
@@ -0,0 +1,24 @@
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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#Search_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M17.613 15.515a9.75 9.75 0 1 0-2.095 2.097h-.002q.067.09.147.173l5.775 5.775a1.5 1.5 0 0 0 2.123-2.121l-5.775-5.775a1.5 1.5 0 0 0-.173-.15zM18 9.75a8.25 8.25 0 1 1-16.5 0 8.25 8.25 0 0 1 16.5 0"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="Search_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default SearchIcon;
@@ -0,0 +1,37 @@
1
+ import type { SVGProps } from 'react';
2
+ const SpinnerRingResizeIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ stroke="#000"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <style>
12
+ {
13
+ '@keyframes spinner_zKoa{to{transform:rotate(360deg)}}@keyframes spinner_YpZS{0%{stroke-dasharray:0 150;stroke-dashoffset:0}47.5%{stroke-dasharray:42 150;stroke-dashoffset:-16}95%,to{stroke-dasharray:42 150;stroke-dashoffset:-59}}'
14
+ }
15
+ </style>
16
+ <g
17
+ style={{
18
+ transformOrigin: 'center',
19
+ animation: 'spinner_zKoa 2s linear infinite',
20
+ }}
21
+ >
22
+ <circle
23
+ cx={12}
24
+ cy={12}
25
+ r={9.5}
26
+ fill="none"
27
+ strokeWidth={3}
28
+ className="spinner-ring-resize_svg__spinner_V8m1"
29
+ style={{
30
+ strokeLinecap: 'round',
31
+ animation: 'spinner_YpZS 1.5s ease-in-out infinite',
32
+ }}
33
+ />
34
+ </g>
35
+ </svg>
36
+ );
37
+ export default SpinnerRingResizeIcon;
@@ -0,0 +1,24 @@
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 24 24"
9
+ {...props}
10
+ >
11
+ <g clipPath="url(#star_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ d="M4.299 22.275c-.117.666.54 1.187 1.119.89l6.585-3.384 6.583 3.384c.58.297 1.236-.224 1.12-.889l-1.246-7.094 5.283-5.034c.495-.471.24-1.332-.423-1.425l-7.347-1.044-3.276-6.491a.77.77 0 0 0-1.39 0L8.03 7.68.684 8.724c-.662.093-.918.954-.425 1.425l5.285 5.034-1.245 7.095zm7.357-4.15-5.529 2.84 1.041-5.935a.85.85 0 0 0-.244-.757l-4.36-4.155 6.079-.864a.79.79 0 0 0 .59-.432L12 3.335l2.77 5.487a.79.79 0 0 0 .59.432l6.078.862-4.36 4.155a.85.85 0 0 0-.244.759l1.041 5.935-5.529-2.84a.76.76 0 0 0-.691 0z"
15
+ />
16
+ </g>
17
+ <defs>
18
+ <clipPath id="star_svg__a">
19
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ </svg>
23
+ );
24
+ export default StarIcon;
@@ -0,0 +1,17 @@
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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M6.969 6.969a.75.75 0 0 1 1.062 0L12 10.939l3.969-3.97A.75.75 0 1 1 17.03 8.03L13.06 12l3.97 3.969a.752.752 0 0 1-1.062 1.062l-3.97-3.97-3.968 3.97a.753.753 0 0 1-1.225-.244.75.75 0 0 1 .163-.818l3.97-3.97-3.97-3.968a.75.75 0 0 1 0-1.062"
14
+ />
15
+ </svg>
16
+ );
17
+ export default XIcon;
@@ -0,0 +1,17 @@
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 24 24"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#1E1E1E'}
13
+ d="M12.077 2.999h.133c1.233.004 7.48.049 9.165.502a3.02 3.02 0 0 1 2.122 2.13c.152.57.259 1.325.33 2.103l.015.156.034.39.011.156c.098 1.371.11 2.655.111 2.935v.113a48 48 0 0 1-.123 3.09l-.012.158-.013.155c-.075.858-.186 1.71-.353 2.337a3.01 3.01 0 0 1-2.122 2.13c-1.74.469-8.353.502-9.27.503h-.213c-.463 0-2.38-.009-4.39-.078l-.255-.009-.131-.006-.256-.01-.257-.011c-1.665-.073-3.25-.192-3.981-.39A3.01 3.01 0 0 1 .5 17.224C.333 16.6.222 15.746.147 14.888l-.012-.157-.012-.156A47 47 0 0 1 0 11.52v-.184c.003-.323.015-1.437.096-2.667l.01-.155.005-.078.012-.156.033-.39.015-.156c.072-.778.178-1.534.33-2.103a3.01 3.01 0 0 1 2.123-2.13c.73-.195 2.315-.315 3.98-.39l.255-.01.258-.01.13-.004.256-.01A150 150 0 0 1 11.787 3h.29zM9.6 7.814v7.227l6.236-3.613z"
14
+ />
15
+ </svg>
16
+ );
17
+ export default YoutubeIcon;
@@ -0,0 +1,28 @@
1
+ export { default as AppleIcon } from './AppleIcon';
2
+ export { default as ArrowDownShortIcon } from './ArrowDownShortIcon';
3
+ export { default as AwardFillIcon } from './AwardFillIcon';
4
+ export { default as BarChartIcon } from './BarChartIcon';
5
+ export { default as BoxArrowInLeftIcon } from './BoxArrowInLeftIcon';
6
+ export { default as BroadcastIcon } from './BroadcastIcon';
7
+ export { default as CaretDownFillIcon } from './CaretDownFillIcon';
8
+ export { default as CaretLeftFillIcon } from './CaretLeftFillIcon';
9
+ export { default as CaretRightFillIcon } from './CaretRightFillIcon';
10
+ export { default as CircleIcon } from './CircleIcon';
11
+ export { default as FacebookIcon } from './FacebookIcon';
12
+ export { default as FileEarmarkTextIcon } from './FileEarmarkTextIcon';
13
+ export { default as FileTextIcon } from './FileTextIcon';
14
+ export { default as FilterIcon } from './FilterIcon';
15
+ export { default as GoogleColorIcon } from './GoogleColorIcon';
16
+ export { default as GoogleIcon } from './GoogleIcon';
17
+ export { default as InstagramIcon } from './InstagramIcon';
18
+ export { default as ListIcon } from './ListIcon';
19
+ export { default as ListOlIcon } from './ListOlIcon';
20
+ export { default as PencilSquareIcon } from './PencilSquareIcon';
21
+ export { default as PersonCircleIcon } from './PersonCircleIcon';
22
+ export { default as PlusIcon } from './PlusIcon';
23
+ export { default as PrinterIcon } from './PrinterIcon';
24
+ export { default as SearchIcon } from './SearchIcon';
25
+ export { default as SpinnerRingResizeIcon } from './SpinnerRingResizeIcon';
26
+ export { default as StarIcon } from './StarIcon';
27
+ export { default as XIcon } from './XIcon';
28
+ export { default as YoutubeIcon } from './YoutubeIcon';