notePencil static method

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

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

Implementation

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