Last active
February 27, 2025 17:18
-
-
Save dontpaniclabsgists/6490174141fd8697da85bada8980cb3e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<button class="custom-button"> | |
{{ props.text }} | |
</button> | |
</template> | |
<script setup lang="ts"> | |
const props = defineProps<{ | |
text: string; | |
}>(); | |
</script> | |
<style scoped> | |
.custom-button { | |
background-color: #000; | |
color: #fff; | |
padding: 10px 20px; | |
border: none; | |
border-radius: 5px; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment