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="space-y-2 min-w-[300px]">
<Label htmlFor={id}>Input with helper text</Label>
<Input id={id} placeholder="Email" type="email" />
<p className="mt-2 text-xs text-muted-foreground" role="region" aria-live="polite">
We won‘t share your email with anyone
</p>
</div>
);
}
export { Component };