MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / ButtonGroupSeparator

Function ButtonGroupSeparator

src/components/ui/button-group.tsx:60–76  ·  view source on GitHub ↗
({
  className,
  orientation = "vertical",
  ...props
}: React.ComponentProps<typeof Separator>)

Source from the content-addressed store, hash-verified

58}
59
60function 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
78export {
79 ButtonGroup,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected