import React from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import Menu from "@mui/material/Menu"; import MenuItem from "@mui/material/MenuItem"; import IconButton from "@mui/material/IconButton"; import MoreHorizIcon from "@mui/icons-material/MoreHoriz"; import { styled } from "@mui/material/styles"; import LinearProgress, { linearProgressClasses, } from "@mui/material/LinearProgress"; import SalesByCountriesChart from "./SalesByCountriesChart"; const BorderLinearProgress = styled(LinearProgress)(({ theme }) => ({ height: 5, borderRadius: 5, [`&.${linearProgressClasses.colorPrimary}`]: { backgroundColor: theme.palette.grey[theme.palette.mode === "light" ? 200 : 800], }, [`& .${linearProgressClasses.bar}`]: { borderRadius: 5, backgroundColor: theme.palette.mode === "light" ? "#757FEF" : "#F7FAFF", }, })); const SalesByCountries = () => { // Dropdown const [anchorEl, setAnchorEl] = React.useState(null); const open = Boolean(anchorEl); const handleClick = (event) => { setAnchorEl(event.currentTarget); }; const handleClose = () => { setAnchorEl(null); }; return ( <> Sales by Countries Last 15 Days Last Month Last Year {/* SalesByCountriesChart */} Canada 75% Russia 40% Greenland 65% USA 80% ); }; export default SalesByCountries;