arrowLineLeft static method

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

regular: arrow-line-left thin: arrow-line-left light: arrow-line-left bold: arrow-line-left fill: arrow-line-left duotone: arrow-line-left

Implementation

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