mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-20 07:10:40 -07:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
export type Sponsor = {
|
|
name: string;
|
|
url: string;
|
|
logoSrc: string;
|
|
logoAlt?: string;
|
|
/** Set true for solid-black logos that need to flip white in dark mode. */
|
|
invertOnDark?: boolean;
|
|
};
|
|
|
|
export const SPONSORS: Sponsor[] = [];
|