anchorSimple property

AppIconData get anchorSimple

regular: anchor-simple thin: anchor-simple light: anchor-simple bold: anchor-simple fill: anchor-simple duotone: anchor-simple

Implementation

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