material-ui-cordova
Version:
React components that implement Google's Material Design.
18 lines (13 loc) • 385 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface BackdropProps extends StandardProps<{}, BackdropClassKey> {
invisible?: boolean;
onClick?: React.ReactEventHandler<{}>;
[prop: string]: any;
}
export type BackdropClassKey =
| 'root'
| 'invisible'
;
declare const Backdrop: React.ComponentType<BackdropProps>;
export default Backdrop;