Files
juls07.dev/components/skillButton.vue
2022-11-28 22:12:48 -06:00

10 lines
289 B
Vue

<script>
export default {
props: ['iconSrc', 'name']
}
</script>
<template>
<button class="font-inter md:text-lg w-fit min-w-fit bg-zinc-800 py-1 px-2 rounded shadow flex items-center"><img
:src="iconSrc"
class="mr-2 w-5 h-5" />{{name}}</button>
</template>