@wix/design-system
Version:
@wix/design-system
18 lines • 513 B
TypeScript
import React from 'react';
import { AnalyticsLayoutCellProps } from '../AnalyticsLayout.types';
/** Cell */
declare class Cell extends React.PureComponent<AnalyticsLayoutCellProps> {
static defaultProps: {
disableHighlight: boolean;
divider: boolean;
children: null;
};
static displayName: string;
state: {
isHovered: boolean;
};
_setHover(isHovered: boolean): void;
render(): React.JSX.Element;
}
export default Cell;
//# sourceMappingURL=Cell.d.ts.map