mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 05:55:10 +00:00
Update README.md
Update README.md
This commit is contained in:
@@ -3,8 +3,12 @@ import rgba from './rgba';
|
||||
let separator = /\s*,\s*/;
|
||||
export default function (props) {
|
||||
let strokeDasharray = props.strokeDash || props.strokeDasharray;
|
||||
let strokeDashoffset = +props.strokeDashoffset;
|
||||
|
||||
if (typeof strokeDasharray === 'string') {
|
||||
// TODO: support Percentage for strokeDashoffset
|
||||
if (!isNaN(strokeDashoffset)) {
|
||||
strokeDasharray = [+props.strokeDashoffset];
|
||||
} else if (typeof strokeDasharray === 'string') {
|
||||
strokeDasharray = strokeDasharray.split(separator).map(dash => +dash);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user