Files
pezkuwi-ui/packages/react-identicon/src/icons/Empty.tsx
T
2020-07-11 09:31:22 +02:00

22 lines
532 B
TypeScript

// Copyright 2017-2020 @polkadot/react-identicon authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
import { Props } from '../types';
import React from 'react';
function Empty ({ className = '', size, style }: Props): React.ReactElement<Props> {
return (
<svg
className={className}
height={size}
style={style}
viewBox='0 0 64 64'
width={size}
/>
);
}
export default React.memo(Empty);