mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-10 01:30:33 +00:00
init commit
This commit is contained in:
22
src/components/jet/item/AccessibilityParagraphItem.svelte
Normal file
22
src/components/jet/item/AccessibilityParagraphItem.svelte
Normal file
@@ -0,0 +1,22 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user