// ** React Imports import { Fragment } from 'react' // ** MUI Imports import Chip from '@mui/material/Chip' import Typography from '@mui/material/Typography' // ** Icon Imports import Icon from 'src/@core/components/icon' const ChipsOnDelete = () => { const handleDelete = () => { console.info('You clicked the delete icon.') } return ( Default
Custom
} /> } /> } />
) } export default ChipsOnDelete