arrowULeftUp property

AppIconData get arrowULeftUp

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

Implementation

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