kylin-ui-component
Version:
A React UI library for some developers to develop quickly
11 lines (10 loc) • 349 B
TypeScript
import React from 'react';
import { SpaceProps } from './type';
export declare const SpaceContext: React.Context<{
latestIndex: number;
horizontalSize: number;
verticalSize: number;
supportFlexGap: boolean;
}>;
declare const Space: React.ForwardRefExoticComponent<SpaceProps & React.RefAttributes<HTMLDivElement>>;
export { Space };