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/Gender/Gender.module.css"; class Gender extends Component { constructor(props) { super(props); this.state = { series: [50], options: { plotOptions: { radialBar: { hollow: { size: "50%", }, track: { background: "rgba(0, 182, 155, 0.5)", }, dataLabels: { name: { show: false, }, value: { offsetY: 4, color: "#00B69B", fontSize: "16px", fontWeight: "500", }, }, }, }, fill: { colors: ["#00B69B"], }, }, }; } render() { return ( <> Gender

Male

45,347

70%

Female

20,738

30%

); } } export default Gender;