import * as React from 'react' import { svg, path } from 'react-native-svg' import { withTheme } from 'react-native-paper' import names from '../Utils/SvgUtils' function Icon(props) { const { name, width, height, type, theme } = props let { color } = props const { colors } = theme if (type) { color = colors[type] } return ( ) } export default withTheme(Icon)