import type { tCategory } from './categories'; export type ThemeOptions = { dark: string; light: string; }; export interface iSVG { id?: number; title: string; category: tCategory | tCategory[]; route: string | ThemeOptions; wordmark?: string | ThemeOptions; brandUrl?: string; url: string; }