UNPKG

@astraicons/react

Version:

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

31 lines 1.04 kB
const React = require("react"); const { forwardRef } = require("react"); const TimerIcon = ({ 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: "M3 9.194C3 6.326 5.462 4 8.5 4h7C18.538 4 21 6.326 21 9.194v6.612C21 18.674 18.538 21 15.5 21h-7C5.462 21 3 18.674 3 15.806z" }), /*#__PURE__*/React.createElement("path", { fill: "#4e5964", d: "M12 8.25a.75.75 0 0 1 .75.75v3.451a1.499 1.499 0 1 1-1.5 0V9a.75.75 0 0 1 .75-.75", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M2.262 4.376 4.974 2", opacity: 0.4 })); const ForwardRef = forwardRef(TimerIcon); module.exports = ForwardRef;