You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 regels
981 B

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _react = require('react');
  6. var _react2 = _interopRequireDefault(_react);
  7. var _pure = require('recompose/pure');
  8. var _pure2 = _interopRequireDefault(_pure);
  9. var _SvgIcon = require('../../SvgIcon');
  10. var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
  11. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  12. var NotificationDiscFull = function NotificationDiscFull(props) {
  13. return _react2.default.createElement(
  14. _SvgIcon2.default,
  15. props,
  16. _react2.default.createElement('path', { d: 'M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z' })
  17. );
  18. };
  19. NotificationDiscFull = (0, _pure2.default)(NotificationDiscFull);
  20. NotificationDiscFull.displayName = 'NotificationDiscFull';
  21. NotificationDiscFull.muiName = 'SvgIcon';
  22. exports.default = NotificationDiscFull;