Merge pull request #229 from frappe/fix-stroke-width

fix: default strokeWidth
This commit is contained in:
Rushabh Mehta 2019-06-17 16:24:59 +05:30 committed by GitHub
commit 269847589f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ export function wrapInSVGGroup(elements, className='') {
return g; 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', { return createSVG('path', {
className: className, className: className,
d: pathStr, d: pathStr,