mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
17 lines
334 B
Vue
17 lines
334 B
Vue
<template>
|
|
<base-button size="small" circle :ghost="!isActive" @click="onClick" :icon="icon">
|
|
<span v-if="label">{{ label }}</span>
|
|
</base-button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
isActive: Boolean,
|
|
icon: String,
|
|
label: String,
|
|
onClick: { type: Function, default: () => {} },
|
|
},
|
|
}
|
|
</script>
|