12 lines
212 B
Vue
12 lines
212 B
Vue
<template>
|
|
<button type="button" class="p-2 rounded-full text-gray-700 bg-gray-100 hover:bg-gray-200">
|
|
<slot/>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'IconButton',
|
|
}
|
|
</script>
|