Map grafana theme to material ui theme.
https://mui.com/material-ui/getting-started/installation/
npm add https://github.com/L2D2Grafana/mui-grafana-theme
or
yarn add https://github.com/L2D2Grafana/mui-grafana-theme
import { muiGrafanaTheme } from '@L2D2Grafana/mui-grafana-theme';
import { ThemeProvider } from '@emotion/react';
render() {
return (
<ThemeProvider theme={muiGrafanaTheme}>
<App />
</ThemeProvider>
);
}