UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

14 lines (13 loc) 621 B
export type * from "./Grid.js"; export type * from "./Grid.Span.js"; /** * Responsive CSS Grid layout container, renders its children as columns (a * single full-width col by default) * * @see https://bifrost.intility.com/react/grid */ declare const _default: import("react").ForwardRefExoticComponent<import("./Grid.js").GridProps & import("react").RefAttributes<HTMLDivElement>> & { /** Grid child component for spanning multiple columns */ Span: import("react").ForwardRefExoticComponent<import("./Grid.Span.js").GridSpanProps & import("react").RefAttributes<HTMLDivElement>>; }; export default _default;