import React from 'react'; interface OpenSourceIconProps { color?: string; className?: string; width?: number; height?: number; } /** @deprecated Use icons from icons-v2-generated instead. */ export const OpenSourceIcon: React.FC = ({ className = "", width = 19, height = 18, color = 'white' }) => { return ( ); };