UNPKG

@nutui/nutui-react-taro

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

22 lines (21 loc) 515 B
import { FunctionComponent, ReactNode } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface CellGroupProps extends BasicComponent { /** * 分组标题 * @default - */ title: ReactNode /** * 分组描述 * @default - */ description: ReactNode children?: ReactNode; /** * 单元格之间是否有分割线 * @default true */ divider: boolean } export declare const CellGroup: FunctionComponent<Partial<CellGroupProps>>;