1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-25 00:46:46 +00:00
bramw_baserow/enterprise/web-frontend/modules/baserow_enterprise/components/AuthProviderIcon.vue
2022-11-01 08:57:55 +00:00

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>