SVGIcon class, Macro reference entity

This commit is contained in:
barsdeveloper
2022-11-16 17:47:11 +01:00
parent 900245d69e
commit 704049c869
29 changed files with 571 additions and 190 deletions

View File

@@ -1,13 +1,9 @@
import { html } from "lit"
import PinTemplate from "./PinTemplate"
import SVGIcon from "../SVGIcon"
export default class ReferencePinTemplate extends PinTemplate {
renderIcon() {
return html`
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="ueb-pin-icon">
<polygon class="ueb-pin-tofill" points="4 16 16 4 28 16 16 28" stroke="currentColor" stroke-width="5" />
</svg>
`
return SVGIcon.referencePin
}
}