antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
27 lines (22 loc) • 449 B
text/typescript
import { IBaseProps } from '../_util/base';
/**
* @description 列表,内部配合 ListItem 使用。
*/
export interface IListProps extends IBaseProps {
/**
* @description 是否带圆角
* @default false
*/
radius?: boolean;
/**
* @description 头部说明
*/
header?: string;
/**
* @description 底部说明
*/
footer?: string;
}
export const ListDefaultProps: Partial<IListProps> = {
radius: false,
};