update_logo_v2
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-18 22:56:33 +03:00
parent 927897bd45
commit 3d5b079cc5

View File

@@ -21,20 +21,26 @@
</div>
</template>
<script setup lang="ts">
<script setup>
import LogoIcon from 'components/BaseLogoSvg.vue'
interface Props {
textColor?: string
iconColor?: string
withBackground?: boolean
animated?: boolean
}
withDefaults(defineProps<Props>(), {
textColor: 'primary',
iconColor: 'white',
withBackground: true,
animated: true
defineProps({
textColor: {
type: String,
default: 'primary'
},
iconColor: {
type: String,
default: 'white'
},
withBackground: {
type: Boolean,
default: true
},
animated: {
type: Boolean,
default: true
}
})
</script>