This commit is contained in:
2024-02-09 19:46:26 +05:00
parent 42f07f410e
commit 8f43e95057
33 changed files with 970 additions and 230 deletions
+28
View File
@@ -0,0 +1,28 @@
function DetachIcon() {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect
x="5"
y="5"
width="14"
height="14"
rx="3"
stroke="currentColor"
stroke-width="1.5"
/>
<path
d="M5 8C5 6.34315 6.34315 5 8 5H16C17.6569 5 19 6.34315 19 8V9H5V8Z"
stroke="currentColor"
stroke-width="1.5"
/>
</svg>
);
}
export default DetachIcon;