mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 09:44:49 +08:00
18 lines
378 B
JavaScript
Executable File
18 lines
378 B
JavaScript
Executable File
import { html } from "lit"
|
|
import PinTemplate from "./PinTemplate.js"
|
|
|
|
/**
|
|
* @template {IEntity} T
|
|
* @extends PinTemplate<T>
|
|
*/
|
|
export default class MinimalPinTemplate extends PinTemplate {
|
|
|
|
render() {
|
|
return html`
|
|
<div class="ueb-pin-wrapper">
|
|
<div class="ueb-pin-icon">${this.renderIcon()}</div>
|
|
</div>
|
|
`
|
|
}
|
|
}
|