copySimple property

AppIconData get copySimple

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

Implementation

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