mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 04:58:32 +08:00
35 lines
810 B
TypeScript
35 lines
810 B
TypeScript
'use client'
|
|
|
|
import type { ReactNode } from 'react'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
|
|
type AgentDetailSectionSurfaceProps = {
|
|
children: ReactNode
|
|
className?: string
|
|
label: string
|
|
panelClassName?: string
|
|
}
|
|
|
|
export function AgentDetailSectionSurface({
|
|
children,
|
|
className,
|
|
label,
|
|
panelClassName,
|
|
}: AgentDetailSectionSurfaceProps) {
|
|
return (
|
|
<section
|
|
aria-label={label}
|
|
className={cn('flex h-full min-w-0 flex-1 overflow-hidden py-1 pr-1 pl-0', className)}
|
|
>
|
|
<div
|
|
className={cn(
|
|
'flex min-w-0 flex-1 flex-col overflow-hidden rounded-lg border-[0.5px] border-components-panel-border bg-components-panel-bg shadow-xl shadow-shadow-shadow-5',
|
|
panelClassName,
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|