mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 13:15:45 +00:00
17 lines
547 B
TypeScript
17 lines
547 B
TypeScript
import { Button } from "@/styles/base-nova/ui/button"
|
|
import { ButtonGroup } from "@/styles/base-nova/ui/button-group"
|
|
import { Field, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
import { Input } from "@/styles/base-nova/ui/input"
|
|
|
|
export function InputButtonGroup() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="input-button-group">Search</FieldLabel>
|
|
<ButtonGroup>
|
|
<Input id="input-button-group" placeholder="Type to search..." />
|
|
<Button variant="outline">Search</Button>
|
|
</ButtonGroup>
|
|
</Field>
|
|
)
|
|
}
|