Skip to content

Instantly share code, notes, and snippets.

@SilasRodrigues19
Created March 30, 2022 00:35
Show Gist options
  • Save SilasRodrigues19/0f8bfefdf02517ca1f9bbac74fa5e16e to your computer and use it in GitHub Desktop.
Save SilasRodrigues19/0f8bfefdf02517ca1f9bbac74fa5e16e to your computer and use it in GitHub Desktop.
Alternando texto e ícone junto com o tema
<Box>
<List component="nav">
<ListItemButton onClick={toggleTheme}>
<ListItemIcon>
<Icon>
{theme.palette.mode == 'dark' ? 'light_mode' : 'dark_mode'}
</Icon>
</ListItemIcon>
<ListItemText
primary={theme.palette.mode == 'dark' ? 'Light' : 'Dark'}
/>
</ListItemButton>
</List>
</Box>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment