folderSimple property

AppIconData get folderSimple

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

Implementation

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