UNPKG

soda-material

Version:

A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)

11 lines (10 loc) 447 B
/// <reference types="react" /> import './app-bar.scss'; /** * `<BottonAppBar>` has fixed height = 80px * @specs https://m3.material.io/components/bottom-app-bar/specs */ export declare const BottomAppBar: import("react").ForwardRefExoticComponent<{ children?: React.ReactNode; fixed?: boolean | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "fixed"> & import("react").RefAttributes<HTMLDivElement>>;