houseSimple static method

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

regular: house-simple thin: house-simple light: house-simple bold: house-simple fill: house-simple duotone: house-simple

Implementation

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