import { useStyles } from 'component/context/ContectFormChip/ContextFormChip.styles'; import { Cancel } from '@mui/icons-material'; import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender'; interface IContextFormChipProps { label: string; description?: string; onRemove: () => void; } export const ContextFormChip = ({ label, description, onRemove, }: IContextFormChipProps) => { const { classes: styles } = useStyles(); return (