antd-mobile
Version:
基于 React 的移动设计规范实现
41 lines (40 loc) • 776 B
TypeScript
export interface CardProps {
full?: boolean;
className?: string;
style?: {};
/** web only */
prefixCls?: string;
/** rn only */
styles?: any;
}
export interface CardHeaderProps {
title?: any;
thumb?: string;
extra?: any;
thumbStyle?: {};
className?: string;
style?: any;
/** web only */
prefixCls?: string;
/** rn only */
styles?: any;
}
export interface CardBodyProps {
children?: any;
className?: string;
style?: {};
/** web only */
prefixCls?: string;
/** rn only */
styles?: any;
}
export interface CardFooterProps {
content?: any;
extra?: any;
className?: string;
style?: {};
/** web only */
prefixCls?: string;
/** rn only */
styles?: any;
}