@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
29 lines (27 loc) • 1.15 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:Rexx.js
const Rexx = React.forwardRef(function Rexx({ 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: "M20.5,16l2.5,5h-2l-1.5-3-1.5,3h-2l2.5-5-2.5-5h2l1.5,3,1.5-3h2l-2.5,5ZM32,11h-2l-1.5,3-1.5-3h-2l2.5,5-2.5,5h2l1.5-3,1.5,3h2l-2.5-5,2.5-5ZM14,12.9761v-1.9761h-6v9.9761h6v-2h-4v-2h2v-2h-2v-2s4,0,4,0ZM6,13v2c0,1-.7,1.8-1.6,2l1.6,4h-2l-1.6-4h-.4v4H0v-10h4c1.1,0,2,.9,2,2ZM4,13h-2v2h2v-2Z" }), children);
});
if (process.env.NODE_ENV !== "production") Rexx.propTypes = iconPropTypes;
//#endregion
export { Rexx as default };