Function
ButtonGroupSeparator
({
className,
orientation = "vertical",
...props
}: React.ComponentProps<typeof Separator>)
Source from the content-addressed store, hash-verified
| 58 | } |
| 59 | |
| 60 | function ButtonGroupSeparator({ |
| 61 | className, |
| 62 | orientation = "vertical", |
| 63 | ...props |
| 64 | }: React.ComponentProps<typeof Separator>) { |
| 65 | return ( |
| 66 | <Separator |
| 67 | data-slot="button-group-separator" |
| 68 | orientation={orientation} |
| 69 | className={cn( |
| 70 | "bg-input relative !m-0 self-stretch data-[orientation=vertical]:h-auto", |
| 71 | className |
| 72 | )} |
| 73 | {...props} |
| 74 | /> |
| 75 | ) |
| 76 | } |
| 77 | |
| 78 | export { |
| 79 | ButtonGroup, |
Callers
nothing calls this directly
Tested by
no test coverage detected