Text Field Uncontrolled

PreviousNext

text-field-uncontrolled-demo

Docs
intentuipage

Preview

Loading preview…
components/docs/forms/text-field/text-field-uncontrolled-demo.tsx
"use client"

import { Label } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
import { TextField } from "@/components/ui/text-field"

export default function TextFieldUncontrolledDemo() {
  return (
    <TextField defaultValue="Irsyad">
      <Label>Name</Label>
      <Input />
    </TextField>
  )
}

Installation

npx shadcn@latest add @intentui/text-field-uncontrolled-demo

Usage

Usage varies by registry entry. Refer to the registry docs or source files below for details.