mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-24 22:51:04 +00:00
28 lines
594 B
TypeScript
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>
|
|
);
|
|
}
|