field-input.tsx — ui Source File
Architecture documentation for field-input.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 57c37ad9_153e_0946_9369_d668b162df49["field-input.tsx"] b5f68436_cf6b_fba3_fb29_abf27fd13442["field"] 57c37ad9_153e_0946_9369_d668b162df49 --> b5f68436_cf6b_fba3_fb29_abf27fd13442 9af00736_7b63_3c3c_87d0_68c5200c5d80["input"] 57c37ad9_153e_0946_9369_d668b162df49 --> 9af00736_7b63_3c3c_87d0_68c5200c5d80 style 57c37ad9_153e_0946_9369_d668b162df49 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {
Field,
FieldDescription,
FieldGroup,
FieldLabel,
FieldSet,
} from "@/examples/radix/ui/field"
import { Input } from "@/examples/radix/ui/input"
export default function FieldInput() {
return (
<FieldSet className="w-full max-w-xs">
<FieldGroup>
<Field>
<FieldLabel htmlFor="username">Username</FieldLabel>
<Input id="username" type="text" placeholder="Max Leiter" />
<FieldDescription>
Choose a unique username for your account.
</FieldDescription>
</Field>
<Field>
<FieldLabel htmlFor="password">Password</FieldLabel>
<FieldDescription>
Must be at least 8 characters long.
</FieldDescription>
<Input id="password" type="password" placeholder="••••••••" />
</Field>
</FieldGroup>
</FieldSet>
)
}
Domain
Subdomains
Functions
Dependencies
- field
- input
Source
Frequently Asked Questions
What does field-input.tsx do?
field-input.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, ContentSourcing subdomain.
What functions are defined in field-input.tsx?
field-input.tsx defines 1 function(s): FieldInput.
What does field-input.tsx depend on?
field-input.tsx imports 2 module(s): field, input.
Where is field-input.tsx in the architecture?
field-input.tsx is located at apps/v4/examples/radix/field-input.tsx (domain: DocumentationAtlas, subdomain: ContentSourcing, directory: apps/v4/examples/radix).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free