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