Property ‘○○’ does not exist on type ‘JSX.IntrinsicElements’.

症状

Property 'emailIcon' does not exist on type 'JSX.IntrinsicElements'.

原因

import emailIcon from "@material-ui/icons/Email";
…中略
<Button
 startIcon={ <emailIcon/> }

React コンポーネントなので大文字始まりなのに、ついキャメルケースでインポートしていました。

修正

import EmailIcon from "@material-ui/icons/Email";
…中略
<Button
 startIcon={ <EmailIcon/> }

インポートを大文字始まりに修正。