@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 722 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 IconKey_Outlined = class IconKey_Outlined extends LitElement {
render() {
return svgTag('<path d="M21 10h-8.35A5.99 5.99 0 0 0 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 0 0 5.65-4H13l2 2 2-2 2 2 4-4.04L21 10zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"/>');
}
};
IconKey_Outlined.styles = style;
IconKey_Outlined = __decorate([
customElement('mdui-icon-key--outlined')
], IconKey_Outlined);
export { IconKey_Outlined };