@clickhouse/click-ui 0.0.0 → 0.0.2

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 (236) hide show
  1. package/.eslintrc.cjs +1 -0
  2. package/.prettierrc +14 -0
  3. package/.storybook/main.ts +1 -0
  4. package/.storybook/manager.ts +11 -0
  5. package/.storybook/preview-head.html +2 -4
  6. package/.storybook/preview.tsx +13 -4
  7. package/.storybook/theme.ts +16 -0
  8. package/build-tokens.js +6 -6
  9. package/package.json +25 -5
  10. package/public/favicon.ico +0 -0
  11. package/public/logo.svg +17 -0
  12. package/src/App.tsx +102 -39
  13. package/src/components/Accordion/Accordion.stories.tsx +4 -54
  14. package/src/components/Accordion/Accordion.tsx +1 -0
  15. package/src/components/Alert/Alert.stories.tsx +14 -0
  16. package/src/components/Alert/Alert.test.tsx +27 -0
  17. package/src/components/Alert/Alert.tsx +130 -0
  18. package/src/components/Avatar/Avatar.stories.tsx +13 -0
  19. package/src/components/Avatar/Avatar.tsx +64 -0
  20. package/src/components/Badge/Badge.stories.ts +19 -3
  21. package/src/components/Badge/Badge.test.tsx +6 -1
  22. package/src/components/Badge/Badge.tsx +67 -13
  23. package/src/components/BigStat/BigStat.stories.ts +10 -5
  24. package/src/components/BigStat/BigStat.tsx +36 -24
  25. package/src/components/Button/Button.stories.ts +12 -68
  26. package/src/components/Button/Button.test.tsx +2 -2
  27. package/src/components/Button/Button.tsx +59 -41
  28. package/src/components/ButtonGroup/ButtonGroup.stories.ts +3 -3
  29. package/src/components/Card/Card.stories.ts +3 -3
  30. package/src/components/Checkbox/Checkbox.stories.tsx +35 -0
  31. package/src/components/Checkbox/Checkbox.test.tsx +41 -0
  32. package/src/components/Checkbox/Checkbox.tsx +89 -0
  33. package/src/components/ContextMenu/ContextMenu.stories.tsx +73 -0
  34. package/src/components/ContextMenu/ContextMenu.test.tsx +152 -0
  35. package/src/components/ContextMenu/ContextMenu.tsx +155 -0
  36. package/src/components/Dropdown/Dropdown.stories.tsx +64 -0
  37. package/src/components/Dropdown/Dropdown.test.tsx +141 -0
  38. package/src/components/Dropdown/Dropdown.tsx +149 -0
  39. package/src/components/FormField/Label.stories.tsx +39 -0
  40. package/src/components/FormField/Label.tsx +47 -0
  41. package/src/components/FormField/Select.stories.tsx +48 -0
  42. package/src/components/FormField/Select.test.tsx +216 -0
  43. package/src/components/FormField/Select.tsx +574 -0
  44. package/src/components/FormField/SelectContext.tsx +101 -0
  45. package/src/components/FormField/commonElement.tsx +42 -0
  46. package/src/components/GenericMenu.tsx +114 -0
  47. package/src/components/HoverCard/HoverCard.stories.tsx +64 -0
  48. package/src/components/HoverCard/HoverCard.test.tsx +85 -0
  49. package/src/components/HoverCard/HoverCard.tsx +65 -0
  50. package/src/components/Icon/Icon.stories.ts +4 -35
  51. package/src/components/Icon/Icon.tsx +166 -18
  52. package/src/components/Icon/types.ts +78 -1
  53. package/src/components/IconButton/IconButton.stories.ts +25 -7
  54. package/src/components/IconButton/IconButton.test.tsx +32 -0
  55. package/src/components/IconButton/IconButton.tsx +60 -71
  56. package/src/components/Panel/Panel.stories.tsx +25 -0
  57. package/src/components/Panel/Panel.tsx +33 -0
  58. package/src/components/Popover/Popover.stories.tsx +67 -0
  59. package/src/components/Popover/Popover.test.tsx +46 -0
  60. package/src/components/Popover/Popover.tsx +115 -0
  61. package/src/components/RadioGroup/RadioGroup.stories.tsx +43 -0
  62. package/src/components/RadioGroup/RadioGroup.test.tsx +59 -0
  63. package/src/components/RadioGroup/RadioGroup.tsx +149 -0
  64. package/src/components/Separator/Separator.stories.tsx +24 -0
  65. package/src/components/Separator/Separator.tsx +29 -0
  66. package/src/components/SidebarNavigationItem/SidebarNavigationItem.stories.tsx +2 -2
  67. package/src/components/Spacer/Spacer.stories.tsx +20 -0
  68. package/src/components/Spacer/Spacer.tsx +15 -0
  69. package/src/components/Switch/Switch.stories.ts +3 -3
  70. package/src/components/Switch/Switch.tsx +3 -2
  71. package/src/components/Table/Table.stories.tsx +29 -0
  72. package/src/components/Table/Table.tsx +109 -0
  73. package/src/components/Tabs/Tabs.stories.tsx +2 -37
  74. package/src/components/Tooltip/Tooltip.stories.tsx +68 -0
  75. package/src/components/Tooltip/Tooltip.test.tsx +44 -0
  76. package/src/components/Tooltip/Tooltip.tsx +67 -0
  77. package/src/components/Typography/Text/Text.stories.tsx +22 -0
  78. package/src/components/Typography/Text/Text.test.tsx +16 -0
  79. package/src/components/Typography/Text/Text.tsx +30 -0
  80. package/src/components/Typography/Title/Title.stories.tsx +31 -0
  81. package/src/components/Typography/Title/Title.test.tsx +16 -0
  82. package/src/components/Typography/Title/Title.tsx +36 -0
  83. package/src/components/icons/Activity.tsx +30 -0
  84. package/src/components/icons/ArrowDown.tsx +22 -0
  85. package/src/components/icons/ArrowRight.tsx +22 -0
  86. package/src/components/icons/ArrowTriangle.tsx +36 -0
  87. package/src/components/icons/ArrowUp.tsx +22 -0
  88. package/src/components/icons/Backups.tsx +29 -0
  89. package/src/components/icons/Blog.tsx +38 -0
  90. package/src/components/icons/Book.tsx +30 -0
  91. package/src/components/icons/Brackets.tsx +22 -0
  92. package/src/components/icons/Briefcase.tsx +30 -0
  93. package/src/components/icons/Building.tsx +30 -0
  94. package/src/components/icons/BurgerMenu.tsx +22 -0
  95. package/src/components/icons/Cards.tsx +30 -0
  96. package/src/components/icons/CellTower.tsx +21 -0
  97. package/src/components/icons/CheckIcon.tsx +21 -0
  98. package/src/components/icons/CheckInCircle.tsx +39 -0
  99. package/src/components/icons/ChevronDown.tsx +19 -5
  100. package/src/components/icons/ChevronLeft.tsx +22 -0
  101. package/src/components/icons/ChevronRight.tsx +3 -3
  102. package/src/components/icons/ChevronUp.tsx +22 -0
  103. package/src/components/icons/Clock.tsx +37 -0
  104. package/src/components/icons/Cloud.tsx +23 -0
  105. package/src/components/icons/Code.tsx +22 -0
  106. package/src/components/icons/CodeInSquare.tsx +30 -0
  107. package/src/components/icons/Connect.tsx +22 -0
  108. package/src/components/icons/ConnectAlt.tsx +30 -0
  109. package/src/components/icons/Console.tsx +30 -0
  110. package/src/components/icons/Copy.tsx +33 -0
  111. package/src/components/icons/CrossIcon.tsx +29 -0
  112. package/src/components/icons/Data.tsx +36 -0
  113. package/src/components/icons/DatabaseIcon.tsx +27 -29
  114. package/src/components/icons/Disk.tsx +30 -0
  115. package/src/components/icons/Display.tsx +30 -0
  116. package/src/components/icons/Document.tsx +30 -0
  117. package/src/components/icons/DotsHorizontal.tsx +36 -0
  118. package/src/components/icons/DotsVertical.tsx +33 -0
  119. package/src/components/icons/Email.tsx +33 -0
  120. package/src/components/icons/Empty.tsx +14 -0
  121. package/src/components/icons/FilterIcon.tsx +29 -16
  122. package/src/components/icons/Fire.tsx +23 -0
  123. package/src/components/icons/Folder.tsx +20 -0
  124. package/src/components/icons/Gift.tsx +21 -0
  125. package/src/components/icons/HistoryIcon.tsx +13 -13
  126. package/src/components/icons/Home.tsx +29 -0
  127. package/src/components/icons/Http.tsx +22 -0
  128. package/src/components/icons/Icons.mdx +31 -28
  129. package/src/components/icons/InfoInCircleIcon.tsx +37 -0
  130. package/src/components/icons/InformationIcon.tsx +34 -0
  131. package/src/components/icons/InsertRowIcon.tsx +30 -32
  132. package/src/components/icons/Integrations.tsx +29 -0
  133. package/src/components/icons/LightBulb.tsx +40 -0
  134. package/src/components/icons/Lightening.tsx +30 -0
  135. package/src/components/icons/Loading.tsx +57 -0
  136. package/src/components/icons/Metrics.tsx +38 -0
  137. package/src/components/icons/MetricsAlt.tsx +30 -0
  138. package/src/components/icons/Payment.tsx +23 -0
  139. package/src/components/icons/Payments/Amex.tsx +44 -0
  140. package/src/components/icons/Payments/MasterCard.tsx +48 -0
  141. package/src/components/icons/Payments/Paypal.tsx +41 -0
  142. package/src/components/icons/Payments/Visa.tsx +36 -0
  143. package/src/components/icons/Payments/index.tsx +30 -0
  144. package/src/components/icons/Pencil.tsx +30 -0
  145. package/src/components/icons/PieChart.tsx +30 -0
  146. package/src/components/icons/Play.tsx +30 -0
  147. package/src/components/icons/Plus.tsx +22 -0
  148. package/src/components/icons/Popout.tsx +22 -0
  149. package/src/components/icons/PopoverArrow.tsx +22 -0
  150. package/src/components/icons/Question.tsx +30 -0
  151. package/src/components/icons/Refresh.tsx +29 -0
  152. package/src/components/icons/Search.tsx +22 -0
  153. package/src/components/icons/Secure.tsx +30 -0
  154. package/src/components/icons/Services.tsx +23 -0
  155. package/src/components/icons/Settings.tsx +22 -0
  156. package/src/components/icons/Share.tsx +29 -0
  157. package/src/components/icons/SlideIn.tsx +28 -0
  158. package/src/components/icons/SlideOut.tsx +28 -0
  159. package/src/components/icons/SortAltIcon.tsx +18 -20
  160. package/src/components/icons/SortIcon.tsx +24 -0
  161. package/src/components/icons/Sparkle.tsx +23 -0
  162. package/src/components/icons/Speaker.tsx +30 -0
  163. package/src/components/icons/Speed.tsx +29 -0
  164. package/src/components/icons/Star.tsx +23 -0
  165. package/src/components/icons/Support.tsx +37 -0
  166. package/src/components/icons/Table.tsx +30 -0
  167. package/src/components/icons/Taxi.tsx +120 -0
  168. package/src/components/icons/Trash.tsx +22 -0
  169. package/src/components/icons/Upload.tsx +29 -0
  170. package/src/components/icons/Url.tsx +22 -0
  171. package/src/components/icons/UsersIcon.tsx +27 -27
  172. package/src/components/icons/WarningIcon.tsx +30 -0
  173. package/src/components/index.ts +31 -10
  174. package/src/index.ts +2 -2
  175. package/src/styles/types.ts +715 -295
  176. package/src/styles/variables.classic.json +171 -0
  177. package/src/styles/variables.dark.json +447 -129
  178. package/src/styles/variables.json +830 -410
  179. package/src/styles/variables.light.json +339 -179
  180. package/tokens/themes/$themes.json +3657 -1
  181. package/tokens/themes/classic.json +492 -0
  182. package/tokens/themes/component.json +1126 -441
  183. package/tokens/themes/dark.json +1871 -758
  184. package/tokens/themes/light.json +852 -266
  185. package/tokens/themes/primitives.json +294 -210
  186. package/vite.config.ts +6 -4
  187. package/app/.babelrc +0 -27
  188. package/app/.eslintrc.json +0 -6
  189. package/app/.storybook/main.ts +0 -17
  190. package/app/.storybook/preview.tsx +0 -26
  191. package/app/README.md +0 -38
  192. package/app/next.config.js +0 -6
  193. package/app/package-lock.json +0 -28711
  194. package/app/package.json +0 -44
  195. package/app/public/favicon.ico +0 -0
  196. package/app/public/next.svg +0 -1
  197. package/app/public/vercel.svg +0 -1
  198. package/app/src/assets/RightArrow/right-arrow.tsx +0 -17
  199. package/app/src/assets/S3Logo/s3-logo.tsx +0 -31
  200. package/app/src/assets/amazon_s3.svg +0 -9
  201. package/app/src/assets/arrow.svg +0 -3
  202. package/app/src/globals.d.ts +0 -4
  203. package/app/src/pages/_app.tsx +0 -8
  204. package/app/src/pages/_document.tsx +0 -17
  205. package/app/src/pages/api/hello.ts +0 -13
  206. package/app/src/pages/index.tsx +0 -141
  207. package/app/src/pages/label.tsx +0 -27
  208. package/app/src/stories/assets/code-brackets.svg +0 -1
  209. package/app/src/stories/assets/colors.svg +0 -1
  210. package/app/src/stories/assets/comments.svg +0 -1
  211. package/app/src/stories/assets/direction.svg +0 -1
  212. package/app/src/stories/assets/flow.svg +0 -1
  213. package/app/src/stories/assets/plugin.svg +0 -1
  214. package/app/src/stories/assets/repo.svg +0 -1
  215. package/app/src/stories/assets/stackalt.svg +0 -1
  216. package/app/src/styles/Home.module.css +0 -235
  217. package/app/src/styles/globals.css +0 -111
  218. package/app/src/styles/types.ts +0 -1031
  219. package/app/src/styles/variables.classic.css +0 -16
  220. package/app/src/styles/variables.classic.json +0 -31
  221. package/app/src/styles/variables.css +0 -763
  222. package/app/src/styles/variables.dark.css +0 -135
  223. package/app/src/styles/variables.dark.json +0 -339
  224. package/app/src/styles/variables.json +0 -1029
  225. package/app/src/styles/variables.light.css +0 -203
  226. package/app/src/styles/variables.light.json +0 -478
  227. package/app/tokens/themes/$metadata.json +0 -9
  228. package/app/tokens/themes/$themes.json +0 -1
  229. package/app/tokens/themes/classic.json +0 -58
  230. package/app/tokens/themes/component.json +0 -868
  231. package/app/tokens/themes/dark.json +0 -937
  232. package/app/tokens/themes/light.json +0 -1380
  233. package/app/tokens/themes/primitives.json +0 -859
  234. package/app/tsconfig.json +0 -23
  235. package/src/components/FormField/FormField.stories.ts +0 -14
  236. package/src/components/FormField/FormField.tsx +0 -22
@@ -1,24 +1,22 @@
1
1
  import { SVGAttributes } from "react";
2
2
 
3
- function SortAltIcon(props: SVGAttributes<SVGElement>) {
4
- return (
5
- <svg
6
- xmlns='http://www.w3.org/2000/svg'
7
- width='24'
8
- height='24'
9
- fill='none'
10
- viewBox='0 0 24 24'
11
- {...props}
12
- >
13
- <path
14
- stroke='currentColor'
15
- strokeLinecap='round'
16
- strokeLinejoin='round'
17
- strokeWidth='1.5'
18
- d='M3.4 15.4L7 19l3.6-3.6M7 5v14M20.6 8.6L17 5l-3.6 3.6M17 19V5'
19
- ></path>
20
- </svg>
21
- );
22
- }
3
+ const SortAltIcon = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width="24"
7
+ height="24"
8
+ fill="none"
9
+ viewBox="0 0 24 24"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M3.4 15.4 7 19l3.6-3.6M7 5v14M20.6 8.6 17 5l-3.6 3.6M17 19V5"
18
+ />
19
+ </svg>
20
+ );
23
21
 
24
22
  export default SortAltIcon;
@@ -0,0 +1,24 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const SortIcon = (props: SVGAttributes<SVGElement>) => {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="24"
8
+ height="24"
9
+ fill="none"
10
+ viewBox="0 0 24 24"
11
+ {...props}
12
+ >
13
+ <path
14
+ stroke="#161517"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ strokeWidth={1.5}
18
+ d="m16 9-4-4-4 4M8 15l4 4 4-4"
19
+ />
20
+ </svg>
21
+ );
22
+ };
23
+
24
+ export default SortIcon;
@@ -0,0 +1,23 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Sparkle = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M2.996 16.794a4.002 4.002 0 0 1 4.002 4.002 4.002 4.002 0 0 1 4.001-4.002 4.002 4.002 0 0 1-4.001-4.002 4.002 4.002 0 0 1-4.002 4.002ZM13.001 13.793a4.002 4.002 0 0 1 4.002 4.001 4.002 4.002 0 0 1 4.001-4.001 4.002 4.002 0 0 1-4.001-4.002A4.002 4.002 0 0 1 13 13.793v0ZM6.998 6.79A4.002 4.002 0 0 1 11 10.79 4.002 4.002 0 0 1 15 6.79 4.002 4.002 0 0 1 11 2.788 4.002 4.002 0 0 1 6.998 6.79Z"
18
+ clipRule="evenodd"
19
+ />
20
+ </svg>
21
+ );
22
+
23
+ export default Sparkle;
@@ -0,0 +1,30 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Speaker = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M13.999 15.002 6.998 15a4.003 4.003 0 0 1-4.002-4.004v-.998A4.002 4.002 0 0 1 7 5.997h7l3.874-2.647c1.329-.908 3.13.044 3.13 1.652v10.997c0 1.609-1.802 2.56-3.13 1.652L14 15.002Z"
18
+ clipRule="evenodd"
19
+ />
20
+ <path
21
+ stroke="#161517"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ strokeWidth={1.5}
25
+ d="M14 5.998v9.004M5.997 15.002l1.53 3.86a1.8 1.8 0 0 0 1.67 1.142v0c1.272 0 2.142-1.295 1.673-2.489l-.99-2.514"
26
+ />
27
+ </svg>
28
+ );
29
+
30
+ export default Speaker;
@@ -0,0 +1,29 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Speed = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M12.007 10.313A1.69 1.69 0 0 1 13.688 12v.008a1.689 1.689 0 1 1-1.681-1.695M10.807 13.194l-1.25 1.25M16.202 7.798 13.201 10.8"
18
+ />
19
+ <path
20
+ stroke="#161517"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ strokeWidth={1.5}
24
+ d="M18.367 5.634A9.004 9.004 0 1 1 12 2.997v3"
25
+ />
26
+ </svg>
27
+ );
28
+
29
+ export default Speed;
@@ -0,0 +1,23 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Star = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="m7.75 1.87 1.895 3.87 4.24.625-3.068 3.011.724 4.254-3.791-2.01-3.792 2.01.724-4.254-3.068-3.01 4.24-.625L7.75 1.87Z"
18
+ clipRule="evenodd"
19
+ />
20
+ </svg>
21
+ );
22
+
23
+ export default Star;
@@ -0,0 +1,37 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Support = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M16 18H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2Z"
18
+ clipRule="evenodd"
19
+ />
20
+ <path
21
+ stroke="#161517"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ strokeWidth={1.5}
25
+ d="M10.467 11.504v-.207c0-.678.419-1.045.839-1.327.41-.276.82-.636.82-1.3a1.659 1.659 0 0 0-3.318 0M10.466 13.843a.148.148 0 0 0-.15.15.15.15 0 1 0 .15-.15"
26
+ />
27
+ <path
28
+ stroke="#161517"
29
+ strokeLinecap="round"
30
+ strokeLinejoin="round"
31
+ strokeWidth={1.5}
32
+ d="M18 6h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1"
33
+ />
34
+ </svg>
35
+ );
36
+
37
+ export default Support;
@@ -0,0 +1,30 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Table = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2Z"
18
+ clipRule="evenodd"
19
+ />
20
+ <path
21
+ stroke="#161517"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ strokeWidth={1.5}
25
+ d="M3 9h18M3 15h18M12 9v12"
26
+ />
27
+ </svg>
28
+ );
29
+
30
+ export default Table;
@@ -0,0 +1,120 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Taxi = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeWidth={1.5}
15
+ d="m9.368 17.484.003-.004-.003.004Z"
16
+ />
17
+ <mask
18
+ id="a"
19
+ fill="#fff"
20
+ >
21
+ <path d="M3.857 13.714h16.286a.43.43 0 0 0 .383-.622L18.19 8.468a1.286 1.286 0 0 0-1.17-.754H6.98a1.28 1.28 0 0 0-1.162.738l-2.343 4.64a.429.429 0 0 0 .382.622Zm2.734-4.891a.429.429 0 0 1 .39-.252H17.02a.437.437 0 0 1 .398.268l2.029 4.018H4.554L6.59 8.823Z" />
22
+ </mask>
23
+ <path
24
+ fill="#161517"
25
+ d="M3.857 13.714v-1.5 1.5Zm16.286 0v-1.5 1.5Zm.383-.622-1.339.677 1.339-.677ZM18.19 8.468l-1.365.62.012.029.014.027 1.34-.676Zm-1.17-.754v-1.5 1.5Zm-10.04 0-.003 1.5h.004v-1.5Zm-1.162.738 1.34.677.01-.02.01-.021-1.36-.636Zm-2.343 4.64 1.339.677-1.34-.677Zm3.116-4.27L7.93 9.5l.014-.028.012-.027-1.365-.621Zm.39-.25v-1.5 1.5Zm10.039 0 .017-1.5h-.017v1.5Zm.398.267-1.382.583.02.047.022.046 1.34-.677Zm2.029 4.018v1.5h2.438l-1.1-2.176-1.338.676Zm-14.893 0-1.34-.676-1.098 2.176h2.438v-1.5Zm-.697 2.357h16.286v-3H3.857v3Zm16.285 0c.33 0 .654-.084.942-.244l-1.463-2.62c.16-.089.34-.136.523-.136l-.002 3Zm.942-.244c.287-.161.53-.393.702-.673l-2.555-1.573c.096-.156.23-.284.39-.374l1.463 2.62Zm.702-.673c.173-.281.27-.601.284-.93l-2.997-.126c.008-.183.062-.36.158-.517l2.555 1.573Zm.284-.93a1.929 1.929 0 0 0-.205-.951l-2.678 1.353a1.073 1.073 0 0 1-.114-.528l2.997.126Zm-.205-.95-2.336-4.625-2.678 1.352 2.336 4.625 2.678-1.353Zm-2.31-4.57a2.785 2.785 0 0 0-1.027-1.189L16.904 9.18a.214.214 0 0 1-.08-.091l2.732-1.241Zm-1.027-1.189a2.786 2.786 0 0 0-1.508-.444v3a.214.214 0 0 1-.116-.034l1.624-2.522Zm-1.508-.444H6.98v3h10.04v-3Zm-10.036 0a2.78 2.78 0 0 0-1.496.433L7.096 9.18a.22.22 0 0 1-.119.034l.007-3Zm-1.496.433a2.78 2.78 0 0 0-1.029 1.17l2.718 1.27a.22.22 0 0 1-.081.093L5.488 6.647Zm-1.009 1.13-2.343 4.64 2.678 1.352 2.343-4.64L4.48 7.776Zm-2.343 4.639c-.149.294-.22.621-.206.95l2.998-.125c.007.183-.032.365-.114.528l-2.678-1.353Zm-.206.95c.014.33.112.65.285.93l2.555-1.572c.096.156.15.334.158.517l-2.998.126Zm.285.93c.173.281.414.513.702.674l1.463-2.62c.16.09.294.218.39.374l-2.555 1.573Zm.702.674c.288.16.612.244.941.244l-.001-3c.183 0 .363.047.523.136l-1.463 2.62Zm5.04-5.526a1.071 1.071 0 0 1-.396.457L5.937 7.379c-.311.2-.558.486-.712.823l2.731 1.242ZM7.56 9.9c-.173.111-.374.17-.58.17v-3c-.37 0-.733.107-1.044.308L7.56 9.9Zm-.58.17H17.02v-3H6.98v3Zm10.022 0a1.062 1.062 0 0 1-.58-.18l1.672-2.49a1.937 1.937 0 0 0-1.058-.33l-.034 3Zm-.58-.18a1.063 1.063 0 0 1-.387-.469l2.763-1.167a1.937 1.937 0 0 0-.704-.855l-1.673 2.491Zm-.345-.376 2.03 4.018 2.678-1.352-2.03-4.019-2.678 1.353Zm3.369 1.842H4.554v3h14.893v-3ZM5.893 13.533 7.93 9.5 5.252 8.147 3.215 12.18l2.678 1.352Z"
26
+ mask="url(#a)"
27
+ />
28
+ <mask
29
+ id="b"
30
+ fill="#fff"
31
+ >
32
+ <path d="M5.357 15h-1.5a.857.857 0 0 0-.857.857v1.072a.857.857 0 0 0 .857.857h3.429a.428.428 0 0 0 .428-.429A2.36 2.36 0 0 0 5.357 15Zm-1.5 1.929v-1.072h1.5a1.502 1.502 0 0 1 1.438 1.072H3.857Z" />
33
+ </mask>
34
+ <path
35
+ fill="#161517"
36
+ d="m5.357 15 .002-1.5h-.002V15Zm2.357 2.357h1.5v-.002l-1.5.002Zm-3.857-.428h-1.5v1.5h1.5v-1.5Zm0-1.072v-1.5h-1.5v1.5h1.5Zm1.5 0 .002-1.5h-.002v1.5Zm1.438 1.072v1.5h2.014l-.577-1.93-1.437.43ZM5.357 13.5h-1.5v3h1.5v-3Zm-1.5 0c-.625 0-1.225.248-1.667.69l2.122 2.122a.643.643 0 0 1-.455.188v-3Zm-1.667.69a2.357 2.357 0 0 0-.69 1.667h3c0 .17-.068.334-.188.455L2.19 14.19Zm-.69 1.667v1.072h3v-1.072h-3Zm0 1.072c0 .625.248 1.224.69 1.666l2.122-2.121c.12.12.188.284.188.455h-3Zm.69 1.666c.442.442 1.042.69 1.667.69v-3c.17 0 .334.068.455.189L2.19 18.595Zm1.667.69h3.429v-3H3.857v3Zm3.429 0c.511 0 1.002-.203 1.363-.564l-2.12-2.122c.2-.2.473-.313.757-.313v3Zm1.363-.564c.362-.362.565-.852.565-1.364h-3c0-.284.113-.556.314-.758l2.121 2.122Zm.565-1.366a3.86 3.86 0 0 0-1.13-2.725l-2.122 2.122a.86.86 0 0 1 .252.607l3-.004Zm-1.13-2.725a3.86 3.86 0 0 0-2.725-1.13l-.003 3a.86.86 0 0 1 .606.252l2.122-2.121ZM5.357 16.93v-1.072h-3v1.072h3Zm-1.5.428h1.5v-3h-1.5v3Zm1.498 0h.002l1.793-2.405a3.002 3.002 0 0 0-1.791-.595l-.003 3Zm.002 0v.002l2.875-.86a3.003 3.003 0 0 0-1.082-1.547l-1.793 2.406Zm1.438-1.928H3.857v3h2.938v-3Z"
37
+ mask="url(#b)"
38
+ />
39
+ <mask
40
+ id="c"
41
+ fill="#fff"
42
+ >
43
+ <path d="M21 16.929v-1.072a.857.857 0 0 0-.857-.857h-1.5a2.36 2.36 0 0 0-2.357 2.357.429.429 0 0 0 .429.429h3.428a.857.857 0 0 0 .857-.857Zm-2.357-1.072h1.5v1.072h-2.937a1.502 1.502 0 0 1 1.437-1.072Z" />
44
+ </mask>
45
+ <path
46
+ fill="#161517"
47
+ d="M18.643 15v-1.5h-.001l.001 1.5Zm-2.357 2.357-1.5-.002v.002h1.5Zm2.357-1.5v-1.5h-.001l.001 1.5Zm1.5 0h1.5v-1.5h-1.5v1.5Zm0 1.072v1.5h1.5v-1.5h-1.5Zm-2.937 0-1.437-.43-.578 1.93h2.015v-1.5Zm5.294 0v-1.072h-3v1.072h3Zm0-1.072c0-.625-.248-1.225-.69-1.667l-2.121 2.122a.643.643 0 0 1-.189-.455h3Zm-.69-1.667a2.357 2.357 0 0 0-1.667-.69v3a.643.643 0 0 1-.454-.188l2.121-2.122Zm-1.667-.69h-1.5v3h1.5v-3Zm-1.501 0a3.86 3.86 0 0 0-2.725 1.13l2.12 2.122a.86.86 0 0 1 .608-.252l-.003-3Zm-2.725 1.13a3.86 3.86 0 0 0-1.13 2.725l3 .004a.86.86 0 0 1 .25-.607l-2.12-2.121Zm-1.13 2.727c0 .512.202 1.002.564 1.364l2.121-2.122c.201.201.314.474.314.758h-3Zm.564 1.364c.362.361.852.565 1.364.565v-3c.284 0 .556.113.757.313l-2.121 2.122Zm1.364.565h3.428v-3h-3.428v3Zm3.428 0c.625 0 1.225-.249 1.667-.69l-2.121-2.122a.643.643 0 0 1 .454-.188v3Zm1.667-.69c.442-.443.69-1.042.69-1.667h-3c0-.17.068-.334.189-.455l2.121 2.121Zm-3.167-1.239h1.5v-3h-1.5v3Zm0-1.5v1.072h3v-1.072h-3Zm1.5-.428h-2.937v3h2.937v-3Zm-1.5 1.93v-.001l-1.792-2.406a3.003 3.003 0 0 0-1.082 1.546l2.874.86Zm0-.001h.002l-.003-3c-.646 0-1.274.208-1.791.594l1.793 2.406Z"
48
+ mask="url(#c)"
49
+ />
50
+ <mask
51
+ id="d"
52
+ fill="#fff"
53
+ >
54
+ <path d="M21.322 9.857h-.932l-.945-2.093A3.006 3.006 0 0 0 16.71 6h-.1l-.865-3.115a.429.429 0 0 0-.412-.314H8.667a.429.429 0 0 0-.413.314L7.39 6h-.1a3.005 3.005 0 0 0-2.733 1.764L3.61 9.857H2.68c-1.345 0-1.822.75-1.822 1.393a1.395 1.395 0 0 0 1.393 1.393h.101l-.291.643a3.861 3.861 0 0 0-.345 1.602v3.54c.001.46.152.908.43 1.275l-.002.011V21a1.286 1.286 0 0 0 1.286 1.286h1.714A1.286 1.286 0 0 0 6.43 21v-.429h11.143V21a1.286 1.286 0 0 0 1.285 1.286h1.715A1.286 1.286 0 0 0 21.857 21v-1.286l-.002-.01c.278-.368.43-.815.431-1.276v-3.54a3.86 3.86 0 0 0-.343-1.602l-.291-.643h.1a1.394 1.394 0 0 0 1.391-1.393c0-.643-.477-1.393-1.821-1.393ZM1.715 11.25c0-.484.674-.536.964-.536h.519l-.476 1.072H2.25a.537.537 0 0 1-.535-.536Zm7.278-7.822h6.015L15.722 6H8.278l.715-2.572ZM5.572 21a.429.429 0 0 1-.429.428H3.43A.428.428 0 0 1 3 21v-.61c.27.12.562.181.857.181h1.715V21Zm-1.715-1.286a1.286 1.286 0 0 1-1.285-1.286v-3.54c0-.43.09-.856.268-1.247l2.497-5.524a2.146 2.146 0 0 1 1.953-1.26h9.42a2.146 2.146 0 0 1 1.953 1.26l2.497 5.524c.178.391.27.817.269 1.247v3.54a1.286 1.286 0 0 1-1.286 1.286H3.857Zm16.715 1.714h-1.715A.428.428 0 0 1 18.43 21v-.429h1.714c.295 0 .587-.062.857-.181V21a.429.429 0 0 1-.428.428Zm1.178-9.642h-.471l-.476-1.072h.519c.29 0 .964.052.964.536a.536.536 0 0 1-.536.536Z" />
55
+ </mask>
56
+ <path
57
+ stroke="#161517"
58
+ strokeWidth={3}
59
+ d="M21.322 9.857h-.932l-.945-2.093A3.006 3.006 0 0 0 16.71 6h-.1l-.865-3.115a.429.429 0 0 0-.412-.314H8.667a.429.429 0 0 0-.413.314L7.39 6h-.1a3.005 3.005 0 0 0-2.733 1.764L3.61 9.857H2.68c-1.345 0-1.822.75-1.822 1.393a1.395 1.395 0 0 0 1.393 1.393h.101l-.291.643a3.861 3.861 0 0 0-.345 1.602v3.54c.001.46.152.908.43 1.275l-.002.011V21a1.286 1.286 0 0 0 1.286 1.286h1.714A1.286 1.286 0 0 0 6.43 21v-.429h11.143V21a1.286 1.286 0 0 0 1.285 1.286h1.715A1.286 1.286 0 0 0 21.857 21v-1.286l-.002-.01c.278-.368.43-.815.431-1.276v-3.54a3.86 3.86 0 0 0-.343-1.602l-.291-.643h.1a1.394 1.394 0 0 0 1.391-1.393c0-.643-.477-1.393-1.821-1.393ZM1.715 11.25c0-.484.674-.536.964-.536h.519l-.476 1.072H2.25a.537.537 0 0 1-.535-.536Zm7.278-7.822h6.015L15.722 6H8.278l.715-2.572ZM5.572 21a.429.429 0 0 1-.429.428H3.43A.428.428 0 0 1 3 21v-.61c.27.12.562.181.857.181h1.715V21Zm-1.715-1.286a1.286 1.286 0 0 1-1.285-1.286v-3.54c0-.43.09-.856.268-1.247l2.497-5.524a2.146 2.146 0 0 1 1.953-1.26h9.42a2.146 2.146 0 0 1 1.953 1.26l2.497 5.524c.178.391.27.817.269 1.247v3.54a1.286 1.286 0 0 1-1.286 1.286H3.857Zm16.715 1.714h-1.715A.428.428 0 0 1 18.43 21v-.429h1.714c.295 0 .587-.062.857-.181V21a.429.429 0 0 1-.428.428Zm1.178-9.642h-.471l-.476-1.072h.519c.29 0 .964.052.964.536a.536.536 0 0 1-.536.536Z"
60
+ mask="url(#d)"
61
+ />
62
+ <mask
63
+ id="e"
64
+ fill="#fff"
65
+ >
66
+ <path d="M10.715 4.714h-.858v.857h.858v-.857Z" />
67
+ </mask>
68
+ <path
69
+ fill="#161517"
70
+ d="M9.857 4.714v-1.5h-1.5v1.5h1.5Zm.858 0h1.5v-1.5h-1.5v1.5Zm0 .857v1.5h1.5v-1.5h-1.5Zm-.858 0h-1.5v1.5h1.5v-1.5Zm0 .643h.858v-3h-.858v3Zm-.642-1.5v.857h3v-.857h-3Zm1.5-.643h-.858v3h.858v-3Zm.642 1.5v-.857h-3v.857h3Z"
71
+ mask="url(#e)"
72
+ />
73
+ <mask
74
+ id="f"
75
+ fill="#fff"
76
+ >
77
+ <path d="M11.571 3.857h-.857v.857h.857v-.857Z" />
78
+ </mask>
79
+ <path
80
+ fill="#161517"
81
+ d="M10.714 3.857v-1.5h-1.5v1.5h1.5Zm.857 0h1.5v-1.5h-1.5v1.5Zm0 .857v1.5h1.5v-1.5h-1.5Zm-.857 0h-1.5v1.5h1.5v-1.5Zm0 .643h.857v-3h-.857v3Zm-.643-1.5v.857h3v-.857h-3Zm1.5-.643h-.857v3h.857v-3Zm.643 1.5v-.857h-3v.857h3Z"
82
+ mask="url(#f)"
83
+ />
84
+ <mask
85
+ id="g"
86
+ fill="#fff"
87
+ >
88
+ <path d="M12.428 4.714h-.857v.857h.857v-.857Z" />
89
+ </mask>
90
+ <path
91
+ fill="#161517"
92
+ d="M11.571 4.714v-1.5h-1.5v1.5h1.5Zm.857 0h1.5v-1.5h-1.5v1.5Zm0 .857v1.5h1.5v-1.5h-1.5Zm-.857 0h-1.5v1.5h1.5v-1.5Zm0 .643h.857v-3h-.857v3Zm-.643-1.5v.857h3v-.857h-3Zm1.5-.643h-.857v3h.857v-3Zm.643 1.5v-.857h-3v.857h3Z"
93
+ mask="url(#g)"
94
+ />
95
+ <mask
96
+ id="h"
97
+ fill="#fff"
98
+ >
99
+ <path d="M13.286 3.857h-.857v.857h.857v-.857Z" />
100
+ </mask>
101
+ <path
102
+ fill="#161517"
103
+ d="M12.429 3.857v-1.5h-1.5v1.5h1.5Zm.857 0h1.5v-1.5h-1.5v1.5Zm0 .857v1.5h1.5v-1.5h-1.5Zm-.857 0h-1.5v1.5h1.5v-1.5Zm0 .643h.857v-3h-.857v3Zm-.643-1.5v.857h3v-.857h-3Zm1.5-.643h-.857v3h.857v-3Zm.643 1.5v-.857h-3v.857h3Z"
104
+ mask="url(#h)"
105
+ />
106
+ <mask
107
+ id="i"
108
+ fill="#fff"
109
+ >
110
+ <path d="M14.143 4.714h-.857v.857h.857v-.857Z" />
111
+ </mask>
112
+ <path
113
+ fill="#161517"
114
+ d="M13.286 4.714v-1.5h-1.5v1.5h1.5Zm.857 0h1.5v-1.5h-1.5v1.5Zm0 .857v1.5h1.5v-1.5h-1.5Zm-.857 0h-1.5v1.5h1.5v-1.5Zm0 .643h.857v-3h-.857v3Zm-.643-1.5v.857h3v-.857h-3Zm1.5-.643h-.857v3h.857v-3Zm.643 1.5v-.857h-3v.857h3Z"
115
+ mask="url(#i)"
116
+ />
117
+ </svg>
118
+ );
119
+
120
+ export default Taxi;
@@ -0,0 +1,22 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Trash = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M18 6v12.75c0 1.243-1.027 2.25-2.269 2.25h-7.5A2.233 2.233 0 0 1 6 18.75V6M19.5 6h-15M10 3h4M14 10v7M10 17v-7"
18
+ />
19
+ </svg>
20
+ );
21
+
22
+ export default Trash;
@@ -0,0 +1,29 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Upload = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M12 19.813v-7M9.833 14.813 12 12.645l2.167 2.168"
18
+ />
19
+ <path
20
+ stroke="#161517"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ strokeWidth={1.5}
24
+ d="M16 19.813h2.56c1.928 0 3.5-1.572 3.5-3.5s-1.572-3.5-3.5-3.5h-.435v-1c0-3.31-2.69-6-6-6-2.977 0-5.445 2.178-5.913 5.022-2.377.121-4.272 2.07-4.272 4.477a4.5 4.5 0 0 0 4.5 4.5H8"
25
+ />
26
+ </svg>
27
+ );
28
+
29
+ export default Upload;
@@ -0,0 +1,22 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const Url = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={24}
7
+ height={24}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="m17.445 12.778 2.333-2.333a4.401 4.401 0 0 0 0-6.223v0a4.401 4.401 0 0 0-6.223 0l-2.333 2.333M8.89 15.11l6.22-6.22M6.555 11.222l-2.333 2.333a4.401 4.401 0 0 0 0 6.223v0a4.401 4.401 0 0 0 6.223 0l2.333-2.333"
18
+ />
19
+ </svg>
20
+ );
21
+
22
+ export default Url;
@@ -2,42 +2,42 @@ import { SVGAttributes } from "react";
2
2
 
3
3
  export const UsersIcon = (props: SVGAttributes<SVGElement>) => (
4
4
  <svg
5
- width='24'
6
- height='25'
7
- viewBox='0 0 24 25'
8
- fill='none'
9
- xmlns='http://www.w3.org/2000/svg'
5
+ width="24"
6
+ height="25"
7
+ viewBox="0 0 24 25"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
10
  {...props}
11
11
  >
12
12
  <path
13
- d='M15.2158 11.2407C17.0021 11.1757 18.42 9.71476 18.4314 7.92732C18.4038 6.17864 16.9645 4.78308 15.2158 4.80945'
14
- stroke='#161517'
15
- strokeWidth='1.5'
16
- strokeLinecap='round'
17
- strokeLinejoin='round'
13
+ d="M15.2158 11.2407C17.0021 11.1757 18.42 9.71476 18.4314 7.92732C18.4038 6.17864 16.9645 4.78308 15.2158 4.80945"
14
+ stroke="#161517"
15
+ strokeWidth="1.5"
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
18
  />
19
19
  <path
20
- fillRule='evenodd'
21
- clipRule='evenodd'
22
- d='M9.42753 11.2407C11.2138 11.1757 12.6317 9.71476 12.6432 7.92732C12.6156 6.17864 11.1762 4.78308 9.42753 4.80945C7.67884 4.78308 6.23952 6.17864 6.21191 7.92732C6.22292 9.71494 7.64104 11.1762 9.42753 11.2407V11.2407Z'
23
- stroke='#161517'
24
- strokeWidth='1.5'
25
- strokeLinecap='round'
26
- strokeLinejoin='round'
20
+ fillRule="evenodd"
21
+ clipRule="evenodd"
22
+ d="M9.42753 11.2407C11.2138 11.1757 12.6317 9.71476 12.6432 7.92732C12.6156 6.17864 11.1762 4.78308 9.42753 4.80945C7.67884 4.78308 6.23952 6.17864 6.21191 7.92732C6.22292 9.71494 7.64104 11.1762 9.42753 11.2407V11.2407Z"
23
+ stroke="#161517"
24
+ strokeWidth="1.5"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
27
  />
28
28
  <path
29
- d='M16.0015 20.816V18.8151C16.0015 16.6051 14.2099 14.8135 11.9998 14.8135H6.99776C4.7877 14.8135 2.99609 16.6051 2.99609 18.8151V20.816'
30
- stroke='#161517'
31
- strokeWidth='1.5'
32
- strokeLinecap='round'
33
- strokeLinejoin='round'
29
+ d="M16.0015 20.816V18.8151C16.0015 16.6051 14.2099 14.8135 11.9998 14.8135H6.99776C4.7877 14.8135 2.99609 16.6051 2.99609 18.8151V20.816"
30
+ stroke="#161517"
31
+ strokeWidth="1.5"
32
+ strokeLinecap="round"
33
+ strokeLinejoin="round"
34
34
  />
35
35
  <path
36
- d='M21.0042 20.816V17.8147C21.0042 16.1572 19.6605 14.8135 18.0029 14.8135'
37
- stroke='#161517'
38
- strokeWidth='1.5'
39
- strokeLinecap='round'
40
- strokeLinejoin='round'
36
+ d="M21.0042 20.816V17.8147C21.0042 16.1572 19.6605 14.8135 18.0029 14.8135"
37
+ stroke="#161517"
38
+ strokeWidth="1.5"
39
+ strokeLinecap="round"
40
+ strokeLinejoin="round"
41
41
  />
42
42
  </svg>
43
43
  );
@@ -0,0 +1,30 @@
1
+ import { SVGAttributes } from "react";
2
+
3
+ const WarningIcon = (props: SVGAttributes<SVGElement>) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <path
13
+ stroke="#161517"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M12 13.12V9.38M11.999 16.125a.25.25 0 1 0 .002.5.25.25 0 0 0-.002-.5"
18
+ />
19
+ <path
20
+ stroke="#161517"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ strokeWidth={1.5}
24
+ d="m14.029 4.14 7.659 13.403c.89 1.558-.235 3.497-2.03 3.497H4.342c-1.795 0-2.92-1.939-2.03-3.497L9.972 4.14c.897-1.57 3.16-1.57 4.058 0Z"
25
+ clipRule="evenodd"
26
+ />
27
+ </svg>
28
+ );
29
+
30
+ export default WarningIcon;
@@ -1,14 +1,35 @@
1
+ import { IconProps } from "./Icon/types";
1
2
  export { default as Flags } from "./icons/Flags";
2
3
 
3
- export { Accordion } from "./Accordion/Accordion";
4
- export { Badge } from "./Badge/Badge";
5
- export { ButtonGroup } from "./ButtonGroup/ButtonGroup";
6
- export { Button } from "./Button/Button";
7
- export { Card } from "./Card/Card";
4
+ export { Avatar, type AvatarProps } from "./Avatar/Avatar";
5
+ export { Accordion, type AccordionProps } from "./Accordion/Accordion";
6
+ export { Badge, type BadgeProps } from "./Badge/Badge";
7
+ export { ButtonGroup, type ButtonGroupProps } from "./ButtonGroup/ButtonGroup";
8
+ export { Button, type ButtonProps } from "./Button/Button";
9
+ export { Card, type CardProps } from "./Card/Card";
10
+ export { ContextMenu } from "./ContextMenu/ContextMenu";
11
+ export { HoverCard } from "./HoverCard/HoverCard";
8
12
  export { Icon } from "./Icon/Icon";
9
- export { IconButton } from "./IconButton/IconButton";
10
- export { UserIcon as ProfileIcon } from "./icons/UserIcon";
13
+ export { type IconProps };
14
+ export {
15
+ Alert,
16
+ DangerAlert,
17
+ InfoAlert,
18
+ WarningAlert,
19
+ SuccessAlert,
20
+ type AlertProps,
21
+ } from "./Alert/Alert";
22
+ export { Checkbox, type CheckboxProps } from "./Checkbox/Checkbox";
23
+ export { IconButton, type IconButtonProps } from "./IconButton/IconButton";
24
+ export { RadioGroup, type RadioGroupProps } from "./RadioGroup/RadioGroup";
25
+ export { Popover } from "./Popover/Popover";
26
+ export { Select, type SelectProps } from "./FormField/Select";
27
+ export { Spacer, type SpacerProps } from "./Spacer/Spacer";
11
28
  export { Switch } from "./Switch/Switch";
12
- export { SidebarNavigationItem } from "./SidebarNavigationItem/SidebarNavigationItem";
13
- export { TextFieldLabel } from "./FormField/FormField";
14
- export { Tabs } from "./Tabs/Tabs";
29
+ export {
30
+ SidebarNavigationItem,
31
+ type SidebarNavigationItemProps,
32
+ } from "./SidebarNavigationItem/SidebarNavigationItem";
33
+ export { Label, type LabelProps } from "./FormField/Label";
34
+ export { Tabs, type TabsProps } from "./Tabs/Tabs";
35
+ export { Tooltip, TooltipProvider } from "./Tooltip/Tooltip";
package/src/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./components"
2
- export * from "./theme"
1
+ export * from "./components";
2
+ export * from "./theme";