arrowSquareLeft static method

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

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

Implementation

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