@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
13 lines (12 loc) • 446 B
TypeScript
import type { PropsFor } from "../../types.js";
export type BottomBarProps = PropsFor<"div", {
/** Remove default padding */
noPadding?: boolean;
}>;
/**
* Display a floating bar with custom content at bottom of screen
*
* @see https://bifrost.intility.com/react/bottomBar
*/
declare const BottomBar: import("react").ForwardRefExoticComponent<BottomBarProps & import("react").RefAttributes<HTMLDivElement>>;
export default BottomBar;