UNPKG

@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.

13 lines (12 loc) 379 B
/** * @jsxRuntime classic * @jsx jsx */ 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;