@a2v2ai/uikit 0.0.38 → 0.0.39

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 (183) hide show
  1. package/Alert/Alert.d.ts +13 -0
  2. package/Alert/Alert.js +25 -0
  3. package/AlertDialog/AlertDialog.d.ts +43 -0
  4. package/AlertDialog/AlertDialog.js +71 -0
  5. package/Avatar/Avatar.d.ts +14 -0
  6. package/Avatar/Avatar.js +25 -0
  7. package/Badge/Badge.d.ts +11 -0
  8. package/Badge/Badge.js +23 -0
  9. package/Breadcrumb/Breadcrumb.d.ts +19 -0
  10. package/Breadcrumb/Breadcrumb.js +23 -0
  11. package/Button/Button.d.ts +23 -0
  12. package/Button/Button.js +52 -0
  13. package/Calendar/Calendar.d.ts +20 -0
  14. package/Calendar/Calendar.js +78 -0
  15. package/Card/Card.d.ts +16 -0
  16. package/Card/Card.js +28 -0
  17. package/Carousel/Carousel.d.ts +37 -0
  18. package/Carousel/Carousel.js +132 -0
  19. package/ChatBubble/ChatBubble.d.ts +33 -0
  20. package/ChatBubble/ChatBubble.js +107 -0
  21. package/Checkbox/Checkbox.d.ts +12 -0
  22. package/Checkbox/Checkbox.js +20 -0
  23. package/DataTable/DataTable.d.ts +35 -0
  24. package/DataTable/DataTable.js +51 -0
  25. package/Drawer/Drawer.d.ts +33 -0
  26. package/Drawer/Drawer.js +55 -0
  27. package/DropdownMenu/DropdownMenu.d.ts +27 -0
  28. package/DropdownMenu/DropdownMenu.js +35 -0
  29. package/ErrorMessage/ErrorMessage.d.ts +27 -0
  30. package/ErrorMessage/ErrorMessage.js +14 -0
  31. package/Flex/Flex.d.ts +31 -0
  32. package/Flex/Flex.js +64 -0
  33. package/IconButton/IconButton.d.ts +23 -0
  34. package/IconButton/IconButton.js +48 -0
  35. package/Input/Input.d.ts +27 -0
  36. package/Input/Input.js +42 -0
  37. package/InputOTP/InputOTP.d.ts +20 -0
  38. package/InputOTP/InputOTP.js +44 -0
  39. package/Label/Label.d.ts +13 -0
  40. package/Label/Label.js +19 -0
  41. package/Loader/Loader.d.ts +21 -0
  42. package/Loader/Loader.js +30 -0
  43. package/Menubar/Menubar.d.ts +26 -0
  44. package/Menubar/Menubar.js +54 -0
  45. package/Menubar/index.d.ts +1 -0
  46. package/Menubar/index.js +1 -0
  47. package/Pagination/Pagination.d.ts +35 -0
  48. package/Pagination/Pagination.js +37 -0
  49. package/Popover/Popover.d.ts +7 -0
  50. package/Popover/Popover.js +10 -0
  51. package/Progress/Progress.d.ts +17 -0
  52. package/Progress/Progress.js +33 -0
  53. package/RadioGroup/RadioGroup.d.ts +13 -0
  54. package/RadioGroup/RadioGroup.js +26 -0
  55. package/ScrollArea/ScrollArea.d.ts +5 -0
  56. package/ScrollArea/ScrollArea.js +11 -0
  57. package/Select/Select.d.ts +29 -0
  58. package/Select/Select.js +50 -0
  59. package/Separator/Separator.d.ts +4 -0
  60. package/Separator/Separator.js +7 -0
  61. package/Sidebar/Sidebar.d.ts +48 -0
  62. package/Sidebar/Sidebar.js +116 -0
  63. package/Sidebar/index.d.ts +2 -0
  64. package/Sidebar/index.js +1 -0
  65. package/Skeleton/Skeleton.d.ts +4 -0
  66. package/Skeleton/Skeleton.js +7 -0
  67. package/Slider/Slider.d.ts +6 -0
  68. package/Slider/Slider.js +7 -0
  69. package/Spinner/Spinner.d.ts +19 -0
  70. package/Spinner/Spinner.js +31 -0
  71. package/Switch/Switch.d.ts +12 -0
  72. package/Switch/Switch.js +30 -0
  73. package/Table/Table.d.ts +10 -0
  74. package/Table/Table.js +20 -0
  75. package/Tabs/Tabs.d.ts +15 -0
  76. package/Tabs/Tabs.js +24 -0
  77. package/Textarea/Textarea.d.ts +19 -0
  78. package/Textarea/Textarea.js +31 -0
  79. package/Toast/Toast.d.ts +12 -0
  80. package/Toast/Toast.js +25 -0
  81. package/Tooltip/Tooltip.d.ts +17 -0
  82. package/Tooltip/Tooltip.js +29 -0
  83. package/Typography/Typography.d.ts +20 -0
  84. package/Typography/Typography.js +71 -0
  85. package/helpers.d.ts +4 -0
  86. package/helpers.js +5 -0
  87. package/icons.d.ts +1 -0
  88. package/{icons.ts → icons.js} +1 -1
  89. package/index.css +68 -0
  90. package/index.d.ts +42 -0
  91. package/index.js +45 -0
  92. package/lib/typography-types.d.ts +4 -0
  93. package/lib/typography-types.js +118 -0
  94. package/lib/utils.d.ts +3 -0
  95. package/lib/utils.js +14 -0
  96. package/package.json +1 -1
  97. package/Alert/Alert.stories.tsx +0 -121
  98. package/Alert/Alert.tsx +0 -71
  99. package/AlertDialog/AlertDialog.stories.tsx +0 -665
  100. package/AlertDialog/AlertDialog.tsx +0 -241
  101. package/Avatar/Avatar.stories.tsx +0 -128
  102. package/Avatar/Avatar.tsx +0 -71
  103. package/Badge/Badge.stories.tsx +0 -76
  104. package/Badge/Badge.tsx +0 -39
  105. package/Breadcrumb/Breadcrumb.stories.tsx +0 -231
  106. package/Breadcrumb/Breadcrumb.tsx +0 -114
  107. package/Button/Button.stories.tsx +0 -684
  108. package/Button/Button.tsx +0 -107
  109. package/Calendar/Calendar.stories.tsx +0 -291
  110. package/Calendar/Calendar.tsx +0 -246
  111. package/Card/Card.stories.tsx +0 -136
  112. package/Card/Card.tsx +0 -96
  113. package/Carousel/Carousel.stories.tsx +0 -256
  114. package/Carousel/Carousel.tsx +0 -301
  115. package/ChatBubble/ChatBubble.stories.tsx +0 -339
  116. package/ChatBubble/ChatBubble.tsx +0 -179
  117. package/Checkbox/Checkbox.stories.tsx +0 -137
  118. package/Checkbox/Checkbox.tsx +0 -53
  119. package/DataTable/DataTable.stories.tsx +0 -400
  120. package/DataTable/DataTable.tsx +0 -207
  121. package/Drawer/Drawer.stories.tsx +0 -721
  122. package/Drawer/Drawer.tsx +0 -201
  123. package/DropdownMenu/DropdownMenu.stories.tsx +0 -251
  124. package/DropdownMenu/DropdownMenu.tsx +0 -199
  125. package/ErrorMessage/ErrorMessage.stories.tsx +0 -159
  126. package/ErrorMessage/ErrorMessage.tsx +0 -55
  127. package/Flex/Flex.stories.tsx +0 -390
  128. package/Flex/Flex.tsx +0 -102
  129. package/IconButton/IconButton.stories.tsx +0 -566
  130. package/IconButton/IconButton.tsx +0 -95
  131. package/Input/Input.stories.tsx +0 -566
  132. package/Input/Input.tsx +0 -168
  133. package/InputOTP/InputOTP.stories.tsx +0 -246
  134. package/InputOTP/InputOTP.tsx +0 -127
  135. package/Label/Label.stories.tsx +0 -110
  136. package/Label/Label.tsx +0 -44
  137. package/Loader/Loader.stories.tsx +0 -170
  138. package/Loader/Loader.tsx +0 -62
  139. package/Menubar/Menubar.stories.tsx +0 -382
  140. package/Menubar/Menubar.tsx +0 -274
  141. package/Menubar/index.ts +0 -18
  142. package/Pagination/Pagination.stories.tsx +0 -196
  143. package/Pagination/Pagination.tsx +0 -122
  144. package/Popover/Popover.stories.tsx +0 -133
  145. package/Popover/Popover.tsx +0 -31
  146. package/Progress/Progress.stories.tsx +0 -146
  147. package/Progress/Progress.tsx +0 -67
  148. package/RadioGroup/RadioGroup.stories.tsx +0 -159
  149. package/RadioGroup/RadioGroup.tsx +0 -68
  150. package/ScrollArea/ScrollArea.stories.tsx +0 -136
  151. package/ScrollArea/ScrollArea.tsx +0 -46
  152. package/Select/Select.stories.tsx +0 -378
  153. package/Select/Select.tsx +0 -230
  154. package/Separator/Separator.stories.tsx +0 -110
  155. package/Separator/Separator.tsx +0 -29
  156. package/Sidebar/Sidebar.stories.tsx +0 -340
  157. package/Sidebar/Sidebar.tsx +0 -414
  158. package/Sidebar/index.ts +0 -28
  159. package/Skeleton/Skeleton.stories.tsx +0 -117
  160. package/Skeleton/Skeleton.tsx +0 -16
  161. package/Slider/Slider.stories.tsx +0 -216
  162. package/Slider/Slider.tsx +0 -29
  163. package/Spinner/Spinner.stories.tsx +0 -210
  164. package/Spinner/Spinner.tsx +0 -78
  165. package/Switch/Switch.stories.tsx +0 -146
  166. package/Switch/Switch.tsx +0 -59
  167. package/Table/Table.stories.tsx +0 -510
  168. package/Table/Table.tsx +0 -114
  169. package/Tabs/Tabs.stories.tsx +0 -197
  170. package/Tabs/Tabs.tsx +0 -74
  171. package/Textarea/Textarea.stories.tsx +0 -187
  172. package/Textarea/Textarea.tsx +0 -73
  173. package/Toast/Toast.stories.tsx +0 -285
  174. package/Toast/Toast.tsx +0 -59
  175. package/Tooltip/Tooltip.stories.tsx +0 -463
  176. package/Tooltip/Tooltip.tsx +0 -96
  177. package/Typography/Typography.stories.tsx +0 -425
  178. package/Typography/Typography.tsx +0 -106
  179. package/helpers.ts +0 -5
  180. package/index.ts +0 -217
  181. package/lib/typography-types.ts +0 -223
  182. package/lib/utils.ts +0 -15
  183. package/tsconfig.json +0 -22
package/Select/Select.tsx DELETED
@@ -1,230 +0,0 @@
1
- import * as React from "react";
2
- import * as SelectPrimitive from "@radix-ui/react-select";
3
- import { Check, ChevronDown, ChevronUp } from "lucide-react";
4
- import { cva } from "class-variance-authority";
5
-
6
- import { cn } from "../lib/utils";
7
- import { Typography } from "../Typography/Typography";
8
- import { Label } from "../Label/Label";
9
- import { type TextVariant, type TextColor } from "../lib/typography-types";
10
-
11
- type SelectTriggerSize = "small" | "regular" | "large";
12
- type SelectTriggerVariant = "default" | "error";
13
-
14
- const Select = SelectPrimitive.Root;
15
-
16
- const SelectGroup = SelectPrimitive.Group;
17
-
18
- const SelectValue = SelectPrimitive.Value;
19
-
20
- const selectTriggerVariants = cva(
21
- "flex w-full items-center justify-between whitespace-nowrap border bg-white text-main-950 ring-offset-white placeholder:text-grey-400 focus:outline-none focus:ring-2 focus:ring-offset-2 cursor-pointer disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
22
- {
23
- variants: {
24
- size: {
25
- small: "h-8 px-3 text-sm rounded-md",
26
- regular: "h-9 px-3 text-sm rounded-lg",
27
- large: "h-10 px-3 text-base rounded-lg",
28
- },
29
- variant: {
30
- default: "border-grey-300 focus:ring-main-950",
31
- error: "border-error-500 focus:ring-error-200",
32
- },
33
- },
34
- defaultVariants: {
35
- size: "regular",
36
- variant: "default",
37
- },
38
- }
39
- );
40
-
41
- export interface SelectTriggerProps
42
- extends React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> {
43
- size?: SelectTriggerSize;
44
- variant?: SelectTriggerVariant;
45
- label?: string;
46
- labelVariant?: TextVariant;
47
- labelColor?: TextColor;
48
- error?: string;
49
- }
50
-
51
- const SelectTrigger = React.forwardRef<
52
- React.ElementRef<typeof SelectPrimitive.Trigger>,
53
- SelectTriggerProps
54
- >(
55
- (
56
- {
57
- className,
58
- size,
59
- variant,
60
- label,
61
- labelVariant = "body2",
62
- labelColor = "main-800",
63
- error,
64
- children,
65
- id,
66
- ...props
67
- },
68
- ref
69
- ) => {
70
- const computedVariant = error ? "error" : variant;
71
-
72
- return (
73
- <div className="flex flex-col gap-2 w-full">
74
- {label && (
75
- <Label htmlFor={id} variant={labelVariant} color={labelColor}>
76
- {label}
77
- </Label>
78
- )}
79
- <SelectPrimitive.Trigger
80
- ref={ref}
81
- id={id}
82
- className={cn(
83
- selectTriggerVariants({ size, variant: computedVariant }),
84
- className
85
- )}
86
- {...props}
87
- >
88
- {children}
89
- <SelectPrimitive.Icon asChild>
90
- <ChevronDown className="size-4 opacity-50" />
91
- </SelectPrimitive.Icon>
92
- </SelectPrimitive.Trigger>
93
- {error && (
94
- <Typography variant="caption" color="error-600" className="mt-1">
95
- {error}
96
- </Typography>
97
- )}
98
- </div>
99
- );
100
- }
101
- );
102
- SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
103
-
104
- const SelectScrollUpButton = React.forwardRef<
105
- React.ElementRef<typeof SelectPrimitive.ScrollUpButton>,
106
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollUpButton>
107
- >(({ className, ...props }, ref) => (
108
- <SelectPrimitive.ScrollUpButton
109
- ref={ref}
110
- className={cn(
111
- "flex cursor-default items-center justify-center py-1",
112
- className
113
- )}
114
- {...props}
115
- >
116
- <ChevronUp className="size-4" />
117
- </SelectPrimitive.ScrollUpButton>
118
- ));
119
- SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
120
-
121
- const SelectScrollDownButton = React.forwardRef<
122
- React.ElementRef<typeof SelectPrimitive.ScrollDownButton>,
123
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollDownButton>
124
- >(({ className, ...props }, ref) => (
125
- <SelectPrimitive.ScrollDownButton
126
- ref={ref}
127
- className={cn(
128
- "flex cursor-default items-center justify-center py-1",
129
- className
130
- )}
131
- {...props}
132
- >
133
- <ChevronDown className="size-4" />
134
- </SelectPrimitive.ScrollDownButton>
135
- ));
136
- SelectScrollDownButton.displayName =
137
- SelectPrimitive.ScrollDownButton.displayName;
138
-
139
- const SelectContent = React.forwardRef<
140
- React.ElementRef<typeof SelectPrimitive.Content>,
141
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Content>
142
- >(({ className, children, position = "popper", ...props }, ref) => (
143
- <SelectPrimitive.Portal>
144
- <SelectPrimitive.Content
145
- ref={ref}
146
- className={cn(
147
- "relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-lg border border-grey-200 bg-white text-main-950 shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
148
- position === "popper" &&
149
- "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
150
- className
151
- )}
152
- position={position}
153
- {...props}
154
- >
155
- <SelectScrollUpButton />
156
- <SelectPrimitive.Viewport
157
- className={cn(
158
- "p-1",
159
- position === "popper" &&
160
- "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
161
- )}
162
- >
163
- {children}
164
- </SelectPrimitive.Viewport>
165
- <SelectScrollDownButton />
166
- </SelectPrimitive.Content>
167
- </SelectPrimitive.Portal>
168
- ));
169
- SelectContent.displayName = SelectPrimitive.Content.displayName;
170
-
171
- const SelectLabel = React.forwardRef<
172
- React.ElementRef<typeof SelectPrimitive.Label>,
173
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Label>
174
- >(({ className, ...props }, ref) => (
175
- <SelectPrimitive.Label
176
- ref={ref}
177
- className={cn("px-2 py-1.5 text-sm font-semibold text-grey-500", className)}
178
- {...props}
179
- />
180
- ));
181
- SelectLabel.displayName = SelectPrimitive.Label.displayName;
182
-
183
- const SelectItem = React.forwardRef<
184
- React.ElementRef<typeof SelectPrimitive.Item>,
185
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>
186
- >(({ className, children, ...props }, ref) => (
187
- <SelectPrimitive.Item
188
- ref={ref}
189
- className={cn(
190
- "relative flex w-full cursor-default select-none items-center rounded-md py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-grey-100 focus:text-main-950 data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
191
- className
192
- )}
193
- {...props}
194
- >
195
- <span className="absolute right-2 flex size-3.5 items-center justify-center">
196
- <SelectPrimitive.ItemIndicator>
197
- <Check className="size-4" />
198
- </SelectPrimitive.ItemIndicator>
199
- </span>
200
- <SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
201
- </SelectPrimitive.Item>
202
- ));
203
- SelectItem.displayName = SelectPrimitive.Item.displayName;
204
-
205
- const SelectSeparator = React.forwardRef<
206
- React.ElementRef<typeof SelectPrimitive.Separator>,
207
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator>
208
- >(({ className, ...props }, ref) => (
209
- <SelectPrimitive.Separator
210
- ref={ref}
211
- className={cn("-mx-1 my-1 h-px bg-grey-100", className)}
212
- {...props}
213
- />
214
- ));
215
- SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
216
-
217
- export {
218
- Select,
219
- SelectGroup,
220
- SelectValue,
221
- SelectTrigger,
222
- SelectContent,
223
- SelectLabel,
224
- SelectItem,
225
- SelectSeparator,
226
- SelectScrollUpButton,
227
- SelectScrollDownButton,
228
- selectTriggerVariants,
229
- };
230
- export type { SelectTriggerSize, SelectTriggerVariant };
@@ -1,110 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/react"
2
-
3
- import { Flex } from "../Flex/Flex"
4
- import { Typography } from "../Typography/Typography"
5
- import { Separator } from "./Separator"
6
-
7
- const meta: Meta<typeof Separator> = {
8
- title: "Components/Separator",
9
- component: Separator,
10
- parameters: {
11
- layout: "centered",
12
- },
13
- argTypes: {
14
- orientation: {
15
- control: "select",
16
- options: ["horizontal", "vertical"],
17
- description: "The orientation of the separator",
18
- },
19
- },
20
- tags: ["autodocs"],
21
- }
22
-
23
- export default meta
24
- type Story = StoryObj<typeof meta>
25
-
26
- export const Default: Story = {
27
- render: () => (
28
- <div className="w-[300px]">
29
- <div className="space-y-1">
30
- <h4 className="text-sm font-medium leading-none text-white">Radix Primitives</h4>
31
- <p className="text-sm text-grey-400">An open-source UI component library.</p>
32
- </div>
33
- <Separator className="my-4" />
34
- <div className="flex h-5 items-center space-x-4 text-sm text-grey-400">
35
- <div>Blog</div>
36
- <Separator orientation="vertical" />
37
- <div>Docs</div>
38
- <Separator orientation="vertical" />
39
- <div>Source</div>
40
- </div>
41
- </div>
42
- ),
43
- }
44
-
45
- export const Horizontal: Story = {
46
- render: () => (
47
- <div className="w-[300px]">
48
- <p className="text-sm text-grey-400">Above separator</p>
49
- <Separator className="my-4" />
50
- <p className="text-sm text-grey-400">Below separator</p>
51
- </div>
52
- ),
53
- }
54
-
55
- export const Vertical: Story = {
56
- render: () => (
57
- <div className="flex h-5 items-center space-x-4 text-sm text-grey-400">
58
- <div>First</div>
59
- <Separator orientation="vertical" />
60
- <div>Second</div>
61
- <Separator orientation="vertical" />
62
- <div>Third</div>
63
- </div>
64
- ),
65
- }
66
-
67
- export const AllVariants: Story = {
68
- render: () => (
69
- <Flex gap={8}>
70
- <Typography variant="h4" className="text-white">Separator Orientations</Typography>
71
-
72
- <Flex gap={4}>
73
- <Typography variant="body2" className="text-grey-400">Horizontal</Typography>
74
- <div className="w-[300px] bg-white p-4 rounded-lg">
75
- <p className="text-sm text-main-950">Section 1</p>
76
- <Separator className="my-3" />
77
- <p className="text-sm text-main-950">Section 2</p>
78
- <Separator className="my-3" />
79
- <p className="text-sm text-main-950">Section 3</p>
80
- </div>
81
- </Flex>
82
-
83
- <Flex gap={4}>
84
- <Typography variant="body2" className="text-grey-400">Vertical</Typography>
85
- <div className="bg-white p-4 rounded-lg">
86
- <div className="flex h-5 items-center space-x-4 text-sm">
87
- <div>Home</div>
88
- <Separator orientation="vertical" />
89
- <div>Products</div>
90
- <Separator orientation="vertical" />
91
- <div>About</div>
92
- <Separator orientation="vertical" />
93
- <div>Contact</div>
94
- </div>
95
- </div>
96
- </Flex>
97
-
98
- <Flex gap={4}>
99
- <Typography variant="body2" className="text-grey-400">In List</Typography>
100
- <div className="w-[200px] bg-white rounded-lg">
101
- <div className="p-3 text-sm">Item 1</div>
102
- <Separator />
103
- <div className="p-3 text-sm">Item 2</div>
104
- <Separator />
105
- <div className="p-3 text-sm">Item 3</div>
106
- </div>
107
- </Flex>
108
- </Flex>
109
- ),
110
- }
@@ -1,29 +0,0 @@
1
- import * as React from "react"
2
- import * as SeparatorPrimitive from "@radix-ui/react-separator"
3
-
4
- import { cn } from "../lib/utils"
5
-
6
- const Separator = React.forwardRef<
7
- React.ElementRef<typeof SeparatorPrimitive.Root>,
8
- React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>
9
- >(
10
- (
11
- { className, orientation = "horizontal", decorative = true, ...props },
12
- ref
13
- ) => (
14
- <SeparatorPrimitive.Root
15
- ref={ref}
16
- decorative={decorative}
17
- orientation={orientation}
18
- className={cn(
19
- "shrink-0 bg-grey-200",
20
- orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
21
- className
22
- )}
23
- {...props}
24
- />
25
- )
26
- )
27
- Separator.displayName = SeparatorPrimitive.Root.displayName
28
-
29
- export { Separator }