@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 926 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 IconPunchClock_Outlined = class IconPunchClock_Outlined extends LitElement {
render() {
return svgTag('<path d="M19 6h-1V1H6v5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 3h8v3H8V3zm11 17H5V8h14v12z"/><path d="M12 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"/><path d="M12.5 11.5h-1v2.71l1.64 1.64.71-.71-1.35-1.35z"/>');
}
};
IconPunchClock_Outlined.styles = style;
IconPunchClock_Outlined = __decorate([
customElement('mdui-icon-punch-clock--outlined')
], IconPunchClock_Outlined);
export { IconPunchClock_Outlined };