mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
33 lines
400 B
Vue
33 lines
400 B
Vue
<template>
|
|
<button
|
|
class="icon-button"
|
|
@click.prevent="clickFunction"
|
|
>
|
|
<base-icon :name="icon" />
|
|
<slot />
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseIcon from '../BaseIcon/BaseIcon'
|
|
|
|
export default {
|
|
components: {
|
|
BaseIcon
|
|
},
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.icon-button {
|
|
background-color: red;
|
|
}
|
|
</style> |