arrowElbowLeft property

AppIconData get arrowElbowLeft

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

Implementation

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