import React from 'react' interface OpenAiIconProps { className?: string size?: number color?: string } /** @deprecated Use icons from icons-v2-generated instead. */ export function OpenAiIcon({ className = '', size = 24, color = 'white' }: OpenAiIconProps) { return ( ) }