import React from 'react'; interface OpenmspLogoProps extends React.SVGProps { className?: string; frontBubbleColor?: string; innerFrontBubbleColor?: string; backBubbleColor?: string; color?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function OpenmspLogo({ className = '', frontBubbleColor = '#000000', innerFrontBubbleColor = '#ffffff', backBubbleColor = '#ffffff', ...props }: OpenmspLogoProps) { return ( ); }