@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 699 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 IconLooks_Sharp = class IconLooks_Sharp extends LitElement {
render() {
return svgTag('<path d="M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z"/>');
}
};
IconLooks_Sharp.styles = style;
IconLooks_Sharp = __decorate([
customElement('mdui-icon-looks--sharp')
], IconLooks_Sharp);
export { IconLooks_Sharp };