@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 957 B
JavaScript
import { __decorate } from "tslib";
import { LitElement } from 'lit';
import { customElement } from 'lit/decorators/custom-element.js';
import { style } from '@mdui/shared/icons/shared/style.js';
import { svgTag } from '@mdui/shared/icons/shared/svg-tag.js';
let IconHourglassBottom_Rounded = class IconHourglassBottom_Rounded extends LitElement {
render() {
return svgTag('<path d="M16 22c1.1 0 2-.9 2-2l-.01-3.18c0-.53-.21-1.03-.58-1.41L14 12l3.41-3.43c.37-.37.58-.88.58-1.41L18 4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3.16c0 .53.21 1.04.58 1.42L10 12l-3.41 3.4c-.38.38-.59.89-.59 1.42V20c0 1.1.9 2 2 2h8zM8 7.09V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.09c0 .27-.11.52-.29.71L12 11.5 8.29 7.79c-.18-.18-.29-.44-.29-.7z"/>');
}
};
IconHourglassBottom_Rounded.styles = style;
IconHourglassBottom_Rounded = __decorate([
customElement('mdui-icon-hourglass-bottom--rounded')
], IconHourglassBottom_Rounded);
export { IconHourglassBottom_Rounded };