UNPKG

@astraicons/react

Version:

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

27 lines 1.39 kB
const React = require("react"); const { forwardRef } = require("react"); const VerficationIcon = ({ 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", strokeLinejoin: "round", d: "m9.8 12 1.665 2 3.336-4", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M10.86 3.538a1.477 1.477 0 0 1 2.28 0l1.073 1.304c.313.38.794.579 1.284.531l1.68-.163a1.477 1.477 0 0 1 1.613 1.613l-.163 1.68c-.048.49.151.971.531 1.284l1.303 1.072c.719.591.719 1.69 0 2.281l-1.303 1.073c-.38.313-.579.794-.532 1.284l.164 1.68a1.477 1.477 0 0 1-1.613 1.613l-1.68-.163c-.49-.048-.971.151-1.284.531l-1.072 1.303c-.591.719-1.69.719-2.281 0l-1.073-1.303a1.48 1.48 0 0 0-1.284-.532l-1.68.164a1.477 1.477 0 0 1-1.613-1.613l.163-1.68c.048-.49-.151-.971-.531-1.284l-1.304-1.072a1.477 1.477 0 0 1 0-2.281l1.304-1.073c.38-.313.579-.794.531-1.284l-.163-1.68A1.477 1.477 0 0 1 6.823 5.21l1.68.163c.49.048.971-.151 1.284-.531z" })); const ForwardRef = forwardRef(VerficationIcon); module.exports = ForwardRef;