UNPKG

mui-extended

Version:

Extended UI Components built on Material UI

10 lines (9 loc) 335 B
import { SxProps } from "@mui/material"; export type PaneProps = { size?: number; split?: "vertical" | "horizontal"; sx?: SxProps; }; export declare const Pane: import("react").ForwardRefExoticComponent<PaneProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLDivElement>>;