@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
44 lines (42 loc) • 1.79 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:CarbonUiBuilder.js
const CarbonUiBuilder = React.forwardRef(function CarbonUiBuilder({ 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: "M24 28H30V30H24z" }), /* @__PURE__ */ jsx("circle", {
cx: "21",
cy: "29",
r: "1"
}), /* @__PURE__ */ jsx("circle", {
cx: "29",
cy: "25",
r: "1"
}), /* @__PURE__ */ jsx("path", {
d: "M20 24H26V26H20z",
transform: "matrix(-1 0 0 -1 46 50)"
}), /* @__PURE__ */ jsx("path", { d: "M24 20H30V22H24z" }), /* @__PURE__ */ jsx("circle", {
cx: "21",
cy: "21",
r: "1"
}), /* @__PURE__ */ jsx("path", { d: "M21.4927,14.1299l-8.5-4.8149c-.3057-.1729-.6797-.1729-.9854,0L3.5073,14.1299c-.3135,.1777-.5073,.5098-.5073,.8701v10c0,.3604,.1938,.6924,.5073,.8701l8.5,4.8149,.9854-1.7402-7.9927-4.5278V15.583l7.5-4.2485,7.5,4.2485v2.417h2v-3c0-.3604-.1938-.6924-.5073-.8701Z" }), /* @__PURE__ */ jsx("path", { d: "M25,15h2V7c0-.3604-.1938-.6924-.5073-.8701L17.9927,1.3149c-.3057-.1729-.6797-.1729-.9854,0L8.5074,6.1299l.9854,1.7402L17.5,3.3345l7.5,4.2485v7.417Z" }), children);
});
if (process.env.NODE_ENV !== "production") CarbonUiBuilder.propTypes = iconPropTypes;
//#endregion
export { CarbonUiBuilder as default };