init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
13
lib/components/bio/widgets/Title.svelte
Normal file
13
lib/components/bio/widgets/Title.svelte
Normal file
|
@ -0,0 +1,13 @@
|
|||
<script lang="ts">
|
||||
import Panel from '../elements/Panel.svelte';
|
||||
|
||||
export let data: WidgetMarkdown;
|
||||
export let handle: boolean = false;
|
||||
export let isPreview: boolean = false;
|
||||
</script>
|
||||
|
||||
<Panel preview={isPreview} invisible={true} {handle}>
|
||||
<div class="px-6 py-3">
|
||||
<p class="line-clamp-2 break-words font-semibold text-xl -mb-1 min-h-[28px]">{data.content}</p>
|
||||
</div>
|
||||
</Panel>
|
Loading…
Add table
Add a link
Reference in a new issue