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