@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 862 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 IconLaptopChromebook_Rounded = class IconLaptopChromebook_Rounded extends LitElement {
render() {
return svgTag('<path d="M23 18h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1zm-9.5 0h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm6.5-3H4V6c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v9z"/>');
}
};
IconLaptopChromebook_Rounded.styles = style;
IconLaptopChromebook_Rounded = __decorate([
customElement('mdui-icon-laptop-chromebook--rounded')
], IconLaptopChromebook_Rounded);
export { IconLaptopChromebook_Rounded };