calendarMinus static method

PhosphorIconData calendarMinus([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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

Implementation

static PhosphorIconData calendarMinus(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.calendarMinus;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.calendarMinus;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.calendarMinus;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.calendarMinus;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.calendarMinus;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.calendarMinus;
  }
}