How do I apply a stroke only to the right and left sides of an SVG (specifically a wave SVG)?
<svg class="defs-only" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="wave">
<svg viewBox="0 0 100 50" preserveAspectRatio="none" >
<g>
<path d="M100,30 Q70,40 50,30 T0,30 v20 h100Z"
style="fill:red;" />
</g>
</svg>
</symbol>
</svg>
<div class="wave">
<svg style="width: 100%; height: 150px; margin-top: -150px;">
<use xlink:href="#wave"/>
</svg>
</div>
The CSS code below currently applies a stroke around the entire SVG element. How can I modify it to only apply the stroke on the left and right sides:
svg {
stroke: #000;
}
Fiddle: https://jsfiddle.net/fe43rt4v/1/