clockClockwise property

AppIconData get clockClockwise

regular: clock-clockwise thin: clock-clockwise light: clock-clockwise bold: clock-clockwise fill: clock-clockwise duotone: clock-clockwise

Implementation

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