@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
28 lines (27 loc) • 1.31 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.
*/
import Icon from "./Icon.js";
import { t as iconPropTypes } from "./iconPropTypes-BElKp6Sn.js";
import React from "react";
import { jsx } from "react/jsx-runtime";
//#region virtual:ChangeCircle.js
const ChangeCircle = /* @__PURE__ */ React.forwardRef(function ChangeCircle({ children, size = 16, ...rest }, ref) {
return React.createElement(Icon, {
width: size,
height: size,
ref,
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32 32",
fill: "currentColor",
...rest
}, /* @__PURE__ */ jsx("path", { d: "M16,4c6.6168,0,12,5.3832,12,12s-5.3832,12-12,12-12-5.3832-12-12,5.3832-12,12-12M16,2c-7.732,0-14,6.268-14,14s6.268,14,14,14,14-6.268,14-14S23.732,2,16,2h0ZM24.7158,16.1987l-1.4316-1.3975c-2.4316,2.4897-4.2393,2.0508-6.7241.3706-4.5938-3.1064-7.3677-1.2988-9.2705.6245l1.4209,1.4077c1.479-1.4932,3.2173-2.751,6.729-.376,1.3662.9248,2.8838,1.7207,4.541,1.7207,1.4717,0,3.0527-.627,4.7354-2.3501Z" }), children);
});
if (process.env.NODE_ENV !== "production") ChangeCircle.propTypes = iconPropTypes;
//#endregion
export { ChangeCircle as default };