class Playbook::PbContact::Contact

def contact_icon

def contact_icon
  case contact_type
  when "cell"
    "mobile"
  when "home"
    "phone"
  when "work"
    "phone-office"
  when "email"
    "envelope"
  when "work-cell"
    "phone-laptop"
  when "wrong-phone"
    "phone-slash"
  else # "unknown" || "other"
    "phone"
  end
end