fix: default strokeWidth

This commit is contained in:
Rushabh Mehta 2019-06-17 16:22:34 +05:30
parent aea0c5def0
commit 628602cdf3

View File

@ -98,7 +98,7 @@ export function wrapInSVGGroup(elements, className='') {
return g;
}
export function makePath(pathStr, className='', stroke='none', fill='none', strokeWidth=0) {
export function makePath(pathStr, className='', stroke='none', fill='none', strokeWidth=2) {
return createSVG('path', {
className: className,
d: pathStr,