arrowsHorizontal static method

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

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

Implementation

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