fileTs static method

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

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

Implementation

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