figmaLogo static method

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

regular: figma-logo thin: figma-logo light: figma-logo bold: figma-logo fill: figma-logo duotone: figma-logo

Implementation

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