anki/ts/deck-options/Warning.svelte

21 lines
526 B
Svelte
Raw Normal View History

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