2023-03-07 18:54:36 -08:00
|
|
|
const ColorBlur = ({
|
|
|
|
className,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
}: {
|
|
|
|
className?: string
|
|
|
|
height: string
|
|
|
|
width: string
|
|
|
|
}) => {
|
|
|
|
return (
|
|
|
|
<div
|
2023-05-21 22:24:04 -07:00
|
|
|
className={`absolute rounded-full blur-3xl filter ${className}`}
|
2023-03-07 18:54:36 -08:00
|
|
|
style={{ height: height, width: width }}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ColorBlur
|