ts: Extend ListItemProps from native div element attributes, close #14171

This commit is contained in:
诸岳 2019-01-10 12:13:27 +08:00 committed by 偏右
parent a075c90321
commit 00102d4278

View File

@ -5,7 +5,7 @@ import { ListGridType, ColumnType } from './index';
import { Col } from '../grid';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
export interface ListItemProps {
export interface ListItemProps extends React.HTMLAttributes<HTMLDivElement> {
className?: string;
children?: React.ReactNode;
prefixCls?: string;