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 { Download } from "lucide-react";
import { useId } from "react";
function Component() {
const id = useId();
return (
<div className="space-y-2 min-w-[300px]">
<Label htmlFor={id}>Input with end icon button</Label>
<div className="flex rounded-lg shadow-sm shadow-black/5">
<Input
id={id}
className="-me-px flex-1 rounded-e-none shadow-none focus-visible:z-10"
placeholder="Email"
type="email"
/>
<button
className="inline-flex w-9 items-center justify-center rounded-e-lg border border-input bg-background text-sm text-muted-foreground/80 outline-offset-2 transition-colors hover:bg-accent hover:text-accent-foreground focus:z-10 focus-visible:outline focus-visible:outline-2 focus-visible:outline-ring/70 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
aria-label="Subscribe"
>
<Download size={16} strokeWidth={2} aria-hidden="true" />
</button>
</div>
</div>
);
}
export { Component };