@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.83 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 StyledCameraSlashSolid = ({
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: "M5.80499 5.59999H7.60124L7.99124 4.43074C8.23499 3.69574 8.92124 3.19999 9.69749 3.19999H14.3025C15.0787 3.19999 15.765 3.69574 16.0087 4.43074L16.3987 5.59999H19.2C20.5237 5.59999 21.6 6.67624 21.6 7.99999V17.6C21.6 17.7237 21.5925 17.8437 21.5737 17.96L23.655 19.5912C24.045 19.8987 24.1162 20.465 23.8087 20.855C23.5012 21.245 22.935 21.3162 22.545 21.0087L0.344843 3.60837C-0.0463567 3.30162 -0.114944 2.73612 0.191693 2.34484C0.498368 1.95364 1.06387 1.88506 1.45537 2.19169L5.80499 5.59999ZM10.7025 9.43999L15.57 13.2575C15.5887 13.1075 15.6 12.9537 15.6 12.8C15.6 10.7787 13.9875 9.19999 12 9.19999C11.5425 9.19999 11.1075 9.28624 10.7025 9.43999ZM12 16.4C12.4837 16.4 12.945 16.3062 13.365 16.13L18.2775 20H4.79999C3.47474 20 2.39999 18.9237 2.39999 17.6V7.99999C2.39999 7.83874 2.41612 7.68124 2.44649 7.52749L8.44124 12.2525C8.41499 12.4287 8.39999 12.6125 8.39999 12.8C8.39999 14.7875 9.97874 16.4 12 16.4Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCameraSlashSolid);
const CameraSlashSolid = /*#__PURE__*/memo(ForwardRef);
export default CameraSlashSolid;