A simple but useful helper component that you can use as a theme toggle.
---import { ThemeToggle, Icon } from 'studiocms:ui/components';---
<ThemeToggle> <div slot='dark'> {/* Content in here will be displayed when the theme is dark! */} <Icon name='moon' width={24} height={24} slot="dark" /> </div> <div slot='light'> {/* Content in here will be displayed when the theme is light! */} <Icon name='sun' width={24} height={24} slot="light" /> </div></ThemeToggle>
The <ThemeToggle />
component is really just a button with two slots. You can pass all props from the
<Button />
component and they will apply to the toggle.