@atlaskit/logo
Version:
A logo is a visual representation of a brand or product. It can be a word or an image, or a combination of both.
14 lines (13 loc) • 411 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
/// <reference types="react" />
import { type WrapperProps } from './constants';
/**
* __Wrapper__
*
* An internal component used by `@atlaskit/logo` to render logo SVGs with correct styles.
*/
declare const Wrapper: ({ label, svg, size, appearance, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => JSX.Element;
export default Wrapper;