codepenLogo property

AppIconData get codepenLogo

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

Implementation

static AppIconData get codepenLogo {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.codepenLogo;
    case AppIconsStyle.thin:
      return AppIconsThin.codepenLogo;
    case AppIconsStyle.light:
      return AppIconsLight.codepenLogo;
    case AppIconsStyle.bold:
      return AppIconsBold.codepenLogo;
    case AppIconsStyle.fill:
      return AppIconsFill.codepenLogo;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.codepenLogo;
  }
}