mango-v4-ui/components/ColorBlur.tsx

19 lines
338 B
TypeScript
Raw Normal View History

2023-03-07 18:54:36 -08:00
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