waffle-chart
Version:
13 lines (12 loc) • 409 B
TypeScript
import React from 'react';
import type { GridItemProps, HorizontalFill, VerticalFill } from '../__types';
declare type Props = {
itemProps: GridItemProps[] | null;
verticalFill: VerticalFill;
horizontalFill: HorizontalFill;
isAnimatedFill: boolean;
isZeros: boolean;
clickHandler: (props: GridItemProps) => GridItemProps;
};
declare const Chart: React.FC<Props>;
export default Chart;