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 { TextArea, TextField } from "@/components/ui/text-field-basic"
export default function TextFieldMultiline() {
return (
<TextField>
<Label>Comment</Label>
<TextArea />
</TextField>
)
}