UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

9 lines (8 loc) 427 B
import type { PropsFor } from "../../types.js"; export type ContainerProps = PropsFor<"div", { /** Automatic intrinsic width as CSS length string or number in px. * Equivalent to CSS `contain-intrinsic-width: auto [value]`. */ width?: number | string; }>; declare const Container: import("react").ForwardRefExoticComponent<ContainerProps & import("react").RefAttributes<HTMLDivElement>>; export default Container;