1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-26 11:31:08 +03:00
elk/components/status/StatusActionButton.vue

34 lines
818 B
Vue
Raw Normal View History

2022-11-24 13:04:20 +08:00
<script setup lang="ts">
defineProps<{
text?: string | number
color: string
icon: string
2022-11-24 16:34:05 +08:00
activeIcon?: string
2022-11-24 13:04:20 +08:00
hover: string
groupHover: string
active?: boolean
disabled?: boolean
2022-11-25 18:46:25 -05:00
as?: string
2022-11-24 13:04:20 +08:00
}>()
defineOptions({
inheritAttrs: false,
})
</script>
<template>
2022-11-25 18:46:25 -05:00
<component
:is="as || 'button'"
flex gap-1 items-center rounded group
:hover="`op100 ${hover}`" focus:outline-none :focus-visible="`op100 ${hover}`"
2022-11-24 16:34:05 +08:00
:class="active ? [color, 'op100'] : 'op50'"
v-bind="$attrs"
>
2022-11-25 18:46:25 -05:00
<div rounded-full p2 :group-hover="groupHover" :group-focus-visible="groupHover" group-focus-visible:ring="2 current">
2022-11-24 16:34:05 +08:00
<div :class="[active && activeIcon ? activeIcon : icon, { 'pointer-events-none': disabled }]" />
</div>
2022-11-24 13:04:20 +08:00
2022-11-24 16:34:05 +08:00
<span v-if="text">{{ text }}</span>
2022-11-25 18:46:25 -05:00
</component>
2022-11-24 13:04:20 +08:00
</template>