mui-simple
Version:
Override mui components to simplify usage
14 lines • 969 B
TypeScript
import React from 'react';
import type { AppBarProps } from '@mui/material';
interface AppBarStyledProps {
drawerWidth?: number;
customColor?: string;
}
type AppBarStyledPropsType = AppBarStyledProps & AppBarProps;
export declare const AppBar: React.FC<AppBarStyledPropsType>;
export declare const Toolbar: import("@emotion/styled").StyledComponent<import("@mui/material").ToolbarOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: React.Ref<HTMLDivElement>;
}, "className" | "style" | "children" | "classes" | "sx" | "variant" | "disableGutters"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
export declare const Box: import("@mui/types").OverridableComponent<import("@mui/system").BoxTypeMap<{}, "div", import("@mui/material").Theme>>;
export {};
//# sourceMappingURL=AppBar.styled.d.ts.map