@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 863 B
JavaScript
const React = require("react");
function TimerIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("rect", {
width: 18,
height: 18,
x: 4,
y: 4.001,
rx: 5.5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M2.262 4.376 4.974 2M13.117 9.188v4.615m1.083.297a1.1 1.1 0 1 1-2.2 0 1.1 1.1 0 0 1 2.2 0Z",
opacity: 0.4
}));
}
const ForwardRef = React.forwardRef(TimerIcon);
module.exports = ForwardRef;