@cainiaofe/cn-ui-m
Version:
16 lines (15 loc) • 387 B
TypeScript
/** 声明:该组件代码copy了fusion/next的box组件后做修改 */
import React, { Component } from 'react';
import { CnBoxProps } from './types';
/**
* Box
*/
declare class CnBox extends Component<CnBoxProps, any> {
static defaultProps: {
prefix: string;
direction: string;
wrap: boolean;
};
render(): React.JSX.Element;
}
export { CnBox };