add skill buttons and more
This commit is contained in:
10
components/skillButton.vue
Normal file
10
components/skillButton.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user