@uob-web-and-digital/component-library 2.7.7 → 2.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/LogoLink/LogoLink.d.ts +4 -0
- package/dist/main.css +1 -1
- package/dist/main.js +5 -5
- package/dist/module.js +5 -5
- package/package.json +1 -1
|
@@ -10,4 +10,8 @@ export interface LogoLinkProps {
|
|
|
10
10
|
imageAltText?: string;
|
|
11
11
|
children?: ReactNode;
|
|
12
12
|
}
|
|
13
|
+
export declare const UK_LOGO_DARK_URL: string;
|
|
14
|
+
export declare const UK_LOGO_LIGHT_URL: string;
|
|
15
|
+
export declare const DUBAI_LOGO_DARK_URL: string;
|
|
16
|
+
export declare const DUBAI_LOGO_LIGHT_URL: string;
|
|
13
17
|
export default function LogoLink({ activeCampus, imageMode, ukHomepagePath, dubaiHomepagePath, classNames, imageHeight, imageWidth, imageAltText, children }: LogoLinkProps): ReactElement;
|