mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
15 lines
340 B
Svelte
15 lines
340 B
Svelte
<script lang="ts">
|
|
import { LocalStorage } from "carbon-components-svelte";
|
|
|
|
const objectValue = { theme: "dark", fontSize: 16 };
|
|
</script>
|
|
|
|
<div data-testid="object-storage">
|
|
<LocalStorage
|
|
key="theme-settings"
|
|
value={objectValue}
|
|
on:update={({ detail }) => {
|
|
console.log("update event", detail);
|
|
}}
|
|
/>
|
|
</div>
|