@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.54 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Hourglass({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Hourglass",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M4 2a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2v1.571a5 5 0 0 1-1.552 3.621l-4.033 3.842 4.202 4.402A5 5 0 0 1 19 19.888V21a1 1 0 1 1 0 2h-5.88c-.229.006-.471.004-.723.002a51.24 51.24 0 0 0-.794 0c-.252.002-.494.004-.722-.002H5a1 1 0 1 1 0-2v-1.112a5 5 0 0 1 1.383-3.452l4.202-4.402-4.033-3.842A5 5 0 0 1 5 4.572V3a1 1 0 0 1-1-1Zm10.924 19C14.458 19.33 12 17 12 17s-2.458 2.33-2.924 4H7v-1.112a3 3 0 0 1 .83-2.071L12 13.448l4.17 4.369a3 3 0 0 1 .83 2.071V21h-2.076ZM7 3h10v1.571a3 3 0 0 1-.931 2.173l-4.035 3.843-.034-.035-.034.035-4.035-3.843A3 3 0 0 1 7 4.57V3Z",
shapeRendering: "geometricPrecision"
}));
}
Hourglass.displayName = 'Hourglass';
export default createBaseComponent(Hourglass);