Premium design with animated fluid effects
import { EtherealShadow } from '@/components/ui/etheral-shadow';
export function MyComponent() {
return (
<div className="w-full h-screen">
<EtherealShadow
color="rgba(201, 168, 76, 0.6)"
animation={{ scale: 100, speed: 90 }}
noise={{ opacity: 1, scale: 1.2 }}
sizing="fill"
/>
</div>
);
}