@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 875 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 IconBreakfastDining_Rounded = class IconBreakfastDining_Rounded extends LitElement {
render() {
return svgTag('<path d="M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm-2.29 10.7-3 3c-.39.39-1.02.39-1.42 0l-3-3a.996.996 0 0 1 0-1.41l3-3a.996.996 0 0 1 1.41 0l3 3c.4.39.4 1.02.01 1.41z"/>');
}
};
IconBreakfastDining_Rounded.styles = style;
IconBreakfastDining_Rounded = __decorate([
customElement('mdui-icon-breakfast-dining--rounded')
], IconBreakfastDining_Rounded);
export { IconBreakfastDining_Rounded };