@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.3 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 StyledCameraSolid = ({
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: "M9.12188 1.5H14.8781C15.8484 1.5 16.7062 2.11969 17.0109 3.03844L17.4984 4.5H21C22.6547 4.5 24 5.84531 24 7.5V19.5C24 21.1547 22.6547 22.5 21 22.5H3C1.34297 22.5 0 21.1547 0 19.5V7.5C0 5.84531 1.34297 4.5 3 4.5H6.50156L6.98906 3.03844C7.29375 2.11969 8.15156 1.5 9.12188 1.5ZM12 18C14.4844 18 16.5 15.9844 16.5 13.5C16.5 10.9734 14.4844 9 12 9C9.47344 9 7.5 10.9734 7.5 13.5C7.5 15.9844 9.47344 18 12 18Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCameraSolid);
const CameraSolid = /*#__PURE__*/memo(ForwardRef);
export default CameraSolid;