A soft wobbling orb with a luminous rim, like a glowing drop of water.
Tip: pick a preset, use the custom picker, or paste your brand hex to preview this element in your colors. Some elements use a fixed multi-color palette.
three @react-three/fiber @react-three/drei<GlowDroplet /> inside your own <Canvas>.import { MeshDistortMaterial } from '@react-three/drei';
export default function GlowDroplet({ color = '#2b6bff', scale = 1 }: { color?: string; scale?: number }) {
return (
<mesh scale={scale}>
<sphereGeometry args={[1, 96, 96]} />
<MeshDistortMaterial
color={color}
emissive={color}
emissiveIntensity={0.85}
distort={0.3}
speed={1.4}
roughness={0.25}
metalness={0.1}
clearcoat={1}
clearcoatRoughness={0.3}
/>
</mesh>
);
}