penNibStraight static method

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

regular: pen-nib-straight thin: pen-nib-straight light: pen-nib-straight bold: pen-nib-straight fill: pen-nib-straight duotone: pen-nib-straight

Implementation

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