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 inline start and end add-on</Label>
<div className="relative flex rounded-lg shadow-sm shadow-black/5">
<span className="pointer-events-none z-20 absolute inset-y-0 start-0 flex items-center justify-center ps-3 text-sm text-muted-foreground">
€
</span>
<Input
id={id}
className="-me-px z-10 rounded-e-none ps-6 shadow-none"
placeholder="0.00"
type="text"
/>
<span className="inline-flex items-center rounded-e-lg border border-input bg-background px-3 text-sm text-muted-foreground">
EUR
</span>
</div>
</div>
);
}
export { Component };