mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
24 lines
456 B
Vue
24 lines
456 B
Vue
<template>
|
|
<button class="action-btn btn--filled">
|
|
<div class="button_content">
|
|
<slot></slot>
|
|
</div>
|
|
</button>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
export default defineComponent({});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "../../styles/variables";
|
|
@import "../../styles/responsive";
|
|
|
|
.button_content {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
</style> |