anki/ts/deck-options/Warning.svelte
2022-11-28 09:17:39 +10:00

21 lines
526 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import { withoutUnicodeIsolation } from "@tslib/i18n";
import { slide } from "svelte/transition";
import Row from "../components/Row.svelte";
export let warning: string;
</script>
{#if warning}
<Row>
<div class="col-12 alert alert-warning mb-0" in:slide out:slide>
{withoutUnicodeIsolation(warning)}
</div>
</Row>
{/if}