UNPKG

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

30 lines 853 B
/* eslint-disable max-len */ import React from 'react'; import { defaultLogoParams } from '../constants'; import { LoomIcon } from '../loom-logo'; /** * __Loom Attribution icon__ * * The Loom attribution icon without an accompanying wordmark. * * - [Examples](https://atlassian.design/components/logo/examples) * - [Code](https://atlassian.design/components/logo/code) * - [Usage](https://atlassian.design/components/logo/usage) */ export const LoomAttributionIcon = ({ appearance, label = 'Loom Attribution', size = defaultLogoParams.size, testId, iconColor = defaultLogoParams.iconColor, textColor = defaultLogoParams.textColor }) => { return /*#__PURE__*/React.createElement(LoomIcon, { appearance: appearance, label: label, size: size, testId: testId, iconColor: iconColor, textColor: textColor }); };