UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

11 lines (10 loc) 455 B
import type { PropsFor } from "../../types.js"; export type FloatingAreaType = PropsFor<"div", { /** Remove default padding */ noPadding?: boolean; }>; /** * FloatingArea appears in bottom right corner when user is scrolling upwards. Only use a single FloatingArea at a time. */ declare const FloatingArea: import("react").ForwardRefExoticComponent<FloatingAreaType & import("react").RefAttributes<HTMLDivElement>>; export default FloatingArea;