bed property

AppIconData get bed

regular: bed thin: bed light: bed bold: bed fill: bed duotone: bed

Implementation

static AppIconData get bed {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.bed;
    case AppIconsStyle.thin:
      return AppIconsThin.bed;
    case AppIconsStyle.light:
      return AppIconsLight.bed;
    case AppIconsStyle.bold:
      return AppIconsBold.bed;
    case AppIconsStyle.fill:
      return AppIconsFill.bed;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.bed;
  }
}