We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40fd759 commit 8e54e38Copy full SHA for 8e54e38
src/TextOverflow.cs
src/TextOverflowKeyword.cs
@@ -0,0 +1,14 @@
1
+using Intellenum;
2
+
3
+namespace Soenneker.Quark.Enums;
4
5
+/// <summary>
6
+/// An HTML CSS keyword set in .NET enumeration form
7
+/// </summary>
8
+[Intellenum<string>]
9
+public sealed partial class TextOverflowKeywordKeyword
10
+{
11
+ public static readonly TextOverflowKeyword Clip = new("clip");
12
+ public static readonly TextOverflowKeyword Ellipsis = new("ellipsis");
13
+ public static readonly TextOverflowKeyword String = new("string");
14
+}
0 commit comments