@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 989 B
JavaScript
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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M15.5 3.25c3.41 0 6.25 2.622 6.25 5.944v6.611c0 3.323-2.84 5.945-6.25 5.945h-7c-3.41 0-6.25-2.622-6.25-5.944V9.194c0-3.323 2.84-5.944 6.25-5.944zm-3.5 5a.75.75 0 0 0-.75.75v3.451A1.499 1.499 0 0 0 12 15.25a1.5 1.5 0 0 0 .75-2.799V9a.75.75 0 0 0-.75-.75",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.48 1.435a.75.75 0 0 1 .988 1.13L2.756 4.94a.75.75 0 0 1-.988-1.129z"
}));
const ForwardRef = forwardRef(TimerIcon);
module.exports = ForwardRef;