mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-11 18:16:19 +00:00
fix: imports
This commit is contained in:
parent
b7e06e89cb
commit
78e16e7210
2 changed files with 4 additions and 6 deletions
|
|
@ -5,9 +5,9 @@
|
|||
|
||||
import Shadow from '$lib/components/Shadow.svelte'
|
||||
import * as Avatar from '$lib/components/ui/avatar'
|
||||
import { Load } from '$lib/components/ui/img'
|
||||
import * as Popover from '$lib/components/ui/popover'
|
||||
import { cn, since } from '$lib/utils'
|
||||
import { Load } from '../img';
|
||||
|
||||
type $$Props = HTMLAttributes<HTMLImageElement> & {
|
||||
user: ResultOf<typeof UserFrag>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
<script lang='ts'>
|
||||
|
||||
import { Handle } from '@xyflow/svelte'
|
||||
import { Position } from '@xyflow/system'
|
||||
import { Handle, Position } from '@xyflow/svelte'
|
||||
|
||||
import { cn } from '$lib/utils'
|
||||
|
||||
export let data: { label: string, id: number, current?: boolean }
|
||||
export let id: string
|
||||
export let targetPosition: Position = Position.Top
|
||||
export let sourcePosition: Position = Position.Bottom
|
||||
export let targetPosition: Position = Position.Left
|
||||
export let sourcePosition: Position = Position.Right
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
||||
$$restProps
|
||||
|
|
|
|||
Loading…
Reference in a new issue