Icon

February 18, 2018 ยท View on GitHub

Usage

...
import { Icon } from 'react-native-material-ui';
...
render() {
    <View>
      <Icon name="person"/>
    </View>
}

API

const propTypes = {
    name: PropTypes.string.isRequired,
    style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
    size: PropTypes.number,
    color: PropTypes.string,
};