@movable/ui
Version:
Movable Ink's shared MUI components and MUI theme for our vite applications
9 lines (8 loc) • 346 B
TypeScript
import { Grid2Props as GridProps } from '@mui/material/Grid2';
type LayoutDetailsProps = GridProps & {
Header: JSX.Element;
children: React.ReactNode;
itemProps?: GridProps;
};
export default function DetailsLayout({ Header, children, sx, itemProps, ...rest }: LayoutDetailsProps): import("react/jsx-runtime").JSX.Element;
export {};