Plus.tsx 462 B

1234567891011121314151617181920212223
  1. import React from "react";
  2. function Plus() {
  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-plus"
  14. viewBox="0 0 24 24"
  15. >
  16. <path d="M12 5L12 19"></path>
  17. <path d="M5 12L19 12"></path>
  18. </svg>
  19. );
  20. }
  21. export default React.memo(Plus);