UNPKG

beehively-icons

Version:
29 lines 2.87 kB
var _excluded = ["color", "size"]; function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import React, { forwardRef } from 'react'; import PropTypes from 'prop-types'; var VideoOff = /*#__PURE__*/forwardRef(function (_ref, ref) { var _ref$color = _ref.color, color = _ref$color === void 0 ? 'currentColor' : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, _excluded); return /*#__PURE__*/React.createElement("svg", _extends({ ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: color }, rest), /*#__PURE__*/React.createElement("path", { d: "M15,19c0,.552-.447,1-1,1H5C2.244,20,0,17.757,0,15v-6C0,8.152,.217,7.314,.625,6.577c.269-.482,.877-.655,1.36-.389,.483,.268,.657,.877,.389,1.36-.245,.441-.374,.943-.374,1.452v6c0,1.654,1.346,3,3,3H14c.553,0,1,.448,1,1Zm3.637-2.125c-.033,.081-.08,.151-.129,.218l5.2,5.2c.391,.391,.391,1.023,0,1.414-.195,.195-.451,.293-.707,.293s-.512-.098-.707-.293L4.294,5.707h0L.293,1.707C-.097,1.316-.097,.684,.293,.293S1.317-.098,1.708,.293l3.707,3.707H14c2.618,0,4.748,2.03,4.959,4.594l1.757-1.772c.034-.034,.07-.066,.109-.096,.604-.454,1.399-.526,2.078-.188,.677,.338,1.097,1.018,1.097,1.775v7.319c0,.757-.42,1.437-1.097,1.775-.283,.141-.587,.211-.889,.211-.421,0-.837-.135-1.189-.399-.037-.028-.073-.059-.106-.092l-1.754-1.752c-.038,.516-.134,1.022-.328,1.501Zm.363-4.292l3.026,3.022-.026-7.238-3,3.027v1.189Zm-2-3.583c0-1.654-1.346-3-3-3H7.414l9.535,9.535c.031-.175,.051-.353,.051-.535v-6Z" })); }); VideoOff.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; VideoOff.displayName = 'VideoOff'; export default VideoOff;