$> npm install @thetinkerinc/colibri
<script>
import { Themer } from '@thetinkerinc/colibri';
import theme from '@thetinkerinc/colibri/themes/colibri.js';
import '@thetinkerinc/colibri/styles/all.css';
</script>
<Themer {theme}>
<slot />
</Themer>
<script>
import { Button } from '@thetinkerinc/colibri';
function handleClick() {
console.log("That's all there is to it!");
}
</script>
<Button on:click={handleClick}>Click me</Button>