// @flow import React from 'react'; import { View, Component } from 'reactxp'; export default class Img extends Component { props: { source: string, tintColor?: string }; render() { const { source, tintColor, ...otherProps } = this.props; const url = './assets/images/' + source + '.svg'; let image; if(tintColor) { image = (