pencilSimpleLine static method

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

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

Implementation

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