"use client";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export const title = "Input with Description";
const Example = () => (
<div className="w-full max-w-sm space-y-2">
<Label htmlFor="username">Username</Label>
<p className="text-sm text-muted-foreground">
This will be your unique identifier on the platform.
</p>
<Input className="bg-background" id="username" placeholder="johndoe" />
</div>
);
export default Example;
npx shadcn@latest add @shadcnblocks/input-input-standard-2import { InputInputStandard2 } from "@/components/input-input-standard-2"<InputInputStandard2 />