UNPKG

@digital-nature-ltd/carbon-lite

Version:

A simple tool to reduce the carbon usage of your website by blanking out the screen after a period of inactivity

10 lines 253 B
export class CarbonLiteElement extends HTMLElement { configure(message: string) { this.innerHTML = ` <div> ${message} </div> `; } } customElements.define('carbon-lite', CarbonLiteElement);