UNPKG

@astraicons/react

Version:

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

34 lines 2.07 kB
const React = require("react"); const { forwardRef } = require("react"); const RepairIcon = ({ 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("circle", { cx: 7, cy: 7, r: 1.5, opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M6.164 2.668c.202-.89 1.47-.89 1.672 0l.07.314a.857.857 0 0 0 1.294.536l.272-.172c.772-.488 1.67.41 1.182 1.182l-.172.272a.857.857 0 0 0 .536 1.293l.314.071c.89.202.89 1.47 0 1.672l-.314.07a.857.857 0 0 0-.536 1.294l.172.272c.488.772-.41 1.67-1.182 1.182l-.272-.172a.857.857 0 0 0-1.293.536l-.071.314c-.202.89-1.47.89-1.672 0l-.07-.314a.857.857 0 0 0-1.294-.536l-.272.172c-.772.488-1.67-.41-1.182-1.182l.172-.272a.857.857 0 0 0-.536-1.293l-.314-.071c-.89-.202-.89-1.47 0-1.672l.314-.07A.857.857 0 0 0 3.518 4.8l-.172-.272c-.488-.772.41-1.67 1.182-1.182l.272.172a.857.857 0 0 0 1.293-.536z" }), /*#__PURE__*/React.createElement("circle", { cx: 16, cy: 16, r: 2, opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M14.997 10.802c.242-1.07 1.764-1.07 2.006 0l.085.377a1.028 1.028 0 0 0 1.552.643l.327-.207c.926-.585 2.003.492 1.418 1.418l-.207.327c-.379.6-.05 1.396.643 1.552l.377.085c1.07.242 1.07 1.764 0 2.006l-.377.085a1.028 1.028 0 0 0-.643 1.552l.207.327c.585.926-.492 2.003-1.418 1.418l-.327-.207c-.6-.379-1.396-.05-1.552.643l-.085.377c-.242 1.07-1.764 1.07-2.006 0l-.085-.377a1.028 1.028 0 0 0-1.552-.643l-.327.207c-.926.585-2.003-.492-1.418-1.418l.207-.327c.379-.6.05-1.396-.643-1.552l-.377-.085c-1.07-.242-1.07-1.764 0-2.006l.377-.085a1.028 1.028 0 0 0 .643-1.552l-.207-.327c-.585-.926.492-2.003 1.418-1.418l.327.207c.6.379 1.396.05 1.552-.643z" })); const ForwardRef = forwardRef(RepairIcon); module.exports = ForwardRef;