Files
react-native-svg/lib/fillFilter.js
Horcrux 1bd38f2b1e init project
init project
2016-01-17 22:29:06 +08:00

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;
}