import type Icon from "./Icon.js"; export default function IconTemplate(this: Icon) { return ( { this.hasIconTooltip && {this.effectiveAccessibleName} } { content.call(this) } ); } function content(this: Icon) { if (this.customTemplate) { return this.customTemplate; } if (this.customTemplateAsString) { return ; } return this.pathData.map(path => ( )); }