@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 980 B
JavaScript
import * as React from "react";
function TimerIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M9.5 4A5.5 5.5 0 0 0 4 9.5v7A5.5 5.5 0 0 0 9.5 22h7a5.5 5.5 0 0 0 5.5-5.5v-7A5.5 5.5 0 0 0 16.5 4zm3.617 4.438a.75.75 0 0 1 .75.75v4.151a1 1 0 1 1-1.5 0V9.188a.75.75 0 0 1 .75-.75",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.757 3.356a.82.82 0 0 0 .066-1.092.673.673 0 0 0-1.005-.072L2.243 4.644a.82.82 0 0 0-.066 1.092c.259.322.709.354 1.005.072z"
}));
}
const ForwardRef = React.forwardRef(TimerIcon);
export default ForwardRef;