UNPKG

mui-extended

Version:

Extended UI Components built on Material UI

11 lines (10 loc) 445 B
import { SwipeableDrawerProps } from "@mui/material"; import { FunctionComponent, PropsWithChildren, ReactNode } from "react"; import { SplitPaneProps } from "../splitPane/SplitPane"; export type LayoutProps = PropsWithChildren<{ appBar?: ReactNode; menu?: ReactNode; splitPaneProps?: Omit<SplitPaneProps, "children">; swipeableDrawerProps?: SwipeableDrawerProps; }>; export declare const Layout: FunctionComponent<LayoutProps>;