Files
MeshChatX/meshchatx/src/frontend/components/IconButton.vue
2026-01-01 15:05:29 -06:00

15 lines
393 B
Vue

<template>
<button
type="button"
class="text-gray-500 hover:text-gray-700 dark:text-zinc-400 dark:hover:text-zinc-100 hover:bg-gray-100 dark:hover:bg-zinc-800 p-2 rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 transition-all duration-200"
>
<slot />
</button>
</template>
<script>
export default {
name: "IconButton",
};
</script>