Files
react-native-svg/lib/fillFilter.js
Horcrux 815540fc28 Add path examples
Add path examples
2016-01-22 00:08:07 +08:00

5 lines
147 B
JavaScript

import rgba from './rgba';
export default function (props) {
return rgba(props.fill === undefined ? '#000' : props.fill, props.fillOpacity);
}