This commit is contained in:
vcoppe
2025-06-21 21:07:36 +02:00
parent f0230d4634
commit 1cc07901f6
803 changed files with 7937 additions and 6329 deletions

View File

@@ -29,7 +29,8 @@ import {
TriangleAlert,
Anchor,
Toilet,
} from 'lucide-svelte';
type IconProps,
} from '@lucide/svelte';
import {
Landmark as LandmarkSvg,
Shell as ShellSvg,
@@ -61,11 +62,11 @@ import {
Anchor as AnchorSvg,
Toilet as ToiletSvg,
} from 'lucide-static';
import type { ComponentType } from 'svelte';
import type { Component } from 'svelte';
export type Symbol = {
value: string;
icon?: ComponentType<Icon>;
icon?: Component<IconProps>;
iconSvg?: string;
};