// Copyright 2017-2021 @polkadot/reactnative-identicon authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types'; import React from 'react'; import { View } from 'react-native'; import Svg, { Circle } from 'react-native-svg'; export default function Empty ({ size }: Props): React.ReactElement { return ( ); }