21 lines
362 B
Vue
21 lines
362 B
Vue
<template>
|
|
<AuthGroupCheckButton
|
|
group-name="public-access"
|
|
label="Acceso Público"
|
|
icon="i-heroicons-globe-alt"
|
|
color="gray"
|
|
variant="soft"
|
|
:verify-backend="verifyBackend"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
interface Props {
|
|
verifyBackend?: boolean
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
verifyBackend: false
|
|
})
|
|
</script>
|