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