Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Last active February 27, 2025 17:18
Show Gist options
  • Save dontpaniclabsgists/6490174141fd8697da85bada8980cb3e to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/6490174141fd8697da85bada8980cb3e to your computer and use it in GitHub Desktop.
<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