@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.63 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 StyledFloppyDiskSolid = ({
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: "M23.2018 5.2013L18.7071 0.706655C18.3375 0.338083 17.5232 -0.000488281 16.9339 -0.000488281H3.42857C1.53482 -0.000488281 0 1.53433 0 3.42808V20.5709C0 22.4647 1.53482 23.9995 3.42857 23.9995H20.5714C22.4652 23.9995 24 22.4647 24 20.5709V7.06558C24 6.4763 23.6625 5.66201 23.2018 5.2013ZM12 20.5709C10.1068 20.5709 8.57143 19.0356 8.57143 17.1424C8.57143 15.2492 10.1068 13.7138 12 13.7138C13.8932 13.7138 15.4286 15.2492 15.4286 17.1424C15.4286 19.0356 13.8911 20.5709 12 20.5709ZM17.1429 9.42808C17.1429 9.89951 16.7571 10.2852 16.2857 10.2852H4.28571C3.81214 10.2852 3.42857 9.89951 3.42857 9.42808V4.28523C3.42857 3.8138 3.81214 3.42808 4.28571 3.42808H16.2857C16.7571 3.42808 17.1429 3.8138 17.1429 4.28523V9.42808Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFloppyDiskSolid);
const FloppyDiskSolid = /*#__PURE__*/memo(ForwardRef);
export default FloppyDiskSolid;