Skip to content

Commit 8e54e38

Browse files
author
Jake Soenneker
committed
Renaming
1 parent 40fd759 commit 8e54e38

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

src/TextOverflow.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/TextOverflowKeyword.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)