@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
40 lines (36 loc) • 1.84 kB
JavaScript
/**
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
*/
;
var React = require('react');
var Icon_js = require('./Icon.js');
var iconPropTypes = require('./iconPropTypes-BoFFIf2P.js');
require('@carbon/icon-helpers');
require('prop-types');
var _path;
const Point = /*#__PURE__*/React.forwardRef(function Point({
children,
size = 16,
...rest
}, ref) {
return /*#__PURE__*/React.createElement(Icon_js, {
width: size,
height: size,
ref: ref,
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32 32",
fill: "currentColor",
...rest
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
d: "M25.0009,13c-.5165.0019-1.0234.1398-1.4696.4-.5478-.8691-1.5021-1.3974-2.5293-1.4-.5165.0019-1.0234.1398-1.4696.4-.749-1.1788-2.2121-1.6847-3.529-1.22v-5.18h0c0-1.6569-1.3427-3-2.9991-3s-2.9991,1.3431-2.9991,3v11.1l-2.2293-1.52h0c-.5111-.3807-1.1323-.5843-1.7695-.58-1.6564-.0041-3.0024,1.3357-3.0065,2.9926-.002.8025.3175,1.5723.8871,2.1374l7.9976,7.3c1.1323,1.0137,2.5992,1.5729,4.1188,1.57h4.9985c3.8648,0,6.9979-3.134,6.9979-7v-6c0-1.6569-1.3427-3-2.9991-3h.0002ZM26.0006,22c0,2.7614-2.2379,5-4.9985,5h-4.9985c-1.0105.0122-1.991-.3432-2.7592-1l-7.9476-7.3c-.1847-.1863-.2888-.4377-.2899-.7,0-.5523.4476-1,.9997-1,.2163,0,.4268.0702.5998.2l5.3984,3.7V6c0-.5523.4476-1,.9997-1s.9997.4477.9997,1h0v11h1.9994v-3c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v3h1.9994v-2c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v2h1.9994v-1c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v6Z"
})), children);
});
if (process.env.NODE_ENV !== "production") {
Point.propTypes = iconPropTypes.iconPropTypes;
}
module.exports = Point;