1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-25 05:21:30 +00:00
bramw_baserow/web-frontend/modules/builder/components/elements/InsertElementButton.vue
Jonathan Adeline 4321aaea9a Replace icons
2023-09-28 13:39:41 +00:00

11 lines
195 B
Vue

<template>
<a class="element-preview__insert" @click="$emit('click')">
<i class="iconoir-plus"></i>
</a>
</template>
<script>
export default {
name: 'InsertElementButton',
}
</script>