pencilSimple static method

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

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

Implementation

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