@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
41 lines • 1.31 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CameraIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M21 16.5V9a4 4 0 0 0-4-4H7.5A4.5 4.5 0 0 0 3 9.5v7A4.5 4.5 0 0 0 7.5 21h9a4.5 4.5 0 0 0 4.5-4.5Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M6 9.02V9",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "M15.817 3c.088 0 .173.034.235.095l1.199 1.172.6.586L18 5l.25.25M15.886 3h-2.703a.34.34 0 0 0-.236.095L11.75 4.267l-.6.586L11 5",
opacity: 0.4
}), /*#__PURE__*/React.createElement("ellipse", {
cx: 13.564,
cy: 12.999,
strokeWidth: 1.5,
opacity: 0.4,
rx: 4.716,
ry: 4.851
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M15.719 13.234A1.795 1.795 0 0 0 14.514 11",
opacity: 0.4
}));
const ForwardRef = forwardRef(CameraIcon);
module.exports = ForwardRef;