mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
338 B
Vue
21 lines
338 B
Vue
<template>
|
|
<div>
|
|
<nuxt-link to="/map">
|
|
<base-button class="map-button" circle ghost>
|
|
<base-icon name="globe-detailed" size="large" />
|
|
</base-button>
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.map-button {
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
}
|
|
</style>
|