mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 13:36:02 +00:00
23 lines
349 B
Svelte
23 lines
349 B
Svelte
<script lang="ts">
|
|
export let items: string[] = [];
|
|
</script>
|
|
|
|
<ul class="ticklist">
|
|
{#each items as item}
|
|
<li>{item}</li>
|
|
{/each}
|
|
</ul>
|
|
|
|
<style>
|
|
.ticklist {
|
|
margin: 10px;
|
|
padding: 0;
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
.ticklist li::before {
|
|
content: '✔︎ ';
|
|
color: var(--theme-icon-green);
|
|
}
|
|
</style>
|