pencilLine static method

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

regular: pencil-line thin: pencil-line light: pencil-line bold: pencil-line fill: pencil-line duotone: pencil-line

Implementation

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