Hi,
In the following code the button show very small without text so it is unusable. How can I format it by css or...?
`<script>
import { Editor, Willow } from 'wx-svelte-editor';
const bottomBar = {
items: [{ comp: 'spacer' }, { comp: 'button', label: 'Click me', onclick: () => alert('clicked') }]
};
</script>
<Willow>
<Editor {bottomBar} />
</Willow>
`