import React from 'react' interface GitHubIconProps { className?: string } export const GitHubIcon: React.FC = ({ className = 'h-4 w-4' }) => { return ( ) } export default GitHubIcon