import React from 'react' import { type BrandSVGProps } from '../Brand' export type BrandCollectiveIntelligenceProps = BrandSVGProps export const BrandCollectiveIntelligence = ({ role, classNameOverride, ...restProps }: BrandCollectiveIntelligenceProps): JSX.Element => { const props = { role, 'aria-hidden': role === 'presentation' ? true : undefined, 'className': classNameOverride, ...restProps, } return ( ) } BrandCollectiveIntelligence.displayName = 'Brand.CollectiveIntelligence'