arrowsLeftRight property

AppIconData get arrowsLeftRight

regular: arrows-left-right thin: arrows-left-right light: arrows-left-right bold: arrows-left-right fill: arrows-left-right duotone: arrows-left-right

Implementation

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