We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa73872 commit 5fd6784Copy full SHA for 5fd6784
index.js
@@ -192,7 +192,7 @@ class SvgUri extends Component{
192
return <G key={i} {...componentAtts}>{childs}</G>;
193
case 'path':
194
componentAtts = this.obtainComponentAtts(node, PATH_ATTS);
195
- return <Path key={i} {...componentAtts}>{childs}</Path>;
+ return <Path key={i} {...componentAtts} fill={this.props.fill}>{childs}</Path>;
196
case 'circle':
197
componentAtts = this.obtainComponentAtts(node, CIRCLE_ATTS);
198
return <Circle key={i} {...componentAtts}>{childs}</Circle>;
0 commit comments