mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
* WIP * Fix type 1 * Missing types info * Some fixes * Several types refactoring and fixes * WIP * Fix grammar
18 lines
379 B
JavaScript
18 lines
379 B
JavaScript
import { html } from "lit"
|
|
import PinTemplate from "./PinTemplate.js"
|
|
|
|
/**
|
|
* @template {AnyValue} 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>
|
|
`
|
|
}
|
|
}
|