import { Input } from "@/registry/pure-ui/ui/input";
export default function InputSmallDemo() {
return (
<Input
type="text"
size="sm"
placeholder="Enter text"
aria-label="Enter text"
className="w-full max-w-sm"
/>
);
}
npx shadcn@latest add @pureui/input-small-demoimport { InputSmallDemo } from "@/components/input-small-demo"<InputSmallDemo />