UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

21 lines (20 loc) 709 B
import type { PropsFor } from "../../types.js"; export type GridSpanProps = PropsFor<"div", { /** Columns to span (default `1`) */ cols?: number; /** Columns to span for 600px and wider */ small?: number; /** Columns to span for 960px and wider */ medium?: number; /** Columns to span for 1280px and wider */ large?: number; /** Columns to span for 1600px and wider */ xl?: number; /** Columns to span for 1920px and wider */ xxl?: number; }>; /** * Grid child component for spanning multiple columns */ declare const GridSpan: import("react").ForwardRefExoticComponent<GridSpanProps & import("react").RefAttributes<HTMLDivElement>>; export default GridSpan;