UNPKG

239 BTypeScriptView Raw
1import * as React from 'react';
2export interface CardGridProps {
3 prefixCls?: string;
4 className?: string;
5 hoverable?: boolean;
6 style?: React.CSSProperties;
7}
8declare const Grid: React.FC<CardGridProps>;
9export default Grid;