rsuite
Version:
A suite of react components
12 lines (11 loc) • 395 B
TypeScript
import { WithAsProps, RsRefForwardingComponent } from '../@types/common';
export interface PlaceholderGridProps extends WithAsProps {
rows?: number;
rowHeight?: number;
rowMargin?: number;
columns?: number;
/** Placeholder status */
active?: boolean;
}
declare const PlaceholderGrid: RsRefForwardingComponent<'div', PlaceholderGridProps>;
export default PlaceholderGrid;