namespace DeepDrftShared.Client.Common;
public static class DDIcons
{
///
/// Charleston gas lamp lantern - uses currentColor for theming
///
public const string GasLamp = """
""";
///
/// Charleston gas lamp with lit flame - for dark mode
///
public const string GasLampLit = """
""";
///
/// Lava lamp - the Mix visualizer settings glyph. Inner path/shape markup for MudBlazor's Icon= slot
/// (no outer <svg> wrapper — MudBlazor supplies that). Tapered base, tall rounded glass vessel,
/// a cap, and three suspended blobs at varied heights. The silhouette is currentColor so it themes
/// with its context (Color.Secondary tint, light/dark). The blobs carry a warm two-tone accent à la
/// the gas-lamp flame so the lamp reads as "lit" at icon size; coordinates are in the 24×24 space
/// that matches MudBlazor's viewBox="0 0 24 24" wrapper.
///
public const string LavaLamp = """
""";
}