import { html, TemplateResult } from 'core/utils'; export default ({ disabled, className, title, customAction, to }): TemplateResult => html`${disabled ? html`${title}` : html`${title}`}`;