This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user