mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-06 08:22:23 +00:00
strokeDash => strokeDasharray
This commit is contained in:
@@ -38,13 +38,12 @@ function strokeFilter(props, dimensions) {
|
||||
}
|
||||
|
||||
|
||||
// TODO: dashoffset
|
||||
// TODO: propTypes check
|
||||
return {
|
||||
stroke: patterns(stroke, +props.strokeOpacity, dimensions, props.svgId),
|
||||
strokeLinecap: caps[props.strokeLinecap] || 0,
|
||||
strokeLinejoin: joins[props.strokeLinejoin] || 0,
|
||||
strokeDash: strokeDasharray || null,
|
||||
strokeDasharray: strokeDasharray || null,
|
||||
strokeWidth: strokeWidth || 1,
|
||||
strokeDashoffset: strokeDasharray ? (+props.strokeDashoffset || 0) : null
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user