namespace AIStudio.Tools;
///
/// Icons we draw ourselves, because the Material icon set MudBlazor ships does not contain them.
///
///
/// The strings follow the same convention as the MudBlazor icons: they contain the SVG child
/// elements only, drawn on a 24 by 24 canvas. MudIcon and every component taking an icon wrap them
/// into the svg element themselves, which is why there must be no svg root element here.
///
public static class AppIcons
{
///
/// The classic database symbol: a cylinder made of three stacked discs.
///
public const string DATABASE =
"""
""";
}