UNPKG

kylin-ui-component

Version:

A React UI library for some developers to develop quickly

10 lines (9 loc) 289 B
/// <reference types="react" /> import { RowProps } from './type'; export interface RowContextState { gutter?: [number, number]; wrap?: RowProps['wrap']; supportFlexGap?: boolean; } declare const RowContext: import("react").Context<RowContextState>; export default RowContext;