kuma-gui
kuma-gui copied to clipboard
chore: adds Progress icon to XIcon/XAction
Adds ProgressIcon to XIcon and XButton, which means we can use conditionals like:
:action="writing ? 'progress' : 'create'"
instead of
<ProgressIcon v-if="writing" />
<AddIcon v-else />