arrowLineDownLeft property

AppIconData get arrowLineDownLeft

regular: arrow-line-down-left thin: arrow-line-down-left light: arrow-line-down-left bold: arrow-line-down-left fill: arrow-line-down-left duotone: arrow-line-down-left

Implementation

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