import styled from "@emotion/styled"; import * as React from "react"; type Props = {}; type State = {}; class Command extends React.Component { render() { return ( ); } } export default Command; const Svg = styled.svg` height: 10px; width: 10px; fill: rgb(187, 188, 190); `;