function Copier(content = "Copy code", options) {
if (Array.isArray(content)) content = Array.from(content, ([key, value]) => [key, () => (pbcopy(value), value)]);
return Inputs.button(content, {...options, reduce: (value) => (pbcopy(value), value)});
}