@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
28 lines (27 loc) • 1.24 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-BElKp6Sn.js";
import React from "react";
import { jsx } from "react/jsx-runtime";
//#region virtual:FileChange.js
const FileChange = /* @__PURE__ */ React.forwardRef(function FileChange({ 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.81,24.32c-1.15,1.24-2.25,1.68-3.26,1.68-1.16,0-2.21-.58-3.09-1.22-1.9901-1.41-2.86-.77-3.73.16l-1.46-1.37c1.19-1.27,3.15-2.7,6.35-.41,1.47,1.05,2.36,1.27,3.72-.2l1.47,1.36ZM8,28h16v2H8c-1.1,0-2-.9-2-2V4c0-1.1.9-2,2-2h10c.27,0,.52.11.71.29l7,7c.18.19.29.44.29.71v10h-2v-8h-6c-1.1,0-2-.9-2-2v-6h-8v24ZM18,4.41v5.59h5.59l-5.59-5.59Z" }), children);
});
if (process.env.NODE_ENV !== "production") FileChange.propTypes = iconPropTypes;
//#endregion
export { FileChange as default };