fileTsx static method

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

regular: file-tsx thin: file-tsx light: file-tsx bold: file-tsx fill: file-tsx duotone: file-tsx

Implementation

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