compassTool property

AppIconData get compassTool

regular: compass-tool thin: compass-tool light: compass-tool bold: compass-tool fill: compass-tool duotone: compass-tool

Implementation

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