Components
Loading preview...
Here is Text Field component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/text-field-basicimport { Label } from "@/components/ui/text-field-basic"
import { Input, TextField } from "@/components/ui/text-field-basic"
export default function TextFieldReadonly() {
return (
<TextField isReadOnly defaultValue="abc@adobe.com">
<Label>Email</Label>
<Input />
</TextField>
)
}