@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
26 lines • 1.07 kB
JavaScript
import * as React from "react";
function Hourglass01Icon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M7.271 21h9.958c.564 0 1.021-.46 1.021-1.029v-2.747c0-.22-.07-.434-.2-.61l-2.944-4.026a1.03 1.03 0 0 1-.02-1.19l2.73-4.021c.117-.171.179-.374.179-.58V4.028c0-.568-.458-1.029-1.022-1.029H7.271c-.564 0-1.021.46-1.021 1.029v2.747c0 .22.07.434.2.61l2.928 4.004c.266.363.266.857 0 1.22L6.45 16.614c-.13.176-.199.39-.199.61v2.747c0 .569.457 1.029 1.021 1.029"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Hourglass01Icon);
export default ForwardRef;