Components
Loading preview...
Upgaraded shadcn/ui Input
npx shadcn@latest add https://21st.dev/r/originui/inputimport { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { useId } from "react";
function Component() {
const id = useId();
return (
<div className="space-y-2 min-w-[300px]">
<Label htmlFor={id}>Input with button</Label>
<div className="flex gap-2">
<Input id={id} className="flex-1" placeholder="Email" type="email" />
<Button variant="outline">Send</Button>
</div>
</div>
);
}
export { Component };