Components
Loading preview...
Upgaraded shadcn/ui Input
npx shadcn@latest add https://21st.dev/r/originui/inputimport { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { useId } from "react";
function Component() {
const id = useId();
return (
<div className="min-w-[300px] block">
<div className="mb-2 flex items-center justify-between gap-1">
<Label htmlFor={id} className="leading-6">
Input with hint
</Label>
<span className="text-sm text-muted-foreground">Optional</span>
</div>
<Input id={id} placeholder="Email" type="email" />
</div>
);
}
export { Component };