import styled from "@emotion/styled"; import * as React from "react"; type Props = { active: boolean; }; type State = {}; class Home extends React.Component { render() { return ( ); } } export default Home; const Svg = styled.svg<{ active: boolean }>` height: 20px; width: 20px; margin-right: 10px; fill: ${(props) => props.active ? "rgb(255, 255, 255)" : "rgb(187, 188, 190)"}; `;