Files
shadcn-ui/apps/www/components/examples/input/with-text.tsx
2023-01-24 19:51:29 +04:00

13 lines
400 B
TypeScript

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