Couldn’t reproduce: https://github.com/coagmano/blaze-svg-from-db
But I did notice that the <style> blocks inside each svg applies globally, so the style from one svg can overwrite the styles on the others. Could that be what’s happening?
You could set up webapp to serve the svgs from the database as files, and then use them in img elements or as background-images to sandbox their styles?
Or you could try rendering them as a datauri?
{{#each svg in svgs}}
<img src="data:image/svg+xml;utf8,{{{svg.code}}}">
{{/each}}
EDIT: I can’t get in-lining to work so 