@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
29 lines (27 loc) • 1.4 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:Sap.js
const Sap = React.forwardRef(function Sap({ 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: "M29,8h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157,2H4c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h1.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h4.1843c.2653,0,.5197-.1054.7073-.293l14-14c.6299-.6299.1836-1.707-.7073-1.707ZM20,8c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1ZM8,24c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1ZM14.5857,22h-3.77c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157,2h-1.1843v-12h13.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h3.77s-12,12-12,12Z" }), children);
});
if (process.env.NODE_ENV !== "production") Sap.propTypes = iconPropTypes;
//#endregion
export { Sap as default };