Files
pezkuwi-ui/packages/reactnative-identicon/src/icons/Empty.tsx
T
Jaco Greeff f003063b94 2021 (#424)
2021-01-03 11:46:19 +01:00

28 lines
594 B
TypeScript

// 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<Props> {
return (
<View>
<Svg
height={size}
viewBox='0 0 64 64'
width={size}
>
<Circle
cx='32'
cy='32'
fill='#eee'
r='32'
/>
</Svg>
</View>
);
}