I've already set the current theme in my page,
<MudThemeProvider Theme="_currentTheme" />
@code
{
private readonly MudTheme _currentTheme = new PortalTheme();
}
What is the best way to access it from another component? Should I create a cascading property?