codepenLogo static method

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

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

Implementation

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