JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<title>Font Awesome Icons</title>
<meta http-equiv='content-type' content="text/html; charset=UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
#abc:before{
content:"\f204";
}
#abc:hover:before{
content:"\f205";
}
</style>
</head>
<body>
<i id='abc' class="fa" style="font-size:24px"></i>
</body>
</html>