@jdcfe/yep-react
Version:
一套移动端的React组件库
25 lines (24 loc) • 694 B
TypeScript
import * as React from 'react';
export interface CellItemProps {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
onClick?: () => void;
align?: 'top' | 'middle';
disabled?: boolean;
label: React.ReactNode | string;
icon?: boolean;
wrap?: boolean;
activeStyle?: React.CSSProperties;
children?: React.ReactNode;
}
declare function CellItem(props: CellItemProps): JSX.Element;
declare namespace CellItem {
var defaultProps: Partial<CellItemProps>;
}
export declare const Brief: React.FunctionComponent<BriefProps>;
export interface BriefProps {
prefixCls?: string;
style?: React.CSSProperties;
}
export default CellItem;