We use cookies to ensure you get the best experience on our website. Read our privacy policy

Skip to main content

Directory

Radio Group Component

The RadioGroup component helps organize related radio buttons into logical groups. It provides semantic structure, accessibility features, and flexible styling options.

  • Check Circle

    Semantic Structure: Uses proper fieldset/legend elements

  • Check Circle

    Accessibility: Built with ARIA support and keyboard navigation

  • Check Circle

    Flexible Styling: Customizable appearance for group and title

  • Check Circle

    Nested Content: Works with radio buttons and custom content

Create a simple radio group with a title:

Select your plan

Apple

Banana

Cherry

<RadioGroup title="Select your plan" titleProps={{ class: 'text-lg mb-2' }}>
<Checkbox type="radio" name="plan" value="basic">Apple</Checkbox>
<Checkbox type="radio" name="plan" value="pro">Banana</Checkbox>
<Checkbox type="radio" name="plan" value="enterprise">Cherry</Checkbox>
</RadioGroup>
Choose your theme

Light

Dark

System

<RadioGroup title="Choose your theme">
<Checkbox type="radio" name="theme" value="light">Light</Checkbox>
<Checkbox type="radio" name="theme" value="dark">Dark</Checkbox>
<Checkbox type="radio" name="theme" value="system">System</Checkbox>
</RadioGroup>
Select Layout

Compact

Comfortable

Spacious

<RadioGroup
title="Select Layout"
titleProps={{ class: 'font-bold text-xl text-primary' }}
class="rounded-card p-4 pt-0 border"
>
<Checkbox type="radio" name="layout" value="compact">Compact</Checkbox>
<Checkbox type="radio" name="layout" value="comfortable">Comfortable</Checkbox>
<Checkbox type="radio" name="layout" value="spacious">Spacious</Checkbox>
</RadioGroup>
RadioGroup Component Props Extends <fieldset> HTMLElement
Prop Type Default Description
title string Group title text
titleProps HTMLAttributes<legend> Props for the title element

Limited Time Launch Sale

Create intuitive form experiences with our pre-built RadioGroup component. Get the AstroJS starter template now!

GET 60% OFF!
North Star Themes Logo

Subscribe to our newsletter

Get the latest AstroJS tips and tricks right to your inbox

Email: [email protected]

© 2025 North Star Themes

Web Kit Provided By North Star Themes