mirror of
https://github.com/langgenius/dify.git
synced 2025-07-18 23:02:25 +00:00
19 lines
338 B
TypeScript
19 lines
338 B
TypeScript
![]() |
import React from 'react'
|
||
|
import cn from '@/utils/classnames'
|
||
|
|
||
|
type EffectProps = {
|
||
|
className?: string
|
||
|
}
|
||
|
|
||
|
const Effect = ({
|
||
|
className,
|
||
|
}: EffectProps) => {
|
||
|
return (
|
||
|
<div
|
||
|
className={cn('absolute size-[112px] bg-util-colors-blue-brand-blue-brand-500 blur-[80px]', className)}
|
||
|
/>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default React.memo(Effect)
|