@pathwright/pathicons
Version:
Pathwright icons, synced from Figma to React components
40 lines (37 loc) • 2.79 kB
JavaScript
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
import React from 'react';
import PropTypes from 'prop-types';
import { jsxs, jsx } from 'react/jsx-runtime';
var _excluded = ["color", "size"];
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var CloudAsteriskIcon = /*#__PURE__*/React.forwardRef(function CloudAsteriskIcon(props, ref) {
var color = props.color,
size = props.size,
otherProps = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/jsxs("svg", _objectSpread(_objectSpread({
ref: ref,
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
viewBox: "0 0 24 24",
fill: color
}, otherProps), {}, {
children: [/*#__PURE__*/jsx("path", {
d: "M19.96 10.22C19.57 6.17 16.15 3 12 3C7.85 3 4.46 6.15 4.04 10.22C1.69 10.86 0 13 0 15.5C0 18.53 2.47 21 5.5 21H18.5C21.53 21 24 18.53 24 15.5C24 13 22.32 10.86 19.96 10.22ZM18.5 19H5.5C3.57 19 2 17.43 2 15.5C2 13.73 3.34 12.24 5.11 12.04L6 11.89V11C6 7.69 8.69 5 12 5C15.31 5 18 7.69 18 10.95V11.94L18.89 12.04C20.66 12.24 22 13.72 22 15.5C22 17.43 20.43 19 18.5 19Z"
}), /*#__PURE__*/jsx("path", {
d: "M15.32 11.09C15.04 10.61 14.43 10.45 13.95 10.72L13 11.27V10.17C13 9.62004 12.55 9.17004 12 9.17004C11.45 9.17004 11 9.62004 11 10.17V11.27L10.05 10.72C9.57 10.44 8.96 10.61 8.68 11.09C8.4 11.57 8.57 12.18 9.05 12.46L10 13.01L9.05 13.56C8.57 13.84 8.41 14.45 8.68 14.93C8.87 15.25 9.2 15.43 9.55 15.43C9.72 15.43 9.89 15.39 10.05 15.3L11 14.75V15.85C11 16.4 11.45 16.85 12 16.85C12.55 16.85 13 16.4 13 15.85V14.75L13.95 15.3C14.11 15.39 14.28 15.43 14.45 15.43C14.8 15.43 15.13 15.25 15.32 14.93C15.6 14.45 15.43 13.84 14.95 13.56L14 13.01L14.95 12.46C15.43 12.18 15.59 11.57 15.32 11.09Z"
})]
}));
});
CloudAsteriskIcon.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
CloudAsteriskIcon.defaultProps = {
color: 'currentColor',
size: '24'
};
export { CloudAsteriskIcon as default };
//# sourceMappingURL=cloud-asterisk.js.map