fileJsx static method

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

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

Implementation

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