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