1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

Add back in active prop to ActionButton which must have got lost in a merge

This commit is contained in:
Andrew Kingston 2021-05-25 15:32:56 +01:00
parent 41fb234499
commit 1b90760c2e

View file

@ -11,6 +11,7 @@
export let icon = ""
export let dataCy = null
export let size = "M"
export let active = false
function longPress(element) {
if (!longPressable) return
@ -40,6 +41,7 @@
class:spectrum-ActionButton--emphasized={emphasized}
class:is-selected={selected}
class="spectrum-ActionButton spectrum-ActionButton--size{size}"
class:active
{disabled}
on:longPress
on:click|preventDefault
@ -67,3 +69,10 @@
<span class="spectrum-ActionButton-label"><slot /></span>
{/if}
</button>
<style>
.active,
.active svg {
color: var(--spectrum-global-color-blue-600);
}
</style>