materialuiupgraded
Version:
Material-UI's workspace package
28 lines (22 loc) • 638 B
TypeScript
import { Breakpoint } from '../styles/createBreakpoints';
import { PropInjector } from '..';
export interface WithWidthOptions {
resizeInterval: number;
}
export interface WithWidth {
width: Breakpoint;
innerRef?: React.Ref<any> | React.RefObject<any>;
}
export function isWidthDown(
breakpoint: Breakpoint,
screenWidth: Breakpoint,
inclusive?: boolean,
): boolean;
export function isWidthUp(
breakpoint: Breakpoint,
screenWidth: Breakpoint,
inclusive?: boolean,
): boolean;
export default function withWidth(
options?: WithWidthOptions,
): PropInjector<WithWidth, Partial<WithWidth>>;