The SVG I\'m working with has a drop shadow via feGaussianBlur filter.
The shadow itself is displayed properly, but gets cut off on top and bottom edges.
Lik
If you're using it inside an HTML, you can simply use CSS properties to fix this issue.
svg { overflow: visible !important; }
I haven't checked other browsers, but chrome has the overflow: hidden by default on svg tags.
overflow: hidden
A bit late, but I hope it's helpful.