arrowElbowUpLeft property

AppIconData get arrowElbowUpLeft

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

Implementation

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