fadersHorizontal static method

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

regular: faders-horizontal thin: faders-horizontal light: faders-horizontal bold: faders-horizontal fill: faders-horizontal duotone: faders-horizontal

Implementation

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