mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 09:10:39 +08:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
import { html } from "lit"
|
|
import PinTemplate from "./PinTemplate"
|
|
|
|
export default class MinimalPinTemplate extends PinTemplate {
|
|
|
|
render() {
|
|
return html`<div class="ueb-pin-icon">${this.renderIcon()}</div>`
|
|
}
|
|
}
|