mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
31 lines
645 B
Vue
31 lines
645 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
text?: string | number
|
|
color: string
|
|
icon: string
|
|
activeIcon?: string
|
|
hover: string
|
|
groupHover: string
|
|
active?: boolean
|
|
disabled?: boolean
|
|
}>()
|
|
|
|
defineOptions({
|
|
inheritAttrs: false,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
flex gap-1 items-center rounded :hover="`op100 ${hover}`" group
|
|
:class="active ? [color, 'op100'] : 'op50'"
|
|
v-bind="$attrs"
|
|
>
|
|
<div rounded-full p2 :group-hover="groupHover">
|
|
<div :class="[active && activeIcon ? activeIcon : icon, { 'pointer-events-none': disabled }]" />
|
|
</div>
|
|
|
|
<span v-if="text">{{ text }}</span>
|
|
</button>
|
|
</template>
|