arrowLeft property

AppIconData get arrowLeft

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

Implementation

static AppIconData get arrowLeft {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.arrowLeft;
    case AppIconsStyle.thin:
      return AppIconsThin.arrowLeft;
    case AppIconsStyle.light:
      return AppIconsLight.arrowLeft;
    case AppIconsStyle.bold:
      return AppIconsBold.arrowLeft;
    case AppIconsStyle.fill:
      return AppIconsFill.arrowLeft;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.arrowLeft;
  }
}