gitFork static method

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

regular: git-fork thin: git-fork light: git-fork bold: git-fork fill: git-fork duotone: git-fork

Implementation

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