Files
shadcn-ui/apps/v4/examples/base/input-with-text.tsx
shadcn 62aef1117f fix
2026-01-08 21:27:27 +04:00

13 lines
419 B
TypeScript

import { Input } from "@/examples/base/ui/input"
import { Label } from "@/examples/base/ui/label"
export default function InputWithText() {
return (
<div className="grid w-full max-w-sm items-center gap-3">
<Label htmlFor="email-2">Email</Label>
<Input type="email" id="email-2" placeholder="Email" />
<p className="text-muted-foreground text-sm">Enter your email address.</p>
</div>
)
}