mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-26 22:26:05 +00:00
20 lines
434 B
TypeScript
20 lines
434 B
TypeScript
import { Button } from "@/styles/base-nova/ui/button"
|
|
import {
|
|
ButtonGroup,
|
|
ButtonGroupSeparator,
|
|
} from "@/styles/base-nova/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>
|
|
)
|
|
}
|