Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Alex van Andel <me@alexvanandel.com>
9 lines
307 B
TypeScript
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} />;
|
|
};
|