/* Add custom Js styles below */
(() => {
const icon = `
`;
const number = '+966566148955';
const body = document.querySelector(".app-inner");
const container = document.createElement("div");
container.className = 'whatsapp-container';
container.innerHTML = `
${icon}
`
Object.assign(container.style, {
position: 'fixed',
bottom: '7rem',
right: '1rem',
width: '3.6rem',
"z-index": '100',
})
body?.appendChild(container);
})();