@material-ui/core
Version:
React components that implement Google's Material Design.
34 lines (27 loc) • 733 B
TypeScript
import { Breakpoint } from '../styles/createBreakpoints';
import { PropInjector } from '@material-ui/types';
export interface WithWidthOptions {
withTheme?: boolean;
noSSR?: boolean;
initialWidth?: Breakpoint;
resizeInterval?: number;
}
export interface WithWidth {
width: Breakpoint;
}
export interface WithWidthProps extends Partial<WithWidth> {
innerRef?: React.Ref<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, WithWidthProps>;