test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
23 lines (22 loc) • 539 B
TypeScript
import { FunctionComponent, ReactNode } from 'react';
import { BasicComponent } from '../../utils/typings';
export interface CellGroupProps extends BasicComponent {
openPress: boolean;
/**
* 分组标题
* @default -
*/
title: ReactNode
/**
* 分组描述
* @default -
*/
description: ReactNode
children?: ReactNode;
/**
* 单元格之间是否有分割线
* @default true
*/
divider: boolean
}
export declare const CellGroup: FunctionComponent<Partial<CellGroupProps>>;