mirror of https://github.com/VERT-sh/VERT.git
Merge branch 'pr/97' into feat/conversion-qol
This commit is contained in:
commit
6621e24d62
|
|
@ -16,6 +16,7 @@
|
||||||
SettingsIcon,
|
SettingsIcon,
|
||||||
SunIcon,
|
SunIcon,
|
||||||
UploadIcon,
|
UploadIcon,
|
||||||
|
type Icon as IconType,
|
||||||
} from "lucide-svelte";
|
} from "lucide-svelte";
|
||||||
import { quintOut } from "svelte/easing";
|
import { quintOut } from "svelte/easing";
|
||||||
import Panel from "../../visual/Panel.svelte";
|
import Panel from "../../visual/Panel.svelte";
|
||||||
|
|
@ -29,7 +30,7 @@
|
||||||
name: string;
|
name: string;
|
||||||
url: string;
|
url: string;
|
||||||
activeMatch: (pathname: string) => boolean;
|
activeMatch: (pathname: string) => boolean;
|
||||||
icon: any;
|
icon: typeof IconType;
|
||||||
badge?: number;
|
badge?: number;
|
||||||
}[]
|
}[]
|
||||||
>([
|
>([
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue