radio-group-disabled.tsx — ui Source File
Architecture documentation for radio-group-disabled.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR db04041c_4d49_84ff_be8a_a77186f2c5ab["radio-group-disabled.tsx"] e6c524b5_d047_d4f9_50b2_7f100d612cb2["field"] db04041c_4d49_84ff_be8a_a77186f2c5ab --> e6c524b5_d047_d4f9_50b2_7f100d612cb2 654cf81d_2869_1e7e_dc6d_1a0b30a54a2a["radio-group"] db04041c_4d49_84ff_be8a_a77186f2c5ab --> 654cf81d_2869_1e7e_dc6d_1a0b30a54a2a style db04041c_4d49_84ff_be8a_a77186f2c5ab fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { Field, FieldLabel } from "@/examples/base/ui/field"
import { RadioGroup, RadioGroupItem } from "@/examples/base/ui/radio-group"
export function RadioGroupDisabled() {
return (
<RadioGroup defaultValue="option2" className="w-fit">
<Field orientation="horizontal" data-disabled>
<RadioGroupItem value="option1" id="disabled-1" disabled />
<FieldLabel htmlFor="disabled-1" className="font-normal">
Disabled
</FieldLabel>
</Field>
<Field orientation="horizontal">
<RadioGroupItem value="option2" id="disabled-2" />
<FieldLabel htmlFor="disabled-2" className="font-normal">
Option 2
</FieldLabel>
</Field>
<Field orientation="horizontal">
<RadioGroupItem value="option3" id="disabled-3" />
<FieldLabel htmlFor="disabled-3" className="font-normal">
Option 3
</FieldLabel>
</Field>
</RadioGroup>
)
}
Domain
Subdomains
Functions
Dependencies
- field
- radio-group
Source
Frequently Asked Questions
What does radio-group-disabled.tsx do?
radio-group-disabled.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, SearchAPI subdomain.
What functions are defined in radio-group-disabled.tsx?
radio-group-disabled.tsx defines 1 function(s): RadioGroupDisabled.
What does radio-group-disabled.tsx depend on?
radio-group-disabled.tsx imports 2 module(s): field, radio-group.
Where is radio-group-disabled.tsx in the architecture?
radio-group-disabled.tsx is located at apps/v4/examples/base/radio-group-disabled.tsx (domain: DocumentationAtlas, subdomain: SearchAPI, directory: apps/v4/examples/base).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free