arrowUUpLeft property

AppIconData get arrowUUpLeft

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

Implementation

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