mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
15 lines
435 B
Svelte
15 lines
435 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="typescript">
|
|
export let id: string | undefined = undefined;
|
|
let className: string | undefined;
|
|
export { className as class };
|
|
|
|
export let nowrap = false;
|
|
</script>
|
|
|
|
<div {id} class={`btn-toolbar ${className}`} class:flex-nowrap={nowrap} role="toolbar">
|
|
<slot />
|
|
</div>
|