@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
29 lines (27 loc) • 1.42 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:TrafficFlow.js
const TrafficFlow = React.forwardRef(function TrafficFlow({ 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: "M26 8 22 4 18 8 19.41 9.42 21 7.83 21 18 23 18 23 7.83 24.58 9.41 26 8z" }), /* @__PURE__ */ jsx("path", { d: "M12.59 22.58 11 24.17 11 14 9 14 9 24.17 7.42 22.59 6 24 10 28 14 24 12.59 22.58z" }), /* @__PURE__ */ jsx("path", { d: "M2 2H4V30H2z" }), /* @__PURE__ */ jsx("path", { d: "M28 2H30V30H28z" }), /* @__PURE__ */ jsx("path", { d: "M15 2H17V6H15z" }), /* @__PURE__ */ jsx("path", { d: "M15 10H17V14H15z" }), /* @__PURE__ */ jsx("path", { d: "M15 18H17V22H15z" }), /* @__PURE__ */ jsx("path", { d: "M15 26H17V30H15z" }), children);
});
if (process.env.NODE_ENV !== "production") TrafficFlow.propTypes = iconPropTypes;
//#endregion
export { TrafficFlow as default };