SVG vector [path] ver 3.0

<svg xmlns="http://www.w3.org/2000/svg" viewBox="-50 -50 100 100" class="snowflake">
  <g stroke="currentColor" stroke-width="3" stroke-linecap="round" fill="none">

    <!-- Större sexhörnat centrum -->
    <polygon points="0,-10 8,-5 8,5 0,10 -8,5 -8,-5" fill="currentColor"></polygon>

    <!-- Grundarm med spröt justerade -->
    <g id="arm">
      <line x1="0" y1="0" x2="0" y2="-40"></line>

      <!-- Inre spröt -->
      <line x1="0" y1="-18" x2="-10" y2="-26"></line>
      <line x1="0" y1="-18" x2="10" y2="-26"></line>

      <!-- Yttre spröt, kortare så vertikalt lika långa -->
      <line x1="0" y1="-28" x2="-9" y2="-36"></line>
      <line x1="0" y1="-28" x2="9" y2="-36"></line>
    </g>

    <!-- 6 roterade armar -->
    <use href="#arm" transform="rotate(0)"></use>
    <use href="#arm" transform="rotate(60)"></use>
    <use href="#arm" transform="rotate(120)"></use>
    <use href="#arm" transform="rotate(180)"></use>
    <use href="#arm" transform="rotate(240)"></use>
    <use href="#arm" transform="rotate(300)"></use>

  </g>
</svg>