arrowCircleLeft static method

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

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

Implementation

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