mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
import { Button } from "@/examples/base/ui/button"
|
|
import {
|
|
ButtonGroup,
|
|
ButtonGroupSeparator,
|
|
} from "@/examples/base/ui/button-group"
|
|
|
|
export default function ButtonGroupSeparatorDemo() {
|
|
return (
|
|
<ButtonGroup>
|
|
<Button variant="secondary" size="sm">
|
|
Copy
|
|
</Button>
|
|
<ButtonGroupSeparator />
|
|
<Button variant="secondary" size="sm">
|
|
Paste
|
|
</Button>
|
|
</ButtonGroup>
|
|
)
|
|
}
|