alex-sharoff-website/components/RoundButton.vue
2023-11-11 10:34:31 +04:00

33 lines
460 B
Vue

<template>
<button
class="
font-general-medium
text-md
rounded-full
border-2
px-4
py-2
bg-white
hover:bg-background-dark
text-background-dark
hover:text-white
transition-colors duration-400
"
>
<slot/>
</button>
</template>
<script>
export default {
name: "RoundButton",
props: {
}
}
</script>
<style scoped>
</style>