import React from 'react';
import pathForRect from './Utils/pathForRect';
export default () => {
    console.log('ttt')
    return (<path
        // className={`${baseClass}-bg`}
        stroke={'#000'}
        strokeWidth={2}
        // fill={background.length > 1 ? `url(#${gradientIDBlock})`: background[0]}
        d={pathForRect({
            x: 0,
            y: 0,
            width: 200,
            height: 300
        }, 6, 0)}
        // filter={dropShadow && `url(#${gradientIDShadow})` || undefined}
    />)
}