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 start add-on</Label>
<div className="flex rounded-lg shadow-sm shadow-black/5">
<span className="inline-flex items-center rounded-s-lg border border-input bg-background px-3 text-sm text-muted-foreground">
https://
</span>
<Input
id={id}
className="z-10 -ms-px rounded-s-none shadow-none"
placeholder="google.com"
type="text"
/>
</div>
</div>
);
}
export { Component };