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