mirror of
https://github.com/frappe/books.git
synced 2025-02-11 16:39:25 +00:00
11 lines
237 B
Vue
11 lines
237 B
Vue
|
<template>
|
||
|
<button class="text-white text-sm px-4 py-2 focus:outline-none rounded-lg">
|
||
|
<slot></slot>
|
||
|
</button>
|
||
|
</template>
|
||
|
<style scoped>
|
||
|
button {
|
||
|
background-image: linear-gradient(180deg, #4AC3F8 0%, #2490EF 100%);
|
||
|
}
|
||
|
</style>
|