// nivo import { ResponsiveLine, LineSvgProps } from "@nivo/line"; // types import { TGraph } from "./types"; // constants import { CHARTS_THEME, DEFAULT_MARGIN } from "constants/graph"; export const LineGraph: React.FC = ({ height = "400px", width = "100%", margin, theme, ...rest }) => (
);