UNPKG

@amaui/ui-react

Version:
12 lines (11 loc) 340 B
import React from 'react'; import { ISurface } from '../Surface/Surface'; import { IElement, ISize } from '../types'; export interface IBottomAppBar extends ISurface { size?: ISize; main?: IElement; fixed?: boolean; noTransition?: boolean; } declare const BottomAppBar: React.FC<IBottomAppBar>; export default BottomAppBar;