Ethereum blockies for React Native as SVGs. Based on https://github.com/ethereum/blockies
Depends on react-native-svg and needs to be linked.
yarn add git+https://github.com/bpeters/react-native-blockies-svg.git
react-native link
Treat like any other react component, included props: size, scale, seed, color, bgcolor, and spotcolor.
import Blockies from 'react-native-blockies-svg';
render() {
return (
<Blockies
size={16}
scale={8}
seed="something"
/>
);
}