hub-site/wip-refactor/components/FancyButton.vue
mrrpnya c2095d0b13
Some checks failed
Testing / test (pull_request) Has been cancelled
Testing / test (push) Waiting to run
Publish to OCI Registry / publish (push) Has been cancelled
.
2025-03-05 22:34:37 -08:00

15 lines
No EOL
361 B
Vue

<script setup>
const props = defineProps({
color: String,
});
</script>
<template>
<button
:class='"border-none w-full text-black rounded-full bg-gradient-to-r opacity-80 hover:opacity-100 duration-200 transition-all" +
" from-" + props.color + "-300 " + "to-" + props.color + "-200"'>
<slot></slot>
</button>
</template>