@atlaskit/logo
Version:
A logo is a visual representation of a brand or app. It can be a word, an image, or a combination of both.
16 lines (15 loc) • 582 B
TypeScript
import { type LogoSize } from './types';
type LogoWrapperProps = {
appearance: 'brand' | 'neutral' | 'inverse' | 'legacy';
customThemeSvg?: string;
iconColor?: string;
isAssets?: boolean;
label: string;
size?: LogoSize;
svg: string;
testId?: string;
textColor?: string;
type?: 'tile' | 'rovo' | 'data-center';
};
export declare function LogoWrapper({ appearance, size, svg, customThemeSvg, label, testId: userDefinedTestId, iconColor: customIconColor, textColor: customTextColor, isAssets, type, }: LogoWrapperProps): JSX.Element;
export {};