@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 806 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 IconAddToDrive_Outlined = class IconAddToDrive_Outlined extends LitElement {
render() {
return svgTag('<path d="M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84A5.986 5.986 0 0 1 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81A5.93 5.93 0 0 1 13 17c0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/>');
}
};
IconAddToDrive_Outlined.styles = style;
IconAddToDrive_Outlined = __decorate([
customElement('mdui-icon-add-to-drive--outlined')
], IconAddToDrive_Outlined);
export { IconAddToDrive_Outlined };