import PropTypes from 'prop-types'; import { forwardRef } from 'react'; import Box from '@mui/material/Box'; // ---------------------------------------------------------------------- const SvgColor = forwardRef(({ src, sx, ...other }, ref) => ( )); SvgColor.propTypes = { src: PropTypes.string, sx: PropTypes.object }; export default SvgColor;