1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-23 00:19:40 +00:00
bramw_baserow/enterprise/web-frontend/modules/baserow_enterprise/components/AuthProviderIcon.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
200 B
Vue
Raw Normal View History

2022-11-01 08:57:55 +00:00
<template>
<img v-if="icon" :src="icon" class="auth-provider-icon" />
</template>
<script>
export default {
props: {
icon: {
type: String,
required: true,
},
},
}
</script>