arrowSquareUpLeft property

AppIconData get arrowSquareUpLeft

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

Implementation

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