arrowsOutCardinal property

AppIconData get arrowsOutCardinal

regular: arrows-out-cardinal thin: arrows-out-cardinal light: arrows-out-cardinal bold: arrows-out-cardinal fill: arrows-out-cardinal duotone: arrows-out-cardinal

Implementation

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