importExample = (cells, { importWiths = [] } = {}) => {
let code = `import {${cells.join(", ")}} `;
if (importWiths.length) {
code += `with {${importWiths.join(", ")}} `;
}
code += `from "${pinnedSlug}"`;
return htl.html`<div>
<div style="display: inline-block; width: 100px;">
${Copier("Copy import", {
value: code
})}
</div>
<code>${code}</code>
</div>`;
}