textbox static method

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

regular: textbox thin: textbox light: textbox bold: textbox fill: textbox duotone: textbox

Implementation

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