Files
shadcn-ui/apps/v4/examples/base/input-with-label.tsx
2026-01-14 09:25:14 +04:00

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>
)
}