11 lines
319 B
Vue
11 lines
319 B
Vue
<script setup>
|
|
import Icon from '../Icon.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex-none w-14 h-14 p-3">
|
|
<button @click.prevent="$emit('toggle')" type="button" class="w-full h-full rounded-md border border-gray-600 text-gray-700 transition-all p-1">
|
|
<Icon name="bars" />
|
|
</button>
|
|
</div>
|
|
</template> |