Zap.tsx 452 B

12345678910111213141516171819202122
  1. import React from "react";
  2. function Zap() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="24"
  7. height="24"
  8. fill="none"
  9. stroke="currentColor"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. className="feather feather-zap"
  14. viewBox="0 0 24 24"
  15. >
  16. <path d="M13 2L3 14 12 14 11 22 21 10 12 10 13 2z"></path>
  17. </svg>
  18. );
  19. }
  20. export default React.memo(Zap);