import React from 'react'; type Props = { width?: number; height?: number; }; export default function SvgGithub({ width = 24, height = 24 }: Props = {}) { return ( ); }