/* Conto Labs website kit · helpers */

// Render a raw HTML/SVG string (used for the inline diagram + icon SVGs,
// copied verbatim from the repo so they stay pixel-exact).
function Raw({ html, as = "span", className, style }) {
  const Tag = as;
  return <Tag className={className} style={style} dangerouslySetInnerHTML={{ __html: html }} />;
}

Object.assign(window, { Raw });
