import * as React from 'react'; import classNames from 'classnames'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; export interface CardGridProps { prefixCls?: string; style?: React.CSSProperties; className?: string; hoverable?: boolean; } const Grid: React.FC = props => ( {({ getPrefixCls }: ConfigConsumerProps) => { const { prefixCls: customizePrefixCls, className, hoverable = true, ...others } = props; const prefixCls = getPrefixCls('card', customizePrefixCls); const classString = classNames(`${prefixCls}-grid`, className, { [`${prefixCls}-grid-hoverable`]: hoverable, }); return
; }} ); export default Grid;