mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
21 lines
361 B
TypeScript
21 lines
361 B
TypeScript
import { cn } from '@langgenius/dify-ui/cn'
|
|
import * as React from 'react'
|
|
|
|
type MaskProps = {
|
|
className?: string
|
|
}
|
|
|
|
const Mask = ({
|
|
className,
|
|
}: MaskProps) => {
|
|
return (
|
|
<div className={cn(
|
|
'h-12 bg-linear-to-b from-components-panel-bg-transparent to-components-panel-bg',
|
|
className,
|
|
)}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Mask)
|