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