textHThree static method

PhosphorIconData textHThree([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: text-h-three thin: text-h-three light: text-h-three bold: text-h-three fill: text-h-three duotone: text-h-three

Implementation

static PhosphorIconData textHThree(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.textHThree;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.textHThree;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.textHThree;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.textHThree;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.textHThree;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.textHThree;
  }
}