import * as React from "react"; import { useTheme } from "@mui/material/styles"; import { BarChart, Bar, XAxis, YAxis, CartesianGrid, } from "recharts"; import { Card, CardContent, Typography, Box, } from "@mui/material"; import ArrowDropDownIcon from "@mui/icons-material/ArrowDropDown"; const data = [ { name: "Jan", v1: 40 }, { name: "Feb", v1: 50 }, { name: "Mar", v1: 80 }, { name: "Apr", v1: 20 }, { name: "May", v1: 60 }, { name: "Jun", v1: 30 }, ]; export default function RoundedBarChart() { const theme = useTheme(); return (
Charge Stats Monthly
`${value}`} />
); }