gitlabLogoSimple static method

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

regular: gitlab-logo-simple thin: gitlab-logo-simple light: gitlab-logo-simple bold: gitlab-logo-simple fill: gitlab-logo-simple duotone: gitlab-logo-simple

Implementation

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