import PropTypes from 'prop-types'; // material-ui import { useTheme } from '@mui/material/styles'; import { Box } from '@mui/material'; // project import import getColors from 'utils/getColors'; const Dot = ({ color, size, variant, sx }) => { const theme = useTheme(); const colors = getColors(theme, color || 'primary'); const { main } = colors; return ( ); }; Dot.propTypes = { color: PropTypes.string, size: PropTypes.number, variant: PropTypes.string, sx: PropTypes.oneOfType([PropTypes.object, PropTypes.string]) }; export default Dot;