import { styled } from "@mui/material"; const Total = styled("span")({ display: "flex", alignItems: "center", }); const Icon = styled("span")({ marginLeft: "0.5em", width: "20px", cursor: "pointer", backgroundColor: "#1E456F", "&:hover": { scale: "1.3", }, }); export default { Icon, Total };