@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.
17 lines (16 loc) • 488 B
TypeScript
import { type LogoProps } from './types';
export type { LogoProps };
/**
* These are the default parameters for LogoProps if the user does not specify values.
*/
export declare const defaultLogoParams: Partial<LogoProps>;
export declare const legacyDefaultLogoParams: {
iconGradientStart: string;
iconGradientStop: string;
};
/**
* The props for the <Wrapper /> that takes the svg and turns it into a component.
*/
export type WrapperProps = LogoProps & {
svg: string;
};