import React from 'react'; interface GitHubIconProps { className?: string; width?: number; height?: number; } export const GitHubIcon: React.FC = ({ className = "", width = 15, height = 14 }) => { return ( ); };