arrowUpLeft property

AppIconData get arrowUpLeft

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

Implementation

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