wix-style-react
Version:
wix-style-react
19 lines • 704 B
TypeScript
import * as React from 'react';
export interface AnalyticsLayoutProps {
/** Applied as data-hook HTML attribute that can be used in the tests */
dataHook?: string;
/** A css class to be applied to the component's root element */
className?: string;
/** Items that will be rendered */
items: React.ReactNode[];
/** Children */
children: AnalyticsLayoutChildren;
}
type AnalyticsLayoutChildren = (item: React.ReactNode, index: number, rowItemsCount: number) => React.ReactNode;
export interface AnalyticsLayoutCellProps {
dataHook?: string;
disableHighlight?: boolean;
children: React.ReactNode;
}
export {};
//# sourceMappingURL=AnalyticsLayout.types.d.ts.map