scissors static method

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

regular: scissors thin: scissors light: scissors bold: scissors fill: scissors duotone: scissors

Implementation

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