UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

11 lines (10 loc) 390 B
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 */ declare const BottomBar: import("react").ForwardRefExoticComponent<BottomBarProps & import("react").RefAttributes<HTMLDivElement>>; export default BottomBar;