Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 407 Bytes

Icon.md

File metadata and controls

23 lines (21 loc) · 407 Bytes

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,
};