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

12 lines
323 B
TypeScript

import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
export function InputWithLabel() {
return (
<div className="grid w-full max-w-sm items-center gap-1.5">
<Label htmlFor="email">Email</Label>
<Input type="email" id="email" placeholder="Email" />
</div>
)
}