app/pb_kits/playbook/pb_icon/docs/_icon_sizes_swift

icon-size

HStack(spacing: Spacing.xSmall) {
  PBIcon.fontAwesome(.atlas, size: .xSmall)
  Text("xSmall")

  PBIcon.fontAwesome(.atlas, size: .small)
  Text("small")

  PBIcon.fontAwesome(.atlas, size: .large)
  Text("large")

  PBIcon.fontAwesome(.atlas, size: .x1)
  Text("x1")

  PBIcon.fontAwesome(.atlas, size: .x2)
  Text("x2")

  PBIcon.fontAwesome(.atlas, size: .x3)
  Text("x3")

  PBIcon.fontAwesome(.atlas, size: .x4)
  Text("x4")

  PBIcon.fontAwesome(.atlas, size: .x5)
  Text("x5")

  PBIcon.fontAwesome(.atlas, size: .x6)
  Text("x6")

  PBIcon.fontAwesome(.atlas, size: .x7)
  Text("x7")

  PBIcon.fontAwesome(.atlas, size: .x8)
  Text("x8")

  PBIcon.fontAwesome(.atlas, size: .x9)
  Text("x9")

  PBIcon.fontAwesome(.atlas, size: .x10)
  Text("x10")
}