-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEmpty.js
34 lines (29 loc) · 1007 Bytes
/
Empty.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"use strict";
import { View } from 'react-native';
import {Svg, Circle} from 'react-native-svg';
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
// Copyright 2017-2019 @polkadot/ui-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.
class Empty extends _react.default.PureComponent {
render() {
const _this$props = this.props,
className = _this$props.className,
size = _this$props.size,
style = _this$props.style;
return _react.default.createElement(View, {
className: `container ${className}`,
style: style
}, _react.default.createElement(Svg, {
height: size,
viewBox: "0 0 64 64",
width: size
}));
}
}
exports.default = Empty;