mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-19 21:45:10 +00:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
let noneFill = ['transparent', 'none'];
|
|
export default function (props) {
|
|
let fill = props.fill;
|
|
if (noneFill.indexOf('fill') !== -1) {
|
|
return null;
|
|
}
|
|
return fill;
|
|
}
|