22 lines
543 B
TypeScript
22 lines
543 B
TypeScript
import { PropTypes, StandardProps } from '..';
|
|
import { PaperProps, PaperClassKey } from '../Paper';
|
|
|
|
export interface AppBarProps extends StandardProps<PaperProps, AppBarClassKey> {
|
|
color?: PropTypes.Color;
|
|
position?: 'fixed' | 'absolute' | 'sticky' | 'static';
|
|
}
|
|
|
|
export type AppBarClassKey =
|
|
| PaperClassKey
|
|
| 'positionFixed'
|
|
| 'positionAbsolute'
|
|
| 'positionSticky'
|
|
| 'positionStatic'
|
|
| 'colorDefault'
|
|
| 'colorPrimary'
|
|
| 'colorSecondary';
|
|
|
|
declare const AppBar: React.ComponentType<AppBarProps>;
|
|
|
|
export default AppBar;
|