Coves frontend - a photon fork
1<script>
2 // @ts-nocheck
3 import { getContext } from 'svelte'
4
5 let { children } = $props()
6
7 const options = getContext('options')
8</script>
9
10<p class={[!options.noStyle && 'leading-[1.7] break-words max-w']}>
11 {@render children?.()}
12</p>
13
14<style>
15 .max-w {
16 max-width: 70ch;
17 }
18</style>