slidersHorizontal static method

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

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

Implementation

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