"use client"; import { useTheme } from "next-themes"; import { colors } from "@/lib/colors"; import { useConfig } from "@/hooks/use-config"; import { CartesianGrid, XAxis, YAxis, ResponsiveContainer, BarChart, Bar, Tooltip, } from "recharts"; import { data } from "./data"; import CustomTooltip from "./custom-tooltip"; const SimpleBar = ({ height = 300 }) => { const { theme: mode } = useTheme(); return ( } /> ); }; export default SimpleBar;