calendarCheck property

AppIconData get calendarCheck

regular: calendar-check thin: calendar-check light: calendar-check bold: calendar-check fill: calendar-check duotone: calendar-check

Implementation

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