/** * The icon paths in this structure are relative to the icon pack folder. */ export type Icon = { /** * Icon to use if no light or dark icon is specified, if both light and dark are specified this can be omitted */ base: string | null; /** * Alternative icon to use when system theme is light */ light: string | null; /** * Alternative icon to use when system theme is dark */ dark: string | null; /** * Mask to be applied over the icon, themes can use this to apply custom colors over the icon. */ mask: string | null; /** * Whether the icon is a square or not */ isAproximatelySquare: boolean; }; //# sourceMappingURL=Icon.d.ts.map