mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
181 B
Svelte
10 lines
181 B
Svelte
<script lang="ts">
|
|
import { Theme } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Theme
|
|
render="select"
|
|
on:update={({ detail }) => {
|
|
console.log("update", detail);
|
|
}}
|
|
/>
|