blob: 064942dab35531ae71724cd8c15f814a9de108ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div {...$$props} on:click>
<slot></slot>
</div>
<style>
div {
justify-content: space-between;
display: flex;
align-items: center;
margin: 10px 0;
}
</style>
|