@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
60 lines (59 loc) • 1.94 kB
TypeScript
import React from 'react';
export type LogoType = 'dnb' | 'eiendom' | 'sbankenDefault' | 'sbankenCompact' | 'sbankenHorizontal' | 'carnegie';
/**
* @deprecated Will be removed in eufemia v11. Use the `svg` prop to provide a custom logo instead.
*/
export default function LogoSvg({ svgParams, logoType, }: {
logoType: LogoType;
svgParams: {
alt: string;
};
}): import("react/jsx-runtime").JSX.Element;
/**
* SVG Logo alt texts
*/
export declare const DnbLogoAlt = "DNB Logo";
export declare const EiendomLogoAlt = "DNB Eiendom";
export declare const SbankenLogoAlt = "Sbanken - et konsept fra DNB";
export declare const CarnegieLogoAlt = "DNB Carnegie";
export declare function DnbDefault({ alt, ...props }: {
[x: string]: any;
alt: any;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace DnbDefault {
var alt: string;
}
export declare function SbankenDefault({ alt, ...props }: {
[x: string]: any;
alt: any;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace SbankenDefault {
var alt: string;
}
export declare function CarnegieDefault({ alt, ...props }: React.SVGProps<SVGSVGElement> & {
alt: string;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace CarnegieDefault {
var alt: string;
}
export declare function EiendomDefault({ alt, ...props }: {
[x: string]: any;
alt?: string;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace EiendomDefault {
var alt: string;
}
export declare function SbankenCompact({ alt, ...props }: {
[x: string]: any;
alt?: string;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace SbankenCompact {
var alt: string;
}
export declare function SbankenHorizontal({ alt, ...props }: {
[x: string]: any;
alt: any;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace SbankenHorizontal {
var alt: string;
}