@hipay/hipay-material-ui 2.0.0-beta.72 → 2.0.0-beta.74

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,19 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
+ import React from 'react';
4
+
5
+ const HiDownload = props => {
6
+ const {
7
+ color
8
+ } = props,
9
+ other = _objectWithoutProperties(props, ["color"]);
10
+
11
+ return React.createElement("svg", _extends({
12
+ viewBox: "0 0 500 500"
13
+ }, other), React.createElement("path", {
14
+ fill: color,
15
+ d: "M250 0C111.94 0 0 111.94 0 250s111.92 250 250 250 250-111.92 250-250S388.06 0 250 0zm-44.18 210.14V114.8h88.37v95.34h58.68L250 321.14l-102.87-111zM352.87 385.2H147.13v-32h205.74z"
16
+ }));
17
+ };
18
+
19
+ export default HiDownload;
@@ -14,4 +14,5 @@ export { default as HiTransaction } from './HiTransaction';
14
14
  export { default as HiUser } from './HiUser';
15
15
  export { default as HiWidget } from './HiWidget';
16
16
  export { default as HiActivity } from './HiActivity';
17
- export { default as HiPermission } from './HiPermission';
17
+ export { default as HiPermission } from './HiPermission';
18
+ export { default as HiDownload } from './HiDownload';
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
13
+
14
+ var _react = _interopRequireDefault(require("react"));
15
+
16
+ var HiDownload = function HiDownload(props) {
17
+ var color = props.color,
18
+ other = (0, _objectWithoutProperties2.default)(props, ["color"]);
19
+ return _react.default.createElement("svg", (0, _extends2.default)({
20
+ viewBox: "0 0 500 500"
21
+ }, other), _react.default.createElement("path", {
22
+ fill: color,
23
+ d: "M250 0C111.94 0 0 111.94 0 250s111.92 250 250 250 250-111.92 250-250S388.06 0 250 0zm-44.18 210.14V114.8h88.37v95.34h58.68L250 321.14l-102.87-111zM352.87 385.2H147.13v-32h205.74z"
24
+ }));
25
+ };
26
+
27
+ var _default = HiDownload;
28
+ exports.default = _default;
@@ -107,6 +107,12 @@ Object.defineProperty(exports, "HiPermission", {
107
107
  return _HiPermission.default;
108
108
  }
109
109
  });
110
+ Object.defineProperty(exports, "HiDownload", {
111
+ enumerable: true,
112
+ get: function get() {
113
+ return _HiDownload.default;
114
+ }
115
+ });
110
116
 
111
117
  var _HiAccount = _interopRequireDefault(require("./HiAccount"));
112
118
 
@@ -140,4 +146,6 @@ var _HiWidget = _interopRequireDefault(require("./HiWidget"));
140
146
 
141
147
  var _HiActivity = _interopRequireDefault(require("./HiActivity"));
142
148
 
143
- var _HiPermission = _interopRequireDefault(require("./HiPermission"));
149
+ var _HiPermission = _interopRequireDefault(require("./HiPermission"));
150
+
151
+ var _HiDownload = _interopRequireDefault(require("./HiDownload"));
package/index.es.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license HiPay-Material-UI v2.0.0-beta.72
1
+ /** @license HiPay-Material-UI v2.0.0-beta.74
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license HiPay-Material-UI v2.0.0-beta.72
1
+ /** @license HiPay-Material-UI v2.0.0-beta.74
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@hipay/hipay-material-ui",
3
3
  "private": false,
4
4
  "author": "HiPay PSYCHE Team",
5
- "version": "2.0.0-beta.72",
5
+ "version": "2.0.0-beta.74",
6
6
  "description": "React components that implement Google's Material Design.",
7
7
  "keywords": [
8
8
  "react",
@@ -74,4 +74,4 @@
74
74
  },
75
75
  "main": "./index.js",
76
76
  "module": "./index.es.js"
77
- }
77
+ }