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