arrowsOutLineHorizontal property

AppIconData get arrowsOutLineHorizontal

regular: arrows-out-line-horizontal thin: arrows-out-line-horizontal light: arrows-out-line-horizontal bold: arrows-out-line-horizontal fill: arrows-out-line-horizontal duotone: arrows-out-line-horizontal

Implementation

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