Components
Loading preview...
Here is Text Field component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/text-field-basic"use client"
import { Text } from "react-aria-components"
import { Label } from "@/components/ui/text-field-basic"
import { Input, TextField } from "@/components/ui/text-field-basic"
export default function TextFieldDescription() {
return (
<TextField>
<Label>Email</Label>
<Input className="w-fit" />
<Text className="text-sm text-muted-foreground" slot="description">
Enter an email for us to contact you about your order.
</Text>
</TextField>
)
}