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