mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
15 lines
452 B
TypeScript
15 lines
452 B
TypeScript
import { Field, FieldDescription, FieldLabel } from "@/examples/base/ui/field"
|
|
import { Input } from "@/examples/base/ui/input"
|
|
|
|
export function InputDemo() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="input-demo-api-key">API Key</FieldLabel>
|
|
<Input id="input-demo-api-key" type="password" placeholder="sk-..." />
|
|
<FieldDescription>
|
|
Your API key is encrypted and stored securely.
|
|
</FieldDescription>
|
|
</Field>
|
|
)
|
|
}
|