VuesticLogo.vue 448 Bytes
<template>
  <img :height="height" src="/HUAHENG.png" alt="HUAHENG Logo" class="vuestic-logo" />
</template>

<script lang="ts" setup>
withDefaults(
  defineProps<{
    height?: number
    start?: string
    end?: string
    gradient?: boolean
  }>(),
  {
    height: 36,
    start: 'primary',
    end: undefined,
    gradient: true,
  },
)
</script>

<style lang="scss" scoped>
.vuestic-logo {
  max-width: 100%;
  object-fit: contain;
}
</style>