private static string ValueToClass(this IconDecorations value) { return(value switch { NoDecoration => string.Empty, _ => value.ToString().ToLower(), });
private static string ValueToClass(this IconDecorations value) { return(value switch { NoDecoration => string.Empty, RotatedClockwise => "clockwise rotated", RotatedCounterClockwise => "counterclockwise rotated", _ => value.ToString().ToLower(), });