cenvert to component

This commit is contained in:
Laux Dev
2026-02-27 16:33:37 +08:00
parent ce8649733f
commit 67d9ebf11f
14 changed files with 394 additions and 295 deletions

View File

@@ -0,0 +1,41 @@
import React from "react";
const CloneIcon = (props) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
{...props}
>
<path
d="M7.20898 9.76388C7.20898 9.08602 7.47826 8.43593 7.95758 7.95661C8.4369 7.47729 9.087 7.20801 9.76486 7.20801H18.0698C18.7476 7.20801 19.3977 7.47729 19.8771 7.95661C20.3564 8.43593 20.6257 9.08602 20.6257 9.76388V18.0688C20.6257 18.7467 20.3564 19.3968 19.8771 19.8761C19.3977 20.3554 18.7476 20.6247 18.0698 20.6247H9.76486C9.087 20.6247 8.4369 20.3554 7.95758 19.8761C7.47826 19.3968 7.20898 18.7467 7.20898 18.0688V9.76388Z"
stroke="#D2D3E0"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.34483 16.5396C4.05062 16.3725 3.80591 16.1304 3.63557 15.838C3.46523 15.5456 3.37533 15.2134 3.375 14.875V5.29167C3.375 4.2375 4.2375 3.375 5.29167 3.375H14.875C15.5938 3.375 15.9848 3.74396 16.3125 4.33333"
stroke="#D2D3E0"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11.041 13.917H16.791"
stroke="#D2D3E0"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13.916 11.042V16.792"
stroke="#D2D3E0"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default CloneIcon;