2022-12-02 14:54:26 +01:00

26 lines
1.0 KiB
C#

//Copyright(c) Alessandro Ghidini.All rights reserved.
//Changes and improvements Copyright (c) The MudBlazor Team.
namespace Connected.Components;
public static class Defaults
{
public static class Classes
{
public static class Position
{
public const string TopLeft = "mud-snackbar-location-top-left";
public const string TopCenter = "mud-snackbar-location-top-center";
public const string TopRight = "mud-snackbar-location-top-right";
public const string TopStart = "mud-snackbar-location-top-start";
public const string TopEnd = "mud-snackbar-location-top-end";
public const string BottomLeft = "mud-snackbar-location-bottom-left";
public const string BottomCenter = "mud-snackbar-location-bottom-center";
public const string BottomRight = "mud-snackbar-location-bottom-right";
public const string BottomStart = "mud-snackbar-location-bottom-start";
public const string BottomEnd = "mud-snackbar-location-bottom-end";
}
}
}