2
0

file.svg 389 B

123456789101112
  1. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
  2. <defs>
  3. <radialGradient id="a" cx="0" cy="1" r="1">
  4. <stop offset="0" stop-color="#89b"/>
  5. <stop offset="1" stop-color="#def"/>
  6. </radialGradient>
  7. </defs>
  8. <g stroke="#000" stroke-width="2">
  9. <path d="M9 2h23l2 1 9 9 1 2v31l-2 1H9l-1-1V4l1-2z" fill="url(#a)"/>
  10. <path d="M32 2v11l1 1h11" fill="url(#a)"/>
  11. </g>
  12. </svg>