Skip to content

Commit

Permalink
type: fix value props type error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jul 13, 2023
1 parent db5f95f commit 9861e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/SVG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Legend, { LegendProps } from './Legend';

export type HeatMapValue = {
date: string;
content: string | string[] | React.ReactNode;
content?: string | string[] | React.ReactNode;
count: number;
};

Expand Down

0 comments on commit 9861e9b

Please sign in to comment.