soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
18 lines (17 loc) • 585 B
TypeScript
/// <reference types="react" />
import './app-bar.scss';
/**
* `<BottonAppBar>` has fixed style `height: 80px`
* @specs https://m3.material.io/components/bottom-app-bar/specs
*/
export declare const BottomAppBar: import("react").ForwardRefExoticComponent<{
/**
* Place `<IconButton>` here
*/
buttons?: React.ReactNode;
/**
* Place `<Fab>` here
*/
fab?: React.ReactNode;
fixed?: boolean | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "fixed" | "buttons" | "fab"> & import("react").RefAttributes<HTMLDivElement>>;