-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,42 @@ | ||
namespace BlazorBootstrap; | ||
|
||
/// <summary> | ||
/// Defines the size of an <see cref="Icon" /> element. | ||
/// Represents the size of an <see cref="Icon" /> element. | ||
/// </summary> | ||
public enum IconSize | ||
{ | ||
/// <summary> | ||
/// Default icon size will be applied. | ||
/// The default icon size. | ||
/// </summary> | ||
None, | ||
|
||
/// <summary> | ||
/// The icon will be size 2em. | ||
/// An extra large icon, 2.5rem in size. | ||
/// </summary> | ||
x1, | ||
|
||
/// <summary> | ||
/// A large icon, 2rem in size. | ||
/// </summary> | ||
x2, | ||
|
||
/// <summary> | ||
/// The icon will be size 3em. | ||
/// A medium icon, 1.75rem in size. | ||
/// </summary> | ||
x3, | ||
|
||
/// <summary> | ||
/// The icon will be size 4em. | ||
/// A small icon, 1.5rem in size. | ||
/// </summary> | ||
x4, | ||
|
||
/// <summary> | ||
/// The icon will be size 5em. | ||
/// A very small icon, 1.25rem in size. | ||
/// </summary> | ||
x5, | ||
|
||
/// <summary> | ||
/// The smallest icon, 1rem in size. | ||
/// </summary> | ||
x5 | ||
x6 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters