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