UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

14 lines (13 loc) 521 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. * * @see https://bifrost.intility.com/react/floatingArea */ declare const FloatingArea: import("react").ForwardRefExoticComponent<FloatingAreaType & import("react").RefAttributes<HTMLDivElement>>; export default FloatingArea;