mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
34 lines
639 B
Vue
34 lines
639 B
Vue
<script setup lang="ts">
|
|
import AssistantIcon from '../AskAssistantIcon/AssistantIcon.vue';
|
|
|
|
withDefaults(defineProps<{ size?: 'small' | 'mini' }>(), {
|
|
size: 'small',
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="[$style.container, $style[size]]">
|
|
<AssistantIcon :size="size" theme="blank" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
background: var(--color-assistant-highlight-gradient);
|
|
border-radius: 50%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.small {
|
|
height: var(--spacing-m);
|
|
width: var(--spacing-m);
|
|
}
|
|
|
|
.mini {
|
|
height: var(--spacing-s);
|
|
width: var(--spacing-s);
|
|
}
|
|
</style>
|