import React, { Component } from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); import styles from "@/components/Dashboard/Analytics/SessionsDevice/SessionsDevice.module.css"; class SessionsDevice extends Component { constructor(props) { super(props); this.state = { series: [70], options: { plotOptions: { radialBar: { hollow: { size: "50%", }, track: { background: "rgba(255, 138, 84, 0.5)", }, dataLabels: { name: { show: false, }, value: { offsetY: 4, color: "#FF8A54", fontSize: "16px", fontWeight: "500", }, }, }, }, fill: { colors: ["#FF8A54"], }, }, }; } render() { return ( <> Sessions Device

Mobile

15,684

50%

Laptop

36,868

60%

); } } export default SessionsDevice;