@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.
19 lines (18 loc) • 574 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { IconSize } from './types';
type IconWrapperProps = {
appearance?: 'brand' | 'legacy' | 'neutral' | 'inverse';
customThemeSvg?: string;
iconColor?: string;
isAssets?: boolean;
label: string;
size?: IconSize;
svg: string;
testId?: string;
type?: 'tile' | 'rovo' | 'data-center';
};
export declare function IconWrapper({ size, label, svg, customThemeSvg, testId: userDefinedTestId, appearance, iconColor: customIconColor, isAssets, type, }: IconWrapperProps): JSX.Element;
export {};