This commit is contained in:
2024-04-15 18:19:49 +05:00
commit e0498a7d25
32 changed files with 2705 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import SearchPlusIcon from "../icons/SearchIcon";
import OpenFullscreenIcon from "../icons/OpenFullscreenIcon";
import LineIcon from "../icons/LineIcon";
const ZoomHint = () => {
return (
<div className="absolute z-10 m-auto top-1/2 left-1/2 flex bg-[#0D192266] p-4 text-white gap-4 items-center">
<SearchPlusIcon />
<LineIcon />
<OpenFullscreenIcon />
</div>
);
};
export default ZoomHint;