styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 998 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var HourglassBottom = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M5 2H4v2h1v1a7.014 7.014 0 003.433 6.02c.355.21.567.547.567.901v.158c0 .354-.212.691-.566.9A7.016 7.016 0 005 19v1H4v2h16v-2h-1v-1a7.016 7.016 0 00-3.434-6.021c-.354-.208-.566-.545-.566-.9v-.158c0-.354.212-.69.566-.9A7.016 7.016 0 0019 5V4h1V2H5zm12 3a5.01 5.01 0 01-2.45 4.299A3.107 3.107 0 0013.166 11h-2.332a3.114 3.114 0 00-1.385-1.702A5.008 5.008 0 017 5V4h10v1z", key: "k0" })));
});
HourglassBottom.displayName = 'HourglassBottom';
export var HourglassBottomDimensions = { height: 24, width: 24 };