import { Tool } from 'edkit'; export function renderTool(this: Tool, editor: HTMLElement) { const { title, active, icon, usable } = this; const Class = `btn btn-${ (active ? '' : 'outline-') + 'secondary' } me-2 mb-2`; return ( ); }