// ** MUI Imports import MuiChip from '@mui/material/Chip' // ** Third Party Imports import clsx from 'clsx' // ** Types import { CustomChipProps } from './types' // ** Hooks Imports import useBgColor, { UseBgColorType } from 'src/@core/hooks/useBgColor' const Chip = (props: CustomChipProps) => { // ** Props const { sx, skin, color, rounded } = props // ** Hook const bgColors = useBgColor() const colors: UseBgColorType = { primary: { ...bgColors.primaryLight }, secondary: { ...bgColors.secondaryLight }, success: { ...bgColors.successLight }, error: { ...bgColors.errorLight }, warning: { ...bgColors.warningLight }, info: { ...bgColors.infoLight } } const propsToPass = { ...props } propsToPass.rounded = undefined return ( ) } export default Chip