antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
9 lines (8 loc) • 394 B
TypeScript
import { FC } from 'react';
import { ListItemProps } from '../list';
import { NativeProps } from '../../utils/native-props';
export declare type CheckListItemProps = Pick<ListItemProps, 'title' | 'children' | 'description' | 'prefix' | 'disabled' | 'onClick' | 'style'> & {
value: string;
readOnly?: boolean;
} & NativeProps;
export declare const CheckListItem: FC<CheckListItemProps>;