// ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import { useTheme } from '@mui/material/styles' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' // ** Third Party Imports import { ApexOptions } from 'apexcharts' // ** Custom Components Imports import ReactApexcharts from 'src/@core/components/react-apexcharts' const series = [ { data: [0, 30, 10, 70, 40, 110, 95] } ] const CardStatsSmoothLineChart = () => { // ** Hook const theme = useTheme() const options: ApexOptions = { chart: { parentHeightOffset: 0, toolbar: { show: false } }, grid: { show: false, padding: { left: -5, top: -15, right: 5, bottom: -10 } }, colors: [theme.palette.warning.main], stroke: { width: 4, curve: 'smooth', lineCap: 'round' }, xaxis: { labels: { show: false }, axisTicks: { show: false }, axisBorder: { show: false } }, yaxis: { labels: { show: false } } } return ( $22.6k +38% Total Sales ) } export default CardStatsSmoothLineChart