@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,26 +0,0 @@
1
- import * as React from 'react';
2
- import type { SVGProps } from 'react';
3
- const SvgSearch = (props: SVGProps<SVGSVGElement>) => (
4
- <svg
5
- xmlns="http://www.w3.org/2000/svg"
6
- width="1em"
7
- height="1em"
8
- fill="none"
9
- viewBox="0 0 12 12"
10
- {...props}
11
- >
12
- <g clipPath="url(#Search_svg__a)">
13
- <path
14
- fill="#fff"
15
- fillOpacity={0.5}
16
- 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"
17
- />
18
- </g>
19
- <defs>
20
- <clipPath id="Search_svg__a">
21
- <path fill="#fff" d="M0 0h12v12H0z" />
22
- </clipPath>
23
- </defs>
24
- </svg>
25
- );
26
- export default SvgSearch;
@@ -1,19 +0,0 @@
1
- import * as React from 'react';
2
- import type { SVGProps } from 'react';
3
- const SvgStar = (props: SVGProps<SVGSVGElement>) => (
4
- <svg
5
- xmlns="http://www.w3.org/2000/svg"
6
- width="1em"
7
- height="1em"
8
- fill="none"
9
- viewBox="0 0 16 16"
10
- {...props}
11
- >
12
- <path
13
- fill="#001007"
14
- fillOpacity={0.5}
15
- 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"
16
- />
17
- </svg>
18
- );
19
- export default SvgStar;
package/src/_temp/X.tsx DELETED
@@ -1,19 +0,0 @@
1
- import * as React from 'react';
2
- import type { SVGProps } from 'react';
3
- const SvgX = (props: SVGProps<SVGSVGElement>) => (
4
- <svg
5
- xmlns="http://www.w3.org/2000/svg"
6
- width="1em"
7
- height="1em"
8
- fill="none"
9
- viewBox="0 0 14 14"
10
- {...props}
11
- >
12
- <path
13
- fill="#fff"
14
- fillOpacity={0.75}
15
- 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"
16
- />
17
- </svg>
18
- );
19
- export default SvgX;
@@ -1,19 +0,0 @@
1
- import * as React from 'react';
2
- import type { SVGProps } from 'react';
3
- const SvgYoutube = (props: SVGProps<SVGSVGElement>) => (
4
- <svg
5
- xmlns="http://www.w3.org/2000/svg"
6
- width="1em"
7
- height="1em"
8
- fill="none"
9
- viewBox="0 0 12 9"
10
- {...props}
11
- >
12
- <path
13
- fill="#001007"
14
- fillOpacity={0.75}
15
- 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"
16
- />
17
- </svg>
18
- );
19
- export default SvgYoutube;