Files
speckle-server/packages/frontend-2/components/error/Reference.vue
T
2025-07-14 10:47:20 +03:00

17 lines
330 B
Vue

<template>
<CommonCopyButton :title="title" :size="size" />
</template>
<script setup lang="ts">
withDefaults(
defineProps<{
title?: string
size?: string
}>(),
{
title:
'If you would like help from the server administrators, click to copy the error reference.',
size: 'text-body-3xs'
}
)
</script>