@amaui/ui-react
Version:
UI for React
12 lines (11 loc) • 340 B
TypeScript
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;