Pages
Introduction Colors & Tokens Icons
UI
Button Link Badge Notification Badge Alert Card Spinner Avatar Divider Empty State
Interactive
Modal Side Modal Dropdown Tooltip Accordion Tabs Flash Toast Support Button
Forms
Form Select Toggle Checkbox & Radio Text Fields Date & Time Fields
Layout
Navbar Sidebar Table Pagination Breadcrumbs Selector List
Utilities
Local Time
app_theme v1.39.1

Checkbox & Radio

Tag helpers matching Rails naming: app_theme_check_box_tag and app_theme_radio_button_tag . Keep them atomic and compose groups yourself.

Checkboxes

.demo-stack
  = app_theme_check_box_tag "channels[]", "email", checked: true, label: "Email"
  = app_theme_check_box_tag "channels[]", "sms", label: "SMS"
  = app_theme_check_box_tag "channels[]", "push", label: "Push notifications"

Radio buttons

.demo-stack
  = app_theme_radio_button_tag :plan, "free", checked: true, label: "Free plan"
  = app_theme_radio_button_tag :plan, "pro", label: "Pro plan"
  = app_theme_radio_button_tag :plan, "enterprise", label: "Enterprise"