import { Input } from "@/registry/ui/input";
import { Label } from "@/registry/ui/label";
export default function InputWithHelperTextDemo() {
return (
<div className="w-full max-w-xs space-y-2">
<Label htmlFor="email-address">Email Address</Label>
<Input id="email-address" type="email" placeholder="Email" />
<p className="text-[0.8rem] text-muted-foreground">
We'll never share your email with anyone else.
</p>
</div>
);
}
npx shadcn@latest add @shadcnui-blocks/input-08import { Input08 } from "@/components/input-08"<Input08 />