mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-25 20:09:12 +00:00
Ensure strokeWidth is string
This commit is contained in:
@@ -49,7 +49,7 @@ export default function(props, styleProperties) {
|
||||
strokeLinecap: caps[props.strokeLinecap] || 0,
|
||||
strokeLinejoin: joins[props.strokeLinejoin] || 0,
|
||||
strokeDasharray: strokeDasharray,
|
||||
strokeWidth: strokeWidth || '1',
|
||||
strokeWidth: `${strokeWidth || 1}`,
|
||||
strokeDashoffset: strokeDasharray ? (+props.strokeDashoffset || 0) : null,
|
||||
strokeMiterlimit: props.strokeMiterlimit || 4
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user