ButtonGroupSeparator() — ui Function Reference
Architecture documentation for the ButtonGroupSeparator() function in button-group.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 4cdf39de_916c_17dc_09c3_65014fcfee38["ButtonGroupSeparator()"] 5d01add1_f2e7_2b11_8934_82561fc61c78["button-group.tsx"] 4cdf39de_916c_17dc_09c3_65014fcfee38 -->|defined in| 5d01add1_f2e7_2b11_8934_82561fc61c78 style 4cdf39de_916c_17dc_09c3_65014fcfee38 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/base/ui/button-group.tsx lines 64–80
function ButtonGroupSeparator({
className,
orientation = "vertical",
...props
}: React.ComponentProps<typeof Separator>) {
return (
<Separator
data-slot="button-group-separator"
orientation={orientation}
className={cn(
"cn-button-group-separator relative self-stretch data-horizontal:mx-px data-horizontal:w-auto data-vertical:my-px data-vertical:h-auto",
className
)}
{...props}
/>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does ButtonGroupSeparator() do?
ButtonGroupSeparator() is a function in the ui codebase, defined in apps/v4/registry/bases/base/ui/button-group.tsx.
Where is ButtonGroupSeparator() defined?
ButtonGroupSeparator() is defined in apps/v4/registry/bases/base/ui/button-group.tsx at line 64.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free