added bundle attribute

This commit is contained in:
Zoe
2022-11-11 18:16:31 -06:00
parent 2eb6a70088
commit 85b6782552
2 changed files with 8 additions and 1 deletions

View File

@@ -5,18 +5,21 @@
<button d-on:click="appState.contents.count--"
class="transition-colors p-3 duration-300 active:bg-red-700 hover:bg-red-600 hover:text-zinc-100 mr-1">
<img src='/minus.svg'
svg:bundle
width="24px"
alt="minus" />
</button>
<button d-on:click="appState.contents.count = 0"
class="transition-colors p-3 duration-300 active:bg-zinc-700 hover:bg-zinc-800 hover:text-red-100 mr-1">
<img src='/refresh.svg'
svg:bundle
width="24px"
alt="reset">
</button>
<button d-on:click="appState.contents.count++"
class="transition-colors p-3 duration-300 active:bg-green-700 hover:bg-green-600 hover:text-green-100">
<img src='/plus.svg'
svg:bundle
width="24px"
alt="plus" />
</button>