import {type CSSResultGroup, html, unsafeCSS} from "lit"; import {property} from "lit/decorators.js"; import ZincElement from "../../../../../internal/zinc-element"; import styles from './tool.scss'; export default class ZnEditorTool extends ZincElement { static styles: CSSResultGroup = unsafeCSS(styles); @property() uri: string; @property() label: string; @property() key: string; @property() icon: string; @property() handler: string = 'dialog'; render() { return html`
` } } ZnEditorTool.define('zn-editor-tool');