@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
45 lines (33 loc) • 2.59 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _react = _interopRequireDefault(require("react"));
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _styledSystem = require("styled-system");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _extends() { _extends = Object.assign || 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; }
var Svg = (0, _styledComponents["default"])('svg')({
flex: 'none'
}, _styledSystem.space, _styledSystem.color);
var WeatherCloudyArrowRightIcon = function WeatherCloudyArrowRightIcon(_ref) {
var size = _ref.size,
props = _objectWithoutProperties(_ref, ["size"]);
return _react["default"].createElement(Svg, _extends({}, props, {
viewBox: "0 0 24 24",
width: size,
height: size,
fill: "currentcolor"
}), _react["default"].createElement("path", {
d: "M6,7L6.69,7.06C7.32,4.72 9.46,3 12,3C15.04,3 17.5,5.46 17.5,8.5L17.42,9.45C17.88,9.16 18.42,9 19,9C20.66,9 22,10.34 22,12C22,13.66 20.66,15 19,15H6C3.79,15 2,13.21 2,11C2,8.79 3.79,7 6,7M6,9C4.9,9 4,9.9 4,11C4,12.1 4.9,13 6,13H19C19.55,13 20,12.55 20,12C20,11.45 19.55,11 19,11H15.5V8.5C15.5,6.57 13.93,5 12,5C10.07,5 8.5,6.57 8.5,8.5V9H6M22,19L19,22V20H2V18H19V16L22,19"
}));
};
WeatherCloudyArrowRightIcon.displayName = 'WeatherCloudyArrowRightIcon';
WeatherCloudyArrowRightIcon.defaultProps = {
size: 24
};
var _default = WeatherCloudyArrowRightIcon;
exports["default"] = _default;