microsoftExcelLogo static method

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

regular: microsoft-excel-logo thin: microsoft-excel-logo light: microsoft-excel-logo bold: microsoft-excel-logo fill: microsoft-excel-logo duotone: microsoft-excel-logo

Implementation

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