material-ui-cordova
Version:
React components that implement Google's Material Design.
13 lines (10 loc) • 392 B
TypeScript
import { Breakpoint } from '../styles/createBreakpoints';
import { WithWidthProps } from '../utils/withWidth';
export interface WithMobileDialogOptions {
breakpoint: Breakpoint;
}
export default function withMobileDialog<P = {}>(
options: WithMobileDialogOptions
): (
component: React.ComponentType<P & Partial<WithWidthProps>>
) => React.ComponentClass<P & Partial<WithWidthProps>>;