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