UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

25 lines (20 loc) 523 B
import { PropTypes, StandardProps } from '..'; import { PaperProps, PaperClassKey } from '../Paper/Paper'; export interface AppBarProps extends StandardProps< PaperProps, AppBarClassKey > { color?: PropTypes.Color; position?: 'static' | 'fixed' | 'absolute'; } export type AppBarClassKey = | PaperClassKey | 'positionFixed' | 'positionAbsolute' | 'positionStatic' | 'colorDefault' | 'colorPrimary' | 'colorAccent' ; declare const AppBar: React.ComponentType<AppBarProps>; export default AppBar;