dify/web/features/agent-v2/agent-detail/section-surface.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

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>
)
}