the props w and h are excluded from the definition of GithubIcon (lines 229 - 244 of Icons.js):
export function GithubIcon() { // should be GithubIcon({ w, h })
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24" // should be {w}
height="24" // should be {h}
fill="none"
viewBox="0 0 24 24"
>
<path
// ...
></path>
</svg>
);
}
On line 68 of [path].js:
the props
w
andh
are excluded from the definition of GithubIcon (lines 229 - 244 of Icons.js):