From 7600bf279501d2af3c203a2fc77fa7564f86077c Mon Sep 17 00:00:00 2001 From: Diego Andai Date: Fri, 15 Sep 2023 11:12:58 -0300 Subject: [PATCH] [Chip][material] Add cursor CSS property reset (#38984) --- packages/mui-material/src/Chip/Chip.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/mui-material/src/Chip/Chip.js b/packages/mui-material/src/Chip/Chip.js index bb685d348c2989..b513703c86824f 100644 --- a/packages/mui-material/src/Chip/Chip.js +++ b/packages/mui-material/src/Chip/Chip.js @@ -92,6 +92,8 @@ const ChipRoot = styled('div', { borderRadius: 32 / 2, whiteSpace: 'nowrap', transition: theme.transitions.create(['background-color', 'box-shadow']), + // reset cursor explicitly in case ButtonBase is used + cursor: 'unset', // We disable the focus ring for mouse, touch and keyboard users. outline: 0, textDecoration: 'none',