remove datalink type

This commit is contained in:
Fractal-Tess
2023-05-12 23:29:16 +03:00
parent 5cbe4c2027
commit ce0b809127

View File

@@ -1,15 +1,2 @@
import type { IconDefinition } from '@fortawesome/free-solid-svg-icons';
export const themes = ['dark', 'light'] as const;
export type Theme = typeof themes[number];
export type NavLink = {
target: {
href: string;
newTab?: boolean;
};
content: {
text?: string;
icon?: IconDefinition;
};
};
export type Theme = (typeof themes)[number];