mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
80e6d7e1ea
When using a boolean attribute in JSX, you can set the attribute value to true or omit the value. This helps to keep consistency in code. Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
20 lines
602 B
TypeScript
20 lines
602 B
TypeScript
// nivo
|
|
import { ResponsiveScatterPlot, ScatterPlotSvgProps } from "@nivo/scatterplot";
|
|
// types
|
|
import { TGraph } from "./types";
|
|
// constants
|
|
import { CHARTS_THEME, DEFAULT_MARGIN } from "constants/graph";
|
|
|
|
export const ScatterPlotGraph: React.FC<
|
|
TGraph & Omit<ScatterPlotSvgProps<any>, "height" | "width">
|
|
> = ({ height = "400px", width = "100%", margin, theme, ...rest }) => (
|
|
<div style={{ height, width }}>
|
|
<ResponsiveScatterPlot
|
|
margin={{ ...DEFAULT_MARGIN, ...(margin ?? {}) }}
|
|
animate
|
|
theme={{ ...CHARTS_THEME, ...(theme ?? {}) }}
|
|
{...rest}
|
|
/>
|
|
</div>
|
|
);
|