mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
19 lines
332 B
Svelte
19 lines
332 B
Svelte
<script lang="ts">
|
|
import { Popover, PopoverContent } from "../types";
|
|
|
|
let open = false;
|
|
</script>
|
|
|
|
<Popover
|
|
bind:open="{open}"
|
|
closeOnOutsideClick
|
|
align="right"
|
|
caret
|
|
light
|
|
highContrast
|
|
on:click:outside="{() => {
|
|
console.log('on:click:outside');
|
|
}}"
|
|
>
|
|
<PopoverContent>Content</PopoverContent>
|
|
</Popover>
|