dify/web/app/components/datasets/preview/container.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

30 lines
1009 B
TypeScript

import type { ComponentProps, FC, ReactNode } from 'react'
import { cn } from '@langgenius/dify-ui/cn'
type PreviewContainerProps = ComponentProps<'div'> & {
header: ReactNode
mainClassName?: string
ref?: React.Ref<HTMLDivElement>
}
const PreviewContainer: FC<PreviewContainerProps> = (props) => {
const { children, className, header, mainClassName, ref, ...rest } = props
return (
<div className={className}>
<div
{...rest}
ref={ref}
className={cn(
'flex h-full w-full flex-col rounded-tl-xl border-t-[0.5px] border-l-[0.5px] border-components-panel-border bg-background-default-lighter shadow-md shadow-shadow-shadow-5',
)}
>
<header className="border-b border-divider-subtle pt-4 pr-4 pb-3 pl-5">{header}</header>
<div className={cn('w-full grow overflow-y-auto px-6 py-5', mainClassName)}>{children}</div>
</div>
</div>
)
}
PreviewContainer.displayName = 'PreviewContainer'
export default PreviewContainer