8 lines
289 B
TypeScript
8 lines
289 B
TypeScript
![]() |
const html = `<div id="loader" style="top:calc(50% - 30px); left:calc(50% - 30px)" class="absolute z-highest">
|
||
|
<div class="loader border-brand dark:border-darkmodebrand">
|
||
|
<span class="loader-inner bg-brand dark:bg-darkmodebrand"></span>
|
||
|
</div>
|
||
|
</div>
|
||
|
<slot></slot>`;
|
||
|
export default html;
|