arrowsOutLineHorizontal static method

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

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

Implementation

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