@etsoo/materialui
Version:
TypeScript Material-UI Implementation
28 lines (27 loc) • 663 B
TypeScript
import { BoxProps } from "@mui/material/Box";
import { PaperProps } from "@mui/material/Paper";
type SharedProps = keyof BoxProps & keyof PaperProps;
/**
* Fabs container box props
*/
export type FabBoxProps = Pick<BoxProps, SharedProps> & Pick<PaperProps, SharedProps> & {
/**
* Item gap
*/
itemGap?: number;
/**
* Flex direction, row or column
*/
columnDirection?: boolean;
/**
* Add panel to the Fab
*/
fabPanel?: boolean;
};
/**
* Fabs container box
* @param props Props
* @returns Component
*/
export declare function FabBox(props: FabBoxProps): import("react/jsx-runtime").JSX.Element;
export {};