Skip to content

Commit

Permalink
fix(muiExpansionPanel): fix expandIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 committed Sep 29, 2021
1 parent 876edf0 commit e54f7d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/snippets/muiExpansionPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export const body = ({
ExpansionPanelDetails,
Typography,
},
Icons: { ExpandMoreIcon },
Icons: { ExpandMore },
}: SnippetOptions): React.ReactElement<any> => (
<ExpansionPanel>
<ExpansionPanelSummary
expandIcon={<ExpandMoreIcon />}
expandIcon={<ExpandMore />}
aria-label={$('Expand')}
aria-controls="${id}-content"
id="${id}-header"
Expand Down

0 comments on commit e54f7d3

Please sign in to comment.