Learn how to apply blend modes to complex SVG paths, creating intricate shape-based blending effects.
<div style={{ background: 'blue' }}>
<svg style={{ mixBlendMode: 'multiply' }}>
<path d="M 50,50 Q 100,20 150,50"
stroke="yellow"
strokeWidth="20"
fill="none" />
</svg>
</div>
/* SVG paths blend beautifully */
/* Great for complex shapes and curves */