@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
29 lines (27 loc) • 1.28 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-B1cP964Y.js";
import React from "react";
import { jsx } from "react/jsx-runtime";
//#region virtual:ForLoop.js
const ForLoop = React.forwardRef(function ForLoop({ 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: "M23,23h7v7h-2v-3.3516c-1.6448,2.0405-4.1526,3.3516-7.0002,3.3516h-9.9998c-5,0-9-4-9-9v-8h2v8c0,3.8999,3.1001,7,7,7h10c2.4033,0,4.4941-1.1841,5.7517-3h-3.7517v-2ZM21,2h-9.9998c-2.8477,0-5.3555,1.311-7.0002,3.3516v-3.3516h-2v7h7v-2h-3.7517c1.2576-1.8159,3.3484-3,5.7517-3h10c3.8999,0,7,3.1001,7,7v8h2v-8c0-5-4-9-9-9ZM20.7212,12.0117v-2.0117h-7.7212v12h2.27v-5.0732h4.7461v-2.0117h-4.7461v-2.9033h5.4512Z" }), children);
});
if (process.env.NODE_ENV !== "production") ForLoop.propTypes = iconPropTypes;
//#endregion
export { ForLoop as default };