mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
16 lines
382 B
Vue
16 lines
382 B
Vue
<template>
|
|
<button
|
|
class="flex justify-center items-center outline-none border-none p-0 bg-white text-neutral-950 dark-theme:bg-zinc-700 dark-theme:text-white w-8 h-8 rounded-lg cursor-pointer"
|
|
role="button"
|
|
@click="onClick"
|
|
>
|
|
<slot></slot>
|
|
</button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { onClick } = defineProps<{
|
|
onClick: () => void
|
|
}>()
|
|
</script>
|