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