plane/web/core/components/ui/graphs/pie-graph.tsx
2024-06-11 14:39:52 +05:30

24 lines
562 B
TypeScript

// nivo
import { PieSvgProps, ResponsivePie } from "@nivo/pie";
// types
import { CHARTS_THEME, DEFAULT_MARGIN } from "@/constants/graph";
import { TGraph } from "./types";
// constants
export const PieGraph: React.FC<TGraph & Omit<PieSvgProps<any>, "height" | "width">> = ({
height = "400px",
width = "100%",
margin,
theme,
...rest
}) => (
<div style={{ height, width }}>
<ResponsivePie
margin={{ ...DEFAULT_MARGIN, ...(margin ?? {}) }}
theme={{ ...CHARTS_THEME, ...(theme ?? {}) }}
animate
{...rest}
/>
</div>
);