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. Sourced from lava-lamp-svgrepo-com.svg /// (SVG Repo, viewBox="0 0 50 50"). Wrapped in a scale(0.48) transform to fit MudBlazor's /// inner 24×24 coordinate space (50 × 0.48 = 24). Fill uses currentColor so it themes with /// its context (Color.Secondary, light/dark). Inner markup only — no outer <svg> wrapper, /// MudBlazor supplies viewBox="0 0 24 24". /// public const string LavaLamp = """ """; }