UNPKG

@astraicons/react

Version:

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

20 lines 995 B
const React = require("react"); const { forwardRef } = require("react"); const GuardIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M19.719 11.75c-.05 1.039-.171 2.076-.438 2.88-.531 1.601-1.802 3.053-3.04 4.18a24.7 24.7 0 0 1-3.287 2.486c-.585.371-1.322.37-1.907 0A25 25 0 0 1 7.76 18.81c-1.24-1.127-2.51-2.578-3.041-4.18-.267-.804-.388-1.84-.438-2.88zm-8.543-9.184a1.89 1.89 0 0 1 1.65 0l5.745 2.792c.605.294 1.034.89 1.06 1.595l.03.6c.034.685.082 1.667.087 2.696H4.252c.005-1.029.053-2.012.088-2.698.012-.239.022-.442.028-.598.027-.705.457-1.301 1.062-1.595z" })); const ForwardRef = forwardRef(GuardIcon); module.exports = ForwardRef;