arrowLineLeft property

AppIconData get arrowLineLeft

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 AppIconData get arrowLineLeft {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.arrowLineLeft;
    case AppIconsStyle.thin:
      return AppIconsThin.arrowLineLeft;
    case AppIconsStyle.light:
      return AppIconsLight.arrowLineLeft;
    case AppIconsStyle.bold:
      return AppIconsBold.arrowLineLeft;
    case AppIconsStyle.fill:
      return AppIconsFill.arrowLineLeft;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.arrowLineLeft;
  }
}