Caido theme and components built on top of Material-UI and Allotment.
pnpm add caido-material-ui
import React from "react";
import { createTheme, ThemeProvider } from "@mui/material/styles";
import { themeOptions, StyledSplitter, StyledBox } from "caido-material-ui";
export const App = () => {
const theme = createTheme(themeOptions);
return (
<ThemeProvider theme={theme}>
<StyledSplitter>
<StyledBox className="p-2">Hello World</StyledBox>
<StyledBox className="p-2">Hello World</StyledBox>
</StyledSplitter>
</ThemeProvider>
);
};
Contributions are welcome! Please open an issue or submit a PR.