2
0
Files
cal/calcom/packages/features/insights/components/LineChart.tsx
2024-08-09 00:39:27 +02:00

9 lines
307 B
TypeScript

import { LineChart as ExternalLineChart } from "@tremor/react";
import type { LineChartProps } from "./tremor.types";
// Honestly this is a mess. Why are all chart libraries in existance horrible to theme
export const LineChart = (props: LineChartProps) => {
return <ExternalLineChart {...props} />;
};