blowfish/node_modules/@heroicons/react/20/solid/ClockIcon.js

25 lines
729 B
JavaScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
const React = require("react");
function ClockIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
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: "M10 18a8 8 0 100-16 8 8 0 000 16zm.75-13a.75.75 0 00-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 000-1.5h-3.25V5z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(ClockIcon);
module.exports = ForwardRef;