You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
328 B
Vue

<template>
<div class="p-1">
<button
type="button"
v-show="visible"
class="inline-flex bg-black rounded-full text-xs p-1"
>
<Icon :name="icon" color="white" />
</button>
</div>
</template>
<script>
export default {
props: ['icon', 'work', 'visible']
}
</script>