UNPKG

@chief-editor/ui

Version:

UI Component for chief editor

9 lines (8 loc) 293 B
/// <reference types="react" /> import { BREAKPOINT_WIDTHS } from '../../util/breakpoint'; export interface IRowContextState { gutter: number; breakpoint: keyof typeof BREAKPOINT_WIDTHS; } declare const RowContext: import("react").Context<IRowContextState>; export default RowContext;