UNPKG

@wix/design-system

Version:

@wix/design-system

17 lines 555 B
import * as React from 'react'; import { AnalyticsLayoutProps } from './AnalyticsLayout.types'; import Cell from './Cell/Cell'; /** AnalyticsLayout */ declare class AnalyticsLayout extends React.PureComponent<AnalyticsLayoutProps> { static displayName: string; static defaultProps: { items: never[]; minItemsPerRow: number; maxItemsPerRow: number; divider: boolean; }; static Cell: typeof Cell; render(): React.JSX.Element; } export default AnalyticsLayout; //# sourceMappingURL=AnalyticsLayout.d.ts.map