Files
speckle-server/packages/frontend-2/components/viewer/layout/SidePanel.vue
T
2025-08-11 15:54:34 +01:00

23 lines
608 B
Vue

<template>
<div class="overflow-hidden flex flex-col h-full">
<div
class="flex flex-shrink-0 justify-between items-center border-b border-outline-3 h-10 pl-4 pr-2"
>
<div class="text-body-xs text-foreground font-medium leading-none">
<span v-if="title" class="truncate">{{ title }}</span>
<slot name="title"></slot>
</div>
<slot name="actions"></slot>
</div>
<div class="flex-1 overflow-y-auto overflow-x-hidden simple-scrollbar">
<slot />
</div>
</div>
</template>
<script setup lang="ts">
defineProps<{
title?: string
}>()
</script>