UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

23 lines 1.05 kB
import * as React from "react"; function SecuritySafeIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M20.566 6.037c.288 1.74.838 5.93-.051 8.395-.773 2.143-1.509 3.347-3.18 4.865C15.605 20.867 14.347 22 12.033 22s-3.573-1.133-5.3-2.703c-1.673-1.518-2.39-2.729-3.181-4.865-.957-2.583-.441-6.632-.153-8.36.09-.542.369-1.033.802-1.37C6.746 2.723 8.794 1.995 12.034 2c3.223.006 5.33.643 7.787 2.703a2.2 2.2 0 0 1 .745 1.334M13 11a1 1 0 0 1-.305.719.8.8 0 0 1 .055.281v3a.75.75 0 0 1-1.5 0v-3q.001-.15.055-.281A1 1 0 1 1 13 11", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(SecuritySafeIcon); export default ForwardRef;