mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-23 00:19:40 +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>
|