microsoftPowerpointLogo static method

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

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

Implementation

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