mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-19 21:45:10 +00:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
import _ from 'lodash';
|
|
|
|
export default function (props, context) {
|
|
if (context.isInGroup) {
|
|
props = _.defaults({}, props, context, {
|
|
isInGroup: null
|
|
});
|
|
}
|
|
|
|
return props;
|
|
}
|