mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 05:35:48 +00:00
18 lines
541 B
TypeScript
18 lines
541 B
TypeScript
import { Field, FieldGroup, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
import { Input } from "@/styles/base-nova/ui/input"
|
|
|
|
export function InputGrid() {
|
|
return (
|
|
<FieldGroup className="grid max-w-sm grid-cols-2">
|
|
<Field>
|
|
<FieldLabel htmlFor="first-name">First Name</FieldLabel>
|
|
<Input id="first-name" placeholder="Jordan" />
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="last-name">Last Name</FieldLabel>
|
|
<Input id="last-name" placeholder="Lee" />
|
|
</Field>
|
|
</FieldGroup>
|
|
)
|
|
}
|