| 1234567891011121314151617181920212223 |
- import React from "react";
- function Plus() {
- return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="24"
- height="24"
- fill="none"
- stroke="currentColor"
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth="2"
- className="feather feather-plus"
- viewBox="0 0 24 24"
- >
- <path d="M12 5L12 19"></path>
- <path d="M5 12L19 12"></path>
- </svg>
- );
- }
- export default React.memo(Plus);
|