UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.49 kB
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 StyledShieldKeyholeSolid = ({ 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: "M21.8672 3.92297L12.8672 0.1725C12.6375 0.077625 12.2484 0 12.0047 0C11.7563 0 11.3672 0.077625 11.1375 0.172875L2.1375 3.92334C1.29797 4.26937 0.75 5.09062 0.75 5.95781C0.75 18.0562 9.61875 24 11.9578 24C14.3953 24 23.25 17.9906 23.25 5.95781C23.25 5.09062 22.7016 4.26938 21.8672 3.92297ZM13.125 12.1125V15.375C13.125 15.9961 12.6211 16.5 12 16.5C11.3789 16.5 10.875 15.9961 10.875 15.375V12.1125C9.98906 11.6906 9.375 10.7953 9.375 9.75C9.375 8.30016 10.5502 7.125 12 7.125C13.4498 7.125 14.625 8.30016 14.625 9.75C14.625 10.7953 14.0109 11.6906 13.125 12.1125Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledShieldKeyholeSolid); const ShieldKeyholeSolid = /*#__PURE__*/memo(ForwardRef); export default ShieldKeyholeSolid;