@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 766 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 IconPinEnd_Outlined = class IconPinEnd_Outlined extends LitElement {
render() {
return svgTag('<path d="M20 12V6H4v12h10v2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6h-2zm-1 2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-4.34-6H9v5.66h2v-2.24l2.95 2.95 1.41-1.41L12.41 10h2.24V8z"/>');
}
};
IconPinEnd_Outlined.styles = style;
IconPinEnd_Outlined = __decorate([
customElement('mdui-icon-pin-end--outlined')
], IconPinEnd_Outlined);
export { IconPinEnd_Outlined };