File size: 436 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<script lang="ts">
import { MarkdownCode as Markdown } from "@gradio/markdown";
export let info: string;
export let root: string;
</script>
<div>
<Markdown {root} message={info} sanitize_html={true} />
</div>
<style>
div {
margin-bottom: var(--spacing-lg);
color: var(--block-info-text-color);
font-weight: var(--block-info-text-weight);
font-size: var(--block-info-text-size);
line-height: var(--line-sm);
}
</style>
|