mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 23:55:02 +00:00
16 lines
364 B
TypeScript
16 lines
364 B
TypeScript
import { Field, FieldLabel } from "@/examples/base/ui/field"
|
|
import { Input } from "@/examples/base/ui/input"
|
|
|
|
export function InputWithLabel() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="input-demo-email">Email</FieldLabel>
|
|
<Input
|
|
id="input-demo-email"
|
|
type="email"
|
|
placeholder="name@example.com"
|
|
/>
|
|
</Field>
|
|
)
|
|
}
|