import * as React from 'react'; import { FC, CSSProperties, useId } from 'react'; interface IconProps { color?: string; size?: number; style?: CSSProperties; linkDisabled?: boolean; } const AttributionLogo: FC = ({ color = 'white', size = 12, style, linkDisabled = false, }) => { // Generate a unique ID for this instance const clipId = useId(); const svgContent = ( ); if (linkDisabled) { return svgContent; } return ( e.stopPropagation()} aria-label='Visit Adalong website' style={{ display: 'inline-block', cursor: 'pointer', ...style, }} > {svgContent} ); }; export default AttributionLogo;