currencyCny static method

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

regular: currency-cny thin: currency-cny light: currency-cny bold: currency-cny fill: currency-cny duotone: currency-cny

Implementation

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