# typed: false # frozen_string_literal: true module Ariadne module Form module Radio class Component < Ariadne::Form::BaseInputComponent style do base do [ "h-4", "w-4", "p-px", "inline-flex", "justify-center", "invisible", "peer-checked:visible", "peer-checked:text-zinc-700", "peer-checked:dark:text-zinc-300", ] end end end end end end