<script>
import { Button, Modal } from '@thetinkerinc/colibri';
import style from './style.js';
let open = false;
</script>
<Button on:click={() => (open = true)}>Open modal</Button>
<Modal {style} bind:open>Hello there!</Modal>
//style.js
export default style = {};