UNPKG

@astraicons/react

Version:

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

27 lines 993 B
import * as React from "react"; import { forwardRef } from "react"; const GuardIcon = ({ 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", { strokeLinecap: "round", d: "M18.57 14.394c-.94 2.831-4.612 5.378-6.018 6.27-.34.215-.764.215-1.104 0-1.406-.892-5.079-3.438-6.018-6.27-.68-2.052-.362-6.09-.312-7.412.015-.407.264-.766.64-.949l5.745-2.791c.314-.153.68-.153.994 0l5.746 2.791c.376.183.624.541.64.949.05 1.322.367 5.36-.314 7.412Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M19 11H5", opacity: 0.4 })); const ForwardRef = forwardRef(GuardIcon); export default ForwardRef;