Heart.tsx 502 B

123456789101112131415161718192021
  1. import React from "react";
  2. function Heart() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="48"
  7. height="48"
  8. fill="none"
  9. stroke="#000"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. viewBox="0 0 24 24"
  14. >
  15. <path d="M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z"></path>
  16. </svg>
  17. );
  18. }
  19. export default React.memo(Heart);