import React, { ReactElement } from 'react'
import DeleteOutlinedIcon from '@mui/icons-material/DeleteOutlined'

interface Props {
    fontSize?: any
    color?: string
    fontWeight?: number
}
const DeleteIcon = (props: Props): ReactElement => {
    const { fontSize = 'small', color = 'text.secondary', fontWeight = 500 } = props

    return <DeleteOutlinedIcon titleAccess='Delete' fontSize={fontSize} sx={{ color, fontWeight }} />
}

export default DeleteIcon
