vite-vue2-starter/src/components/shared/ButtonPrimary.vue
2021-02-26 23:12:33 +01:00

8 lines
183 B
Vue

<template>
<button
class="inline-flex px-6 py-2 text-lg text-white bg-green-500 border-0 rounded focus:outline-none hover:bg-green-400"
>
<slot />
</button>
</template>