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

19 lines
501 B
TypeScript

import { Field, FieldDescription, FieldLabel } from "@/examples/base/ui/field"
import { Input } from "@/examples/base/ui/input"
export function InputWithDescription() {
return (
<Field>
<FieldLabel htmlFor="input-demo-username">Username</FieldLabel>
<Input
id="input-demo-username"
type="text"
placeholder="Enter your username"
/>
<FieldDescription>
Choose a unique username for your account.
</FieldDescription>
</Field>
)
}