mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-09 22:40:33 +00:00
23 lines
437 B
Svelte
23 lines
437 B
Svelte
<script lang="ts">
|
|
import type { AccessibilityParagraph } from '@jet-app/app-store/api/models';
|
|
import LinkableTextItem from '~/components/jet/item/LinkableTextItem.svelte';
|
|
|
|
export let item: AccessibilityParagraph;
|
|
</script>
|
|
|
|
<div>
|
|
<p>
|
|
<LinkableTextItem item={item.text} />
|
|
</p>
|
|
</div>
|
|
|
|
<style>
|
|
p {
|
|
font: var(--body-tall);
|
|
}
|
|
|
|
p :global(a) {
|
|
color: var(--keyColor);
|
|
}
|
|
</style>
|