@arbor-education/design-system.components 0.0.1

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 (141) hide show
  1. package/.checkov.yml +10 -0
  2. package/.github/CODEOWNERS +7 -0
  3. package/.github/workflows/chromatic.yml +52 -0
  4. package/.github/workflows/pr-checks.yml +18 -0
  5. package/.github/workflows/pr-housekeeping.yaml +16 -0
  6. package/.husky/pre-commit +2 -0
  7. package/.nvmrc +1 -0
  8. package/.pre-commit-config.yaml +28 -0
  9. package/.storybook/main.ts +21 -0
  10. package/.storybook/preview.ts +23 -0
  11. package/.storybook/vitest.setup.ts +7 -0
  12. package/.tflint.hcl +13 -0
  13. package/CODEOWNERS +5 -0
  14. package/README.md +21 -0
  15. package/bin/createComponent.sh +96 -0
  16. package/dist/components/button/Button.d.ts +10 -0
  17. package/dist/components/button/Button.d.ts.map +1 -0
  18. package/dist/components/button/Button.js +8 -0
  19. package/dist/components/button/Button.js.map +1 -0
  20. package/dist/components/card/Card.d.ts +18 -0
  21. package/dist/components/card/Card.d.ts.map +1 -0
  22. package/dist/components/card/Card.js +31 -0
  23. package/dist/components/card/Card.js.map +1 -0
  24. package/dist/components/card/Card.stories.d.ts +86 -0
  25. package/dist/components/card/Card.stories.d.ts.map +1 -0
  26. package/dist/components/card/Card.stories.js +89 -0
  27. package/dist/components/card/Card.stories.js.map +1 -0
  28. package/dist/components/heading/Heading.d.ts +393 -0
  29. package/dist/components/heading/Heading.d.ts.map +1 -0
  30. package/dist/components/heading/Heading.js +12 -0
  31. package/dist/components/heading/Heading.js.map +1 -0
  32. package/dist/components/heading/Heading.stories.d.ts +35 -0
  33. package/dist/components/heading/Heading.stories.d.ts.map +1 -0
  34. package/dist/components/heading/Heading.stories.js +50 -0
  35. package/dist/components/heading/Heading.stories.js.map +1 -0
  36. package/dist/components/heading/HeadingInnerContainer.d.ts +5 -0
  37. package/dist/components/heading/HeadingInnerContainer.d.ts.map +1 -0
  38. package/dist/components/heading/HeadingInnerContainer.js +7 -0
  39. package/dist/components/heading/HeadingInnerContainer.js.map +1 -0
  40. package/dist/components/icon/Icon.d.ts +13 -0
  41. package/dist/components/icon/Icon.d.ts.map +1 -0
  42. package/dist/components/icon/Icon.js +10 -0
  43. package/dist/components/icon/Icon.js.map +1 -0
  44. package/dist/components/icon/Icon.stories.d.ts +11 -0
  45. package/dist/components/icon/Icon.stories.d.ts.map +1 -0
  46. package/dist/components/icon/Icon.stories.js +13 -0
  47. package/dist/components/icon/Icon.stories.js.map +1 -0
  48. package/dist/components/icon/allowedIcons.d.ts +110 -0
  49. package/dist/components/icon/allowedIcons.d.ts.map +1 -0
  50. package/dist/components/icon/allowedIcons.js +117 -0
  51. package/dist/components/icon/allowedIcons.js.map +1 -0
  52. package/dist/components/icon/customIcons/AskArbor.d.ts +3 -0
  53. package/dist/components/icon/customIcons/AskArbor.d.ts.map +1 -0
  54. package/dist/components/icon/customIcons/AskArbor.js +6 -0
  55. package/dist/components/icon/customIcons/AskArbor.js.map +1 -0
  56. package/dist/components/icon/customIcons/CheckSolid.d.ts +3 -0
  57. package/dist/components/icon/customIcons/CheckSolid.d.ts.map +1 -0
  58. package/dist/components/icon/customIcons/CheckSolid.js +9 -0
  59. package/dist/components/icon/customIcons/CheckSolid.js.map +1 -0
  60. package/dist/components/icon/customIcons/Google.d.ts +3 -0
  61. package/dist/components/icon/customIcons/Google.d.ts.map +1 -0
  62. package/dist/components/icon/customIcons/Google.js +7 -0
  63. package/dist/components/icon/customIcons/Google.js.map +1 -0
  64. package/dist/components/icon/customIcons/XSolid.d.ts +3 -0
  65. package/dist/components/icon/customIcons/XSolid.d.ts.map +1 -0
  66. package/dist/components/icon/customIcons/XSolid.js +8 -0
  67. package/dist/components/icon/customIcons/XSolid.js.map +1 -0
  68. package/dist/components/icon/types.d.ts +8 -0
  69. package/dist/components/icon/types.d.ts.map +1 -0
  70. package/dist/components/icon/types.js +2 -0
  71. package/dist/components/icon/types.js.map +1 -0
  72. package/dist/components/pill/Pill.d.ts +8 -0
  73. package/dist/components/pill/Pill.d.ts.map +1 -0
  74. package/dist/components/pill/Pill.js +6 -0
  75. package/dist/components/pill/Pill.js.map +1 -0
  76. package/dist/components/pill/Pill.stories.d.ts +8 -0
  77. package/dist/components/pill/Pill.stories.d.ts.map +1 -0
  78. package/dist/components/pill/Pill.stories.js +10 -0
  79. package/dist/components/pill/Pill.stories.js.map +1 -0
  80. package/dist/index.css +1557 -0
  81. package/dist/index.css.map +1 -0
  82. package/dist/index.d.ts +7 -0
  83. package/dist/index.d.ts.map +1 -0
  84. package/dist/index.js +7 -0
  85. package/dist/index.js.map +1 -0
  86. package/dist/utils/generateUuid.d.ts +2 -0
  87. package/dist/utils/generateUuid.d.ts.map +1 -0
  88. package/dist/utils/generateUuid.js +10 -0
  89. package/dist/utils/generateUuid.js.map +1 -0
  90. package/dist/utils/hooks/useMemoGenerateUuid.d.ts +8 -0
  91. package/dist/utils/hooks/useMemoGenerateUuid.d.ts.map +1 -0
  92. package/dist/utils/hooks/useMemoGenerateUuid.js +8 -0
  93. package/dist/utils/hooks/useMemoGenerateUuid.js.map +1 -0
  94. package/dist/utils/keyboardConstants.d.ts +13 -0
  95. package/dist/utils/keyboardConstants.d.ts.map +1 -0
  96. package/dist/utils/keyboardConstants.js +13 -0
  97. package/dist/utils/keyboardConstants.js.map +1 -0
  98. package/dist/utils/waitForElement.d.ts +2 -0
  99. package/dist/utils/waitForElement.d.ts.map +1 -0
  100. package/dist/utils/waitForElement.js +18 -0
  101. package/dist/utils/waitForElement.js.map +1 -0
  102. package/eslint.config.mts +30 -0
  103. package/package.json +76 -0
  104. package/src/components/button/Button.story.tsx +116 -0
  105. package/src/components/button/Button.test.tsx +49 -0
  106. package/src/components/button/Button.tsx +37 -0
  107. package/src/components/button/button.scss +181 -0
  108. package/src/components/card/Card.stories.tsx +99 -0
  109. package/src/components/card/Card.test.tsx +231 -0
  110. package/src/components/card/Card.tsx +96 -0
  111. package/src/components/card/card.scss +68 -0
  112. package/src/components/heading/Heading.stories.tsx +85 -0
  113. package/src/components/heading/Heading.test.tsx +29 -0
  114. package/src/components/heading/Heading.tsx +17 -0
  115. package/src/components/heading/HeadingInnerContainer.tsx +18 -0
  116. package/src/components/heading/heading.scss +48 -0
  117. package/src/components/icon/Icon.stories.tsx +16 -0
  118. package/src/components/icon/Icon.test.tsx +17 -0
  119. package/src/components/icon/Icon.tsx +27 -0
  120. package/src/components/icon/allowedIcons.tsx +208 -0
  121. package/src/components/icon/customIcons/AskArbor.tsx +28 -0
  122. package/src/components/icon/customIcons/CheckSolid.tsx +43 -0
  123. package/src/components/icon/customIcons/Google.tsx +33 -0
  124. package/src/components/icon/customIcons/XSolid.tsx +32 -0
  125. package/src/components/icon/types.ts +8 -0
  126. package/src/components/pill/Pill.stories.tsx +14 -0
  127. package/src/components/pill/Pill.test.tsx +21 -0
  128. package/src/components/pill/Pill.tsx +24 -0
  129. package/src/components/pill/pill.scss +51 -0
  130. package/src/global.scss +19 -0
  131. package/src/index.scss +7 -0
  132. package/src/index.ts +6 -0
  133. package/src/tokens.scss +1249 -0
  134. package/src/utils/generateUuid.ts +9 -0
  135. package/src/utils/hooks/useMemoGenerateUuid.ts +13 -0
  136. package/src/utils/keyboardConstants.ts +12 -0
  137. package/src/utils/waitForElement.ts +22 -0
  138. package/stylelint.config.mjs +10 -0
  139. package/tsconfig.json +49 -0
  140. package/vitest.config.ts +26 -0
  141. package/vitest.shims.d.ts +1 -0
@@ -0,0 +1,110 @@
1
+ import { type LucideProps } from 'lucide-react';
2
+ import type { CustomIconProps } from './types';
3
+ export declare const allowedIcons: {
4
+ readonly '3-dot': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
5
+ readonly archive: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
6
+ readonly 'arrow-down': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
7
+ readonly 'arrow-left': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
8
+ readonly 'arrow-right-from-line': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
9
+ readonly 'arrow-right': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
10
+ readonly 'arrow-up-right': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ readonly 'arrow-up': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
12
+ readonly 'book-open': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
13
+ readonly camera: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
14
+ readonly 'chart-column-increasing': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
15
+ readonly 'chart-spline': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
16
+ readonly check: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
17
+ readonly 'chevron-down': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
18
+ readonly 'chevron-left': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
19
+ readonly 'chevron-right': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
20
+ readonly 'chevron-up': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
21
+ readonly 'chevrons-left': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
22
+ readonly 'chevrons-right': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
23
+ readonly 'circle-alert': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
24
+ readonly 'circle-check-big': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
25
+ readonly 'circle-check': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
26
+ readonly 'circle-help': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
27
+ readonly 'circle-percent': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
28
+ readonly 'circle-plus': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
29
+ readonly 'circle-x': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
30
+ readonly 'clipboard-list': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
31
+ readonly clipboard: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
32
+ readonly 'clock-3': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
33
+ readonly copy: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
34
+ readonly 'corner-down-left': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
35
+ readonly date: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
36
+ readonly dot: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
37
+ readonly download: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
38
+ readonly 'ellipsis-vertical': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
39
+ readonly ellipsis: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
40
+ readonly expand: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
41
+ readonly 'external-link': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
42
+ readonly 'eye-off': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
43
+ readonly eye: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
44
+ readonly 'favourite-outline': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
45
+ readonly file: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
46
+ readonly files: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
47
+ readonly flag: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
48
+ readonly funnel: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
49
+ readonly grab: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
50
+ readonly 'graduation-cap': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
51
+ readonly 'grid-3x3': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
52
+ readonly group: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
53
+ readonly guardians: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
54
+ readonly history: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
55
+ readonly house: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
56
+ readonly info: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
57
+ readonly 'iteration-ccw': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
58
+ readonly 'layout-list': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
59
+ readonly lightbulb: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
60
+ readonly link: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
61
+ readonly 'list-filter-plus': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
62
+ readonly list: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
63
+ readonly 'lock-open': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
64
+ readonly lock: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
65
+ readonly 'log-out': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
66
+ readonly mail: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
67
+ readonly menu: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
68
+ readonly 'message-square-more': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
69
+ readonly mic: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
70
+ readonly minus: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
71
+ readonly monitor: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
72
+ readonly 'paint-bucket': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
73
+ readonly paperclip: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
74
+ readonly 'party-popper': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
75
+ readonly pencil: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
76
+ readonly percent: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
77
+ readonly phone: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
78
+ readonly pin: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
79
+ readonly plus: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
80
+ readonly projector: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
81
+ readonly redo: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
82
+ readonly save: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
83
+ readonly search: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
84
+ readonly send: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
85
+ readonly settings: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
86
+ readonly share: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
87
+ readonly sheet: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
88
+ readonly shrink: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
89
+ readonly 'sliders-horizontal': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
90
+ readonly smartphone: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
91
+ readonly sorting: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
92
+ readonly sparkles: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
93
+ readonly staff: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
94
+ readonly 'switch-camera': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
95
+ readonly table: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
96
+ readonly trash: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
97
+ readonly 'trending-down': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
98
+ readonly 'trending-up': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
99
+ readonly 'triangle-alert': import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
100
+ readonly undo: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
101
+ readonly upload: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
102
+ readonly user: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
103
+ readonly x: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
104
+ readonly 'ask-arbor': (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
105
+ readonly google: (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
106
+ readonly 'check-solid': (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
107
+ readonly 'favourite-filled': (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
108
+ readonly 'x-solid': (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
109
+ };
110
+ //# sourceMappingURL=allowedIcons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"allowedIcons.d.ts","sourceRoot":"","sources":["../../../src/components/icon/allowedIcons.tsx"],"names":[],"mappings":"AAAA,OAAO,EA2DG,KAAK,WAAW,EA8BzB,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAK/C,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA0GA,eAAe;yCACV,WAAW;gCAGpB,eAAe;CAC1B,CAAC"}
@@ -0,0 +1,117 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Archive, ArrowDown, ArrowDownUp, ArrowLeft, ArrowRight, ArrowRightFromLine, ArrowUp, ArrowUpRight, BookOpen, CalendarFold, Camera, ChartColumnIncreasing, ChartSpline, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight, ChevronUp, CircleAlert, CircleCheck, CircleCheckBig, CirclePercent, CirclePlus, CircleQuestionMark, CircleX, Clipboard, ClipboardList, Clock3, Copy, CornerDownLeft, Dot, Download, Ellipsis, EllipsisVertical, Expand, ExternalLink, Eye, EyeOff, File, Files, Flag, Funnel, GraduationCap, Grid3x3, GripVertical, History, House, Info, IterationCcw, LayoutList, Lightbulb, Link, List, ListFilterPlus, Lock, LockOpen, LogOut, Mail, Menu, MessageSquareMore, Mic, Minimize2, Minus, Monitor, PaintBucket, Paperclip, PartyPopper, Pencil, Percent, Phone, Pin, Plus, Projector, Redo2, Save, Search, Send, Settings, Share, Sheet, SlidersHorizontal, Smartphone, Sparkles, Star, SwitchCamera, Table, Trash2, TrendingDown, TrendingUp, TriangleAlert, Undo2, Upload, User, Users, UsersRound, X, } from 'lucide-react';
3
+ import { AskArbor } from './customIcons/AskArbor';
4
+ import { CheckSolid } from './customIcons/CheckSolid';
5
+ import { Google } from './customIcons/Google';
6
+ import { XSolid } from './customIcons/XSolid';
7
+ export const allowedIcons = {
8
+ // lucide icons
9
+ '3-dot': EllipsisVertical,
10
+ 'archive': Archive,
11
+ 'arrow-down': ArrowDown,
12
+ 'arrow-left': ArrowLeft,
13
+ 'arrow-right-from-line': ArrowRightFromLine,
14
+ 'arrow-right': ArrowRight,
15
+ 'arrow-up-right': ArrowUpRight,
16
+ 'arrow-up': ArrowUp,
17
+ 'book-open': BookOpen,
18
+ 'camera': Camera,
19
+ 'chart-column-increasing': ChartColumnIncreasing,
20
+ 'chart-spline': ChartSpline,
21
+ 'check': Check,
22
+ 'chevron-down': ChevronDown,
23
+ 'chevron-left': ChevronLeft,
24
+ 'chevron-right': ChevronRight,
25
+ 'chevron-up': ChevronUp,
26
+ 'chevrons-left': ChevronsLeft,
27
+ 'chevrons-right': ChevronsRight,
28
+ 'circle-alert': CircleAlert,
29
+ 'circle-check-big': CircleCheckBig,
30
+ 'circle-check': CircleCheck,
31
+ 'circle-help': CircleQuestionMark,
32
+ 'circle-percent': CirclePercent,
33
+ 'circle-plus': CirclePlus,
34
+ 'circle-x': CircleX,
35
+ 'clipboard-list': ClipboardList,
36
+ 'clipboard': Clipboard,
37
+ 'clock-3': Clock3,
38
+ 'copy': Copy,
39
+ 'corner-down-left': CornerDownLeft,
40
+ 'date': CalendarFold,
41
+ 'dot': Dot,
42
+ 'download': Download,
43
+ 'ellipsis-vertical': EllipsisVertical,
44
+ 'ellipsis': Ellipsis,
45
+ 'expand': Expand,
46
+ 'external-link': ExternalLink,
47
+ 'eye-off': EyeOff,
48
+ 'eye': Eye,
49
+ 'favourite-outline': Star,
50
+ 'file': File,
51
+ 'files': Files,
52
+ 'flag': Flag,
53
+ 'funnel': Funnel,
54
+ 'grab': GripVertical,
55
+ 'graduation-cap': GraduationCap,
56
+ 'grid-3x3': Grid3x3,
57
+ 'group': UsersRound,
58
+ 'guardians': Users,
59
+ 'history': History,
60
+ 'house': House,
61
+ 'info': Info,
62
+ 'iteration-ccw': IterationCcw,
63
+ 'layout-list': LayoutList,
64
+ 'lightbulb': Lightbulb,
65
+ 'link': Link,
66
+ 'list-filter-plus': ListFilterPlus,
67
+ 'list': List,
68
+ 'lock-open': LockOpen,
69
+ 'lock': Lock,
70
+ 'log-out': LogOut,
71
+ 'mail': Mail,
72
+ 'menu': Menu,
73
+ 'message-square-more': MessageSquareMore,
74
+ 'mic': Mic,
75
+ 'minus': Minus,
76
+ 'monitor': Monitor,
77
+ 'paint-bucket': PaintBucket,
78
+ 'paperclip': Paperclip,
79
+ 'party-popper': PartyPopper,
80
+ 'pencil': Pencil,
81
+ 'percent': Percent,
82
+ 'phone': Phone,
83
+ 'pin': Pin,
84
+ 'plus': Plus,
85
+ 'projector': Projector,
86
+ 'redo': Redo2,
87
+ 'save': Save,
88
+ 'search': Search,
89
+ 'send': Send,
90
+ 'settings': Settings,
91
+ 'share': Share,
92
+ 'sheet': Sheet,
93
+ 'shrink': Minimize2,
94
+ 'sliders-horizontal': SlidersHorizontal,
95
+ 'smartphone': Smartphone,
96
+ 'sorting': ArrowDownUp,
97
+ 'sparkles': Sparkles,
98
+ 'staff': GraduationCap,
99
+ 'switch-camera': SwitchCamera,
100
+ 'table': Table,
101
+ 'trash': Trash2,
102
+ 'trending-down': TrendingDown,
103
+ 'trending-up': TrendingUp,
104
+ 'triangle-alert': TriangleAlert,
105
+ 'undo': Undo2,
106
+ 'upload': Upload,
107
+ 'user': User,
108
+ 'x': X,
109
+ // custom icons
110
+ 'ask-arbor': AskArbor,
111
+ 'google': Google,
112
+ // solid icons
113
+ 'check-solid': (props) => _jsx(CheckSolid, { ...props }),
114
+ 'favourite-filled': (props) => (_jsx(Star, { ...props, fill: props.color })),
115
+ 'x-solid': (props) => _jsx(XSolid, { ...props }),
116
+ };
117
+ //# sourceMappingURL=allowedIcons.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"allowedIcons.js","sourceRoot":"","sources":["../../../src/components/icon/allowedIcons.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { CustomIconProps } from '../types';
2
+ export declare const AskArbor: (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=AskArbor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AskArbor.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/AskArbor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD,eAAO,MAAM,QAAQ,GAAI,OAAO,eAAe,4CAyB9C,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const AskArbor = (props) => {
3
+ const { size, color, ...rest } = props;
4
+ return (_jsxs("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...rest, children: [_jsx("path", { d: "M19.012 7.25127L22.1143 8.18122C22.4097 8.26883 22.6088 8.55186 22.6088 8.86858C22.6088 9.18531 22.4097 9.46834 22.1143 9.55594L19.012 10.4859L18.1257 13.7407C18.0422 14.0507 17.7724 14.2596 17.4705 14.2596C17.1687 14.2596 16.8989 14.0507 16.8154 13.7407L15.9291 10.4859L12.8268 9.55594C12.5314 9.46834 12.3323 9.18531 12.3323 8.86858C12.3323 8.55186 12.5314 8.26883 12.8268 8.18122L15.9291 7.25127L16.8154 3.99643C16.8989 3.68644 17.1687 3.47754 17.4705 3.47754C17.7724 3.47754 18.0422 3.68644 18.1257 3.99643L19.012 7.25127Z", fill: color }), _jsx("path", { d: "M11.1167 2.31293L13.0181 2.8829C13.1992 2.9366 13.3212 3.11007 13.3212 3.30419C13.3212 3.49831 13.1992 3.67178 13.0181 3.72547L11.1167 4.29544L10.5735 6.29035C10.5223 6.48034 10.357 6.60838 10.172 6.60838C9.98695 6.60838 9.82161 6.48034 9.77044 6.29035L9.22719 4.29544L7.32582 3.72547C7.14474 3.67178 7.02271 3.49831 7.02271 3.30419C7.02271 3.11007 7.14474 2.9366 7.32582 2.8829L9.22719 2.31293L9.77044 0.318028C9.82161 0.128037 9.98695 0 10.172 0C10.357 0 10.5223 0.128037 10.5735 0.318028L11.1167 2.31293Z", fill: color }), _jsx("path", { d: "M10.6567 14.2787L14.9598 15.5687C15.3696 15.6902 15.6458 16.0828 15.6458 16.5221C15.6458 16.9614 15.3696 17.354 14.9598 17.4755L10.6567 18.7655L9.42724 23.2802C9.31142 23.7102 8.93724 24 8.51851 24C8.09979 24 7.72561 23.7102 7.60979 23.2802L6.38033 18.7655L2.07724 17.4755C1.66742 17.354 1.39124 16.9614 1.39124 16.5221C1.39124 16.0828 1.66742 15.6902 2.07724 15.5687L6.38033 14.2787L7.60979 9.76394C7.72561 9.33396 8.09979 9.04419 8.51851 9.04419C8.93724 9.04419 9.31142 9.33396 9.42724 9.76394L10.6567 14.2787Z", fill: color })] }));
5
+ };
6
+ //# sourceMappingURL=AskArbor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AskArbor.js","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/AskArbor.tsx"],"names":[],"mappings":";AAEA,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,KAAsB,EAAE,EAAE;IACjD,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,GAAG,KAAK,CAAC;IACvC,OAAO,CACL,eACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,KAC9B,IAAI,aAER,eACE,CAAC,EAAC,ghBAAghB,EAClhB,IAAI,EAAE,KAAK,GACX,EACF,eACE,CAAC,EAAC,6fAA6f,EAC/f,IAAI,EAAE,KAAK,GACX,EACF,eACE,CAAC,EAAC,kgBAAkgB,EACpgB,IAAI,EAAE,KAAK,GACX,IACE,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { CustomIconProps } from '../types';
2
+ export declare const CheckSolid: (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=CheckSolid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckSolid.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/CheckSolid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAGhD,eAAO,MAAM,UAAU,GAAI,OAAO,eAAe,4CAuChD,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useMemoGenerateUuid } from '../../../utils/hooks/useMemoGenerateUuid';
3
+ export const CheckSolid = (props) => {
4
+ const { size, color, ...rest } = props;
5
+ const maskId = useMemoGenerateUuid({ prefix: 'mask' });
6
+ const clipId = useMemoGenerateUuid({ prefix: 'clip' });
7
+ return (_jsxs("svg", { width: size, height: size, viewBox: "0 0 12 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...rest, children: [_jsxs("defs", { children: [_jsx("clipPath", { id: clipId, children: _jsx("rect", { width: "12", height: "12", fill: "white" }) }), _jsxs("mask", { id: maskId, maskUnits: "userSpaceOnUse", children: [_jsx("rect", { width: "100%", height: "100%", fill: "white" }), _jsx("path", { d: "M3.75 6L5.25 7.5L8.25 4.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })] })] }), _jsx("g", { clipPath: `url(#${clipId})`, mask: `url(#${maskId})`, children: _jsx("rect", { x: "0.75", y: "0.75", width: "10.5", height: "10.5", rx: "5.25", fill: color }) })] }));
8
+ };
9
+ //# sourceMappingURL=CheckSolid.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckSolid.js","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/CheckSolid.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAE/E,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAsB,EAAE,EAAE;IACnD,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,GAAG,KAAK,CAAC;IACvC,MAAM,MAAM,GAAG,mBAAmB,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACvD,MAAM,MAAM,GAAG,mBAAmB,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACvD,OAAO,CACL,eACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,KAC9B,IAAI,aAER,2BACE,mBAAU,EAAE,EAAE,MAAM,YAClB,eAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,OAAO,GAAG,GACnC,EACX,gBAAM,EAAE,EAAE,MAAM,EAAE,SAAS,EAAC,gBAAgB,aAC1C,eAAM,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,GAAQ,EACrD,eACE,CAAC,EAAC,2BAA2B,EAC7B,MAAM,EAAC,OAAO,EACd,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACG,IACF,EACP,YAAG,QAAQ,EAAE,QAAQ,MAAM,GAAG,EAAE,IAAI,EAAE,QAAQ,MAAM,GAAG,YACrD,eACE,CAAC,EAAC,MAAM,EACR,CAAC,EAAC,MAAM,EACR,KAAK,EAAC,MAAM,EACZ,MAAM,EAAC,MAAM,EACb,EAAE,EAAC,MAAM,EACT,IAAI,EAAE,KAAK,GACX,GACA,IACA,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { CustomIconProps } from '../types';
2
+ export declare const Google: (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=Google.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Google.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/Google.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD,eAAO,MAAM,MAAM,GAAI,OAAO,eAAe,4CA8B5C,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const Google = (props) => {
3
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
4
+ const { size, color, ...rest } = props;
5
+ return (_jsxs("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...rest, children: [_jsx("path", { d: "M18.1963 18.0438C20.2182 16.1567 21.1167 13.0117 20.5776 10.0013H12.5352V13.3262H17.118C16.9383 14.4045 16.3092 15.303 15.4107 15.8872L18.1963 18.0438Z", fill: "#4285F4" }), _jsx("path", { d: "M4.89648 15.393C4.97011 15.5379 5.04773 15.6807 5.12936 15.8212C5.21105 15.9618 5.29661 16.1 5.38605 16.2357C5.47555 16.3714 5.56873 16.5045 5.66573 16.635C5.76273 16.7655 5.8633 16.893 5.96755 17.0178C6.07173 17.1426 6.17936 17.2643 6.29048 17.383C6.40155 17.5017 6.51592 17.6172 6.63355 17.7294C6.75117 17.8416 6.87186 17.9504 6.99561 18.0558C7.11936 18.1612 7.24598 18.263 7.37555 18.3613C7.50505 18.4595 7.63723 18.554 7.77211 18.6448C7.90698 18.7355 8.0443 18.8224 8.18411 18.9054C8.32386 18.9884 8.46586 19.0674 8.61011 19.1424C8.75436 19.2173 8.90061 19.2882 9.04886 19.3549C9.19711 19.4216 9.34711 19.4841 9.49892 19.5423C9.65067 19.6005 9.80398 19.6544 9.9588 19.704C10.1136 19.7535 10.2697 19.7987 10.4271 19.8394C10.5845 19.8802 10.7429 19.9164 10.9023 19.9482C11.0617 19.98 11.2219 20.0072 11.3829 20.03C11.5439 20.0527 11.7054 20.0708 11.8674 20.0844C12.0294 20.098 12.1916 20.107 12.3541 20.1114C12.5166 20.1158 12.6791 20.1157 12.8416 20.1109C13.0041 20.1062 13.1663 20.0968 13.3283 20.0828C13.4902 20.0689 13.6517 20.0504 13.8126 20.0273C13.9735 20.0043 14.1337 19.9767 14.293 19.9445C14.4524 19.9124 14.6107 19.8758 14.768 19.8348C14.9253 19.7937 15.0813 19.7482 15.236 19.6983C15.3907 19.6485 15.5439 19.5942 15.6956 19.5357C15.8472 19.4771 15.9971 19.4143 16.1452 19.3473C16.2934 19.2803 16.4394 19.2092 16.5835 19.1338C16.7276 19.0586 16.8694 18.9793 17.009 18.896C17.1486 18.8127 17.2857 18.7255 17.4204 18.6345C17.5551 18.5434 17.6871 18.4486 17.8164 18.3501C17.9457 18.2516 18.0722 18.1495 18.1957 18.0438L15.41 15.8872C13.0288 17.4597 9.07498 16.8757 7.72705 13.1914L4.89648 15.393Z", fill: "#34A853" }), _jsx("path", { d: "M7.72739 13.1914C7.36795 12.0681 7.36795 11.0348 7.72739 9.91152L4.89683 7.70996C3.86345 9.77677 3.54895 12.6971 4.89683 15.393L7.72739 13.1914Z", fill: "#FBBC02" }), _jsx("path", { d: "M7.72705 9.91146C8.71555 6.81134 12.9389 5.01415 15.7695 7.66496L18.2406 5.23877C14.7361 1.86908 7.9068 2.00383 4.89648 7.7099L7.72705 9.91146Z", fill: "#EA4335" })] }));
6
+ };
7
+ //# sourceMappingURL=Google.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Google.js","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/Google.tsx"],"names":[],"mappings":";AAEA,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,KAAsB,EAAE,EAAE;IAC/C,6DAA6D;IAC7D,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,GAAG,KAAK,CAAC;IACvC,OAAO,CACL,eACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,KAC9B,IAAI,aAER,eACE,CAAC,EAAC,yJAAyJ,EAC3J,IAAI,EAAC,SAAS,GACd,EACF,eACE,CAAC,EAAC,wkDAAwkD,EAC1kD,IAAI,EAAC,SAAS,GACd,EACF,eACE,CAAC,EAAC,kJAAkJ,EACpJ,IAAI,EAAC,SAAS,GACd,EACF,eACE,CAAC,EAAC,iJAAiJ,EACnJ,IAAI,EAAC,SAAS,GACd,IACE,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { CustomIconProps } from '../types';
2
+ export declare const XSolid: (props: CustomIconProps) => import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=XSolid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"XSolid.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/XSolid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAGhD,eAAO,MAAM,MAAM,GAAI,OAAO,eAAe,4CA4B5C,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useMemoGenerateUuid } from '../../../utils/hooks/useMemoGenerateUuid';
3
+ export const XSolid = (props) => {
4
+ const { size, color, ...rest } = props;
5
+ const maskId = useMemoGenerateUuid({ prefix: 'mask' });
6
+ return (_jsxs("svg", { width: size, height: size, viewBox: "0 0 12 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...rest, children: [_jsx("defs", { children: _jsxs("mask", { id: maskId, maskUnits: "userSpaceOnUse", children: [_jsx("rect", { width: "100%", height: "100%", fill: "white" }), _jsx("path", { d: "M8 4L4 8M4 4L8 8", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })] }) }), _jsx("g", { mask: `url(#${maskId})`, children: _jsx("rect", { x: "1", y: "1", width: "10", height: "10", rx: "5", fill: color }) })] }));
7
+ };
8
+ //# sourceMappingURL=XSolid.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"XSolid.js","sourceRoot":"","sources":["../../../../src/components/icon/customIcons/XSolid.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAE/E,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,KAAsB,EAAE,EAAE;IAC/C,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,GAAG,KAAK,CAAC;IACvC,MAAM,MAAM,GAAG,mBAAmB,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACvD,OAAO,CACL,eACE,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,KAC9B,IAAI,aAER,yBACE,gBAAM,EAAE,EAAE,MAAM,EAAE,SAAS,EAAC,gBAAgB,aAC1C,eAAM,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,IAAI,EAAC,OAAO,GAAQ,EACrD,eACE,CAAC,EAAC,kBAAkB,EACpB,MAAM,EAAC,OAAO,EACd,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACG,GACF,EACP,YAAG,IAAI,EAAE,QAAQ,MAAM,GAAG,YACxB,eAAM,CAAC,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,EAAC,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,EAAE,EAAC,GAAG,EAAC,IAAI,EAAE,KAAK,GAAI,GAC7D,IACA,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,8 @@
1
+ export type IconSize = 12 | 16 | 24;
2
+ export type CustomIconProps = {
3
+ size: IconSize;
4
+ color?: string;
5
+ role?: string;
6
+ className?: string;
7
+ };
8
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/icon/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;AAEpC,MAAM,MAAM,eAAe,GAAG;IAC5B,IAAI,EAAE,QAAQ,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/icon/types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ export type PillColor = 'orange' | 'blue' | 'green' | 'purple' | 'teal' | 'salmon' | 'yellow';
2
+ type PillProps = {
3
+ text: string;
4
+ color?: PillColor;
5
+ };
6
+ export declare const Pill: ({ text, color }: PillProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=Pill.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pill.d.ts","sourceRoot":"","sources":["../../../src/components/pill/Pill.tsx"],"names":[],"mappings":"AAEA,MAAM,MAAM,SAAS,GAAG,QAAQ,GAC5B,MAAM,GACN,OAAO,GACP,QAAQ,GACR,MAAM,GACN,QAAQ,GACR,QAAQ,CAAC;AAEb,KAAK,SAAS,GAAG;IACf,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,IAAI,GAAI,iBAA2B,SAAS,4CAQxD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const Pill = ({ text, color = 'green' }) => {
4
+ return (_jsx("span", { className: classNames('ds-pill', `ds-pill--${color}`), children: text }));
5
+ };
6
+ //# sourceMappingURL=Pill.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pill.js","sourceRoot":"","sources":["../../../src/components/pill/Pill.tsx"],"names":[],"mappings":";AAAA,OAAO,UAAU,MAAM,YAAY,CAAC;AAepC,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,EAAE,KAAK,GAAG,OAAO,EAAa,EAAE,EAAE;IAC3D,OAAO,CACL,eACE,SAAS,EAAE,UAAU,CAAC,SAAS,EAAE,YAAY,KAAK,EAAE,CAAC,YAEpD,IAAI,GACA,CACR,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { Meta } from '@storybook/react-vite';
2
+ import { Pill } from './Pill';
3
+ declare const meta: Meta<typeof Pill>;
4
+ export declare const Default: {
5
+ args: {};
6
+ };
7
+ export default meta;
8
+ //# sourceMappingURL=Pill.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pill.stories.d.ts","sourceRoot":"","sources":["../../../src/components/pill/Pill.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAG3B,CAAC;AAEF,eAAO,MAAM,OAAO;;CAGnB,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { Pill } from './Pill';
2
+ const meta = {
3
+ title: 'Components/Pill',
4
+ component: Pill,
5
+ };
6
+ export const Default = {
7
+ args: {},
8
+ };
9
+ export default meta;
10
+ //# sourceMappingURL=Pill.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Pill.stories.js","sourceRoot":"","sources":["../../../src/components/pill/Pill.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,MAAM,IAAI,GAAsB;IAC9B,KAAK,EAAE,iBAAiB;IACxB,SAAS,EAAE,IAAI;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,IAAI,EAAE,EACL;CACF,CAAC;AAEF,eAAe,IAAI,CAAC"}