19 lines
338 B
TypeScript
19 lines
338 B
TypeScript
const ColorBlur = ({
|
|
className,
|
|
height,
|
|
width,
|
|
}: {
|
|
className?: string
|
|
height: string
|
|
width: string
|
|
}) => {
|
|
return (
|
|
<div
|
|
className={`absolute rounded-full bg-th-button opacity-10 mix-blend-screen blur-3xl filter ${className}`}
|
|
style={{ height: height, width: width }}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default ColorBlur
|