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