Components
Loading preview...
Retrieve text input from a user.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/inputimport { Input } from "@/components/ui/input";
export default function DefaultDemo() {
return (
<div className="flex flex-col gap-2 w-3/4">
<div className="flex items-center justify-between gap-2">
<Input aria-labelledby="Demo input" placeholder="Small" size="small" />
<Input aria-labelledby="Demo input" placeholder="Default" />
<Input aria-labelledby="Demo input" placeholder="Large" size="large" />
</div>
</div>
);
}