Reference pin style

This commit is contained in:
barsdeveloper
2022-09-20 17:37:01 +02:00
parent 4e715568fe
commit bf2c3ec939
7 changed files with 79 additions and 21 deletions

View File

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