UNPKG

mui-extended

Version:

Extended UI Components built on Material UI

6 lines (5 loc) 299 B
import { BoxProps } from "@mui/system"; export type AspectRatioContainerProps = BoxProps & { ratio: [number, number]; }; export declare const AspectRatioContainer: import("react").ForwardRefExoticComponent<Omit<AspectRatioContainerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;