new icons

This commit is contained in:
2024-08-27 21:34:10 +00:00
parent 2f2eb83e3f
commit a66bbc114c
3 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import React from "react";
const index = () => {
return (
<>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth={1.5}
stroke="currentColor"
className="size-6"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15m0-3-3-3m0 0-3 3m3-3V15"
/>
</svg>
</>
);
};
export default index;