@onesy/ui-react
Version:
UI for React
11 lines (10 loc) • 315 B
TypeScript
import React from 'react';
import { ISurface } from '../Surface/Surface';
import { IElement } from '../types';
export declare type IBottomAppBar = ISurface & {
main?: IElement;
fixed?: boolean;
noTransition?: boolean;
};
declare const BottomAppBar: React.FC<IBottomAppBar>;
export default BottomAppBar;