List group
- Profile
- Settings
- Messages
- Download
<script lang="ts">
import { Listgroup } from 'svelte-5-ui-lib';
let simpleList = ["Profile", "Settings", "Messages", "Download"];
</script>
<div class="flex justify-center">
<Listgroup items={simpleList} class="w-48" />
</div>