UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.8 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 StyledShieldKeyholeRegular = ({ 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.92297ZM12.0047 2.25141C12.0047 2.25094 12.0094 2.25141 12.0047 2.25141V2.25141ZM11.9578 21.75C7.66406 19.9453 3.00281 14.2453 3.00281 6.00469C3.00281 6.00234 3.00281 6.00703 3.00281 6.00469L11.9466 2.27156C11.9621 2.2668 11.9814 2.2574 12.0063 2.25283L21 5.95781C21 15.4922 15.1125 20.4516 11.9578 21.75ZM9.375 9.75C9.375 10.7953 9.99047 11.6906 10.875 12.113V15.375C10.875 15.9984 11.3813 16.5 12 16.5C12.6187 16.5 13.125 15.9961 13.125 15.375V12.1125C14.0095 11.6902 14.625 10.7948 14.625 9.74953C14.625 8.29969 13.4498 7.12453 12 7.12453C10.5502 7.12453 9.375 8.30156 9.375 9.75Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledShieldKeyholeRegular); const ShieldKeyholeRegular = /*#__PURE__*/memo(ForwardRef); export default ShieldKeyholeRegular;