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 TextFieldDemo() {
return (
<TextField>
<Label>First name</Label>
<Input />
</TextField>
)
}