@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.74 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 StyledImageRegular = ({
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: "M7.12506 5.625C5.8824 5.625 4.87506 6.63234 4.87506 7.875C4.87506 9.11766 5.8824 10.125 7.12506 10.125C8.36771 10.125 9.37506 9.11766 9.37506 7.875C9.37506 6.63234 8.36725 5.625 7.12506 5.625ZM20.9579 1.5H2.95787C1.34303 1.5 -0.000366211 2.84297 -0.000366211 4.5V19.5C-0.000366211 21.157 1.3426 22.5 2.95745 22.5H20.9574C22.6145 22.5 23.9574 21.157 23.9574 19.5V4.5C23.9579 2.84297 22.6547 1.5 20.9579 1.5ZM21.7079 19.1859L15.2954 10.4719C15.1782 10.2562 14.911 10.125 14.6251 10.125C14.3385 10.125 14.071 10.2548 13.9121 10.4709L8.91521 17.2256L7.17662 15.0646C7.01532 14.8641 6.75784 14.7455 6.48428 14.7455C6.21043 14.7455 5.95318 14.864 5.79147 15.0646L2.25147 19.462C2.25147 19.4606 2.25147 19.4634 2.25147 19.462L2.24959 4.5C2.24959 4.08647 2.58606 3.75 2.99959 3.75H20.9996C21.4131 3.75 21.7496 4.08647 21.7496 4.5V19.1859H21.7079Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledImageRegular);
const ImageRegular = /*#__PURE__*/memo(ForwardRef);
export default ImageRegular;