import * as React from 'react' import colors from 'src/styles/colors' import Svg, { Path } from 'svgs' interface Props { height?: number color?: string width?: number } export default class Search extends React.PureComponent { static defaultProps = { width: 14, height: 15, color: colors.contentPrimary, } render() { return ( ) } }