mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 19:01:05 +00:00
5 lines
178 B
JavaScript
5 lines
178 B
JavaScript
import { writable } from 'svelte/store';
|
|
|
|
export const sideNavToggled = writable(false);
|
|
export const appSwitcherToggled = writable(false);
|
|
export const theme = writable('g10');
|