import Card from '@mui/material/Card'; import CardContent from '@mui/material/CardContent'; import Chip from '@mui/material/Chip'; import Typography from '@mui/material/Typography'; import Stack from '@mui/material/Stack'; import { BarChart } from '@mui/x-charts/BarChart'; import { useTheme } from '@mui/material/styles'; export default function PageViewsBarChart() { const theme = useTheme(); const colorPalette = [ (theme.vars || theme).palette.primary.dark, (theme.vars || theme).palette.primary.main, (theme.vars || theme).palette.primary.light, ]; return ( Page views and downloads 1.3M Page views and downloads for the last 6 months ); }