@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 720 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 IconLocalLibrary = class IconLocalLibrary extends LitElement {
render() {
return svgTag('<path d="M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z"/>');
}
};
IconLocalLibrary.styles = style;
IconLocalLibrary = __decorate([
customElement('mdui-icon-local-library')
], IconLocalLibrary);
export { IconLocalLibrary };