mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-25 00:46:46 +00:00
15 lines
200 B
Vue
15 lines
200 B
Vue
<template>
|
|
<img v-if="icon" :src="icon" class="auth-provider-icon" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|