import styled from "@emotion/styled"; import * as React from "react"; import { DARK_SECONDARY_TWO } from "../../../../shared/colors"; type Props = {}; type State = {}; class Shift extends React.Component { render() { return ( ); } } export default Shift; const Svg = styled.svg` height: 10px; width: 10px; fill: ${DARK_SECONDARY_TWO}; `;