Install and use the Mask
An SVG mask that cover all the window contents except the one specified by certain position and sizes values
Install @react-explore-kit/mask (opens in a new tab)
npm i @react-explore-kit/mask
Usage
import { Mask } from "@react-explore-kit/mask";
function App() {
const sizes = {
width: 100,
height: 100,
top: 100,
left: 100,
};
return (
<>
{/* ... */}
<Mask sizes={sizes} />
</>
);
}