<script src="https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script type="text/babel">
<div className='container'>
<h3>font Awesome icons color change in React Js</h3>
<i className="fas fa-coffee fa-xs"></i>
<i className="fas fa-star fa-sm"></i>
<i className="fas fa-heart fa-lg"></i>
<i className="fas fa-smile fa-2x"></i>
<i className="fas fa-check-circle fa-3x"></i>
<i className="fas fa-exclamation-triangle fa-4x"></i>
<i className="fas fa-bell fa-5x"></i>
<div classNmae='inline-style'>
<i className="fas fa-gift" style={{ fontSize: '15px' }}></i>
<i className="fas fa-flag" style={{ fontSize: '15px' }}></i>
<i className="fas fa-sun" style={{ fontSize: '20px' }}></i>
<i className="fas fa-moon" style={{ fontSize: '25px' }}></i>
<i className="fas fa-rocket" style={{ fontSize: '30px' }}></i>
<i className="fas fa-star-half-alt" style={{ fontSize: '35px' }}></i>
<i className="fas fa-paper-plane" style={{ fontSize: '40px' }}></i>
<i className="fas fa-leaf" style={{ fontSize: '45px' }}></i>
<i className="fas fa-crown" style={{ fontSize: '50px' }}></i>
ReactDOM.render(<App />, document.getElementById("app"));
font-family: Arial, sans-serif;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
justify-content: space-between;