UNPKG

remix-nlux

Version:

Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.

13 lines (9 loc) 371 B
export const className = 'nlux-comp-cancelIcon'; export const createCancelIconDom = () => { const cancelIcon = document.createElement('div'); cancelIcon.classList.add(className); const cnlIcnCtn = document.createElement('div'); cnlIcnCtn.classList.add('nlux-comp-cancelIcon-container'); cancelIcon.appendChild(cnlIcnCtn); return cancelIcon; };