@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.23 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 StyledCameraSlashRegular = ({
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.59999ZM8.09999 7.39999L10.1662 9.01999C10.7212 8.74999 11.3437 8.59999 12 8.59999C14.3212 8.59999 16.2 10.4787 16.2 12.8C16.2 13.1 16.17 13.3925 16.11 13.6775L19.8 16.5687V7.99999C19.8 7.66999 19.53 7.39999 19.2 7.39999H15.1012L14.3025 4.99999H9.69749L8.89874 7.39999H8.09999ZM14.3475 12.2975C14.115 11.2137 13.1512 10.4 12 10.4C11.9775 10.4 11.9512 10.4 11.9287 10.4L14.3475 12.2975ZM12 17C9.67874 17 7.79999 15.1212 7.79999 12.8C7.79999 12.4662 7.83749 12.1437 7.87874 11.8325L9.62999 13.19C9.81749 14.33 10.8075 15.2 12 15.2C12.06 15.2 12.12 15.1962 12.1762 15.1925L13.8975 16.5162C13.3275 16.8387 12.6825 17 12 17ZM4.79999 18.2H15.9937L18.2775 20H4.79999C3.47474 20 2.39999 18.9237 2.39999 17.6V7.99999C2.39999 7.83874 2.41612 7.68124 2.44649 7.52749L4.19999 8.90749V17.6C4.19999 17.93 4.46999 18.2 4.79999 18.2Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCameraSlashRegular);
const CameraSlashRegular = /*#__PURE__*/memo(ForwardRef);
export default CameraSlashRegular;