mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
5 lines
147 B
JavaScript
5 lines
147 B
JavaScript
import rgba from './rgba';
|
|
export default function (props) {
|
|
return rgba(props.fill === undefined ? '#000' : props.fill, props.fillOpacity);
|
|
}
|