calendarX static method

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

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

Implementation

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