@procore/core-react
Version:
React library of Procore Design Guidelines
14 lines (13 loc) • 908 B
TypeScript
/// <reference types="react" />
import type { GridBreakpoint, GridColProps, GridProps } from './Grid.types';
export declare const StyledGridRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
$gutterX: GridProps['gutterX'];
$gutterY: GridProps['gutterY'];
}>> & string;
export declare const StyledGridCol: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
$offset?: GridColProps['colStart'];
$span?: GridColProps['colWidth'];
$gutterX: GridProps['gutterX'];
$gutterY: GridProps['gutterY'];
$colStackBreakpoint: GridBreakpoint;
}>> & string;