Openzeppelin files are not importing in the contract!

I'm using import of openzepplin files in my smart contract
One of them is as :-

import "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol";

Error:-
Error: not found @openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol

Hey @Muhammad_Asad_Zaeem
are you using remix or another IDE?

I''m using remix ide
https://remix.ethereum.org/

Hi Muhammad,

The ReentracyGuard contract is not under utils but security, so the corrected import should be :

import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";