change component design

This commit is contained in:
Ehsan
2024-10-11 01:44:07 +03:30
parent 43ad0ccc4c
commit 6f51905255
6 changed files with 36 additions and 9 deletions
+28
View File
@@ -0,0 +1,28 @@
function PlusB() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
>
<path
d="M5 10H15"
stroke="#EFEFEF"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10 15V5"
stroke="#EFEFEF"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
export default PlusB;