@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
10 lines (9 loc) • 494 B
TypeScript
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;
}>;
/** Create a container for `<Container.Breakpoint>` descendants */
declare const Container: import("react").ForwardRefExoticComponent<ContainerProps & import("react").RefAttributes<HTMLDivElement>>;
export default Container;