Components
Loading preview...
Here is The Input component
@felipemenezes098
npx shadcn@latest add https://21st.dev/r/felipemenezes098/the-inputimport {
Field,
FieldDescription,
FieldGroup,
FieldLabel,
} from '@/components/ui/field-1'
import { Input } from '@/components/ui/input'
export default function Input11() {
return (
<FieldGroup className="w-full max-w-sm">
<Field>
<FieldLabel htmlFor="display-name-input">Display name</FieldLabel>
<Input
id="display-name-input"
placeholder="Enter your name"
defaultValue="shadcn"
/>
<FieldDescription>
Shown on your profile and in comments you post.
</FieldDescription>
</Field>
</FieldGroup>
)
}