class Avo::Fields::Common::BooleanCheckComponent

def classes

def classes
  helpers.class_names({
    "h-5": @size == :sm,
    "h-6": @size == :md,
    "text-green-600": @checked,
    "text-red-600": !@checked,
  })
end