mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 22:54:18 +00:00
19 lines
501 B
TypeScript
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>
|
|
)
|
|
}
|