mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
18 lines
267 B
Vue
18 lines
267 B
Vue
<script lang="ts" setup>
|
|
export interface Props {
|
|
outline?: boolean;
|
|
}
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
<template>
|
|
<N8nButton
|
|
label="Chat"
|
|
size="large"
|
|
icon="comment"
|
|
type="primary"
|
|
:outline="outline"
|
|
data-test-id="workflow-chat-button"
|
|
/>
|
|
</template>
|