@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.92 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledFileExcelRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M20.1234 4.37719L16.6252 0.878438C16.0594 0.316031 15.2953 0 14.5031 0H6C4.34297 0 3 1.34297 3 3L3.0003 21C3.0003 22.6566 4.34327 24 6.0003 24H18C19.65 24 21 22.65 21 21V6.49688C21 5.70469 20.6859 4.94062 20.1234 4.37719ZM18.75 21C18.75 21.4142 18.4142 21.75 18 21.75H6.00094C5.58666 21.75 5.25094 21.4142 5.25094 21L5.25 3.00609C5.25 2.59191 5.58581 2.25609 6 2.25609H13.5V6C13.5 6.82828 14.1717 7.5 15 7.5H18.7078V21H18.75ZM13.7391 10.9359L12 13.1672L10.2609 10.9359C9.88125 10.4438 9.17813 10.3547 8.68594 10.7391C8.19375 11.1188 8.10469 11.8266 8.48906 12.3187L10.575 15L8.48766 17.6836C8.10534 18.1744 8.19469 18.8817 8.68397 19.2628C8.89219 19.4203 9.13125 19.5 9.33281 19.5C9.66825 19.5 10.0008 19.3506 10.222 19.0664L12 16.8328L13.7372 19.0664C13.9594 19.35 14.2922 19.5 14.625 19.5C14.8652 19.5 15.1083 19.4224 15.315 19.2627C15.8044 18.8819 15.8934 18.1743 15.5113 17.6835L13.425 15L15.5123 12.3164C15.8947 11.8256 15.8053 11.1183 15.316 10.7372C14.8219 10.3547 14.1188 10.4438 13.7391 10.9359Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFileExcelRegular);
const FileExcelRegular = /*#__PURE__*/memo(ForwardRef);
export default FileExcelRegular;