arrowLineDown property

AppIconData get arrowLineDown

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

Implementation

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