@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 669 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 IconHexagon_Outlined = class IconHexagon_Outlined extends LitElement {
render() {
return svgTag('<path d="M17.2 3H6.8l-5.2 9 5.2 9h10.4l5.2-9-5.2-9zm-1.15 16h-8.1l-4.04-7 4.04-7h8.09l4.04 7-4.03 7z"/>');
}
};
IconHexagon_Outlined.styles = style;
IconHexagon_Outlined = __decorate([
customElement('mdui-icon-hexagon--outlined')
], IconHexagon_Outlined);
export { IconHexagon_Outlined };