UNPKG

@onesy/ui-react

Version:
15 lines (14 loc) 497 B
import React from 'react'; import { ISurface } from '../Surface/Surface'; import { IElement } from '../types'; export declare type ITopAppBar = Omit<ISurface, 'version'> & { position?: 'relative' | 'absolute' | 'static' | 'sticky' | 'fixed' | 'unset'; version?: 'small' | 'center' | 'medium' | 'large'; center?: boolean; title?: IElement; start?: IElement; end?: IElement; WrapperProps?: any; }; declare const TopAppBar: React.FC<ITopAppBar>; export default TopAppBar;