class Playbook::PbIconStatValue::IconStatValue

def title_size

def title_size
  # rubocop:disable Style/CaseLikeIf
  if size == "lg"
    1
  elsif size == "md"
    2
  else
    3
  end
  # rubocop:enable Style/CaseLikeIf
end