mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-18 12:24:51 +08:00
19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
import { html } from "lit"
|
|
import PinTemplate from "./PinTemplate"
|
|
|
|
/**
|
|
* @template T
|
|
* @typedef {import("../../element/PinElement").default<T>} PinElement
|
|
*/
|
|
|
|
/**
|
|
* @template T
|
|
* @extends PinTemplate<PinElement<T>>
|
|
*/
|
|
export default class MinimalPinTemplate extends PinTemplate {
|
|
|
|
render() {
|
|
return html`<div class="ueb-pin-icon">${this.renderIcon()}</div>`
|
|
}
|
|
}
|