mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-08-09 22:45:41 +00:00
22 lines
532 B
TypeScript
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);
|