Components

import { 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}>Read-only input</Label>
<Input
id={id}
className="read-only:bg-muted"
defaultValue="This is a read-only input"
readOnly
placeholder="Email"
type="email"
/>
</div>
);
}
export { Component };
















































Part of Origin UI — browse the full library on 21st.dev.