@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 796 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 IconOpenInFull_Rounded = class IconOpenInFull_Rounded extends LitElement {
render() {
return svgTag('<path d="M21 8.59V4c0-.55-.45-1-1-1h-4.59c-.89 0-1.34 1.08-.71 1.71l1.59 1.59-10 10-1.59-1.59c-.62-.63-1.7-.19-1.7.7V20c0 .55.45 1 1 1h4.59c.89 0 1.34-1.08.71-1.71L7.71 17.7l10-10 1.59 1.59c.62.63 1.7.19 1.7-.7z"/>');
}
};
IconOpenInFull_Rounded.styles = style;
IconOpenInFull_Rounded = __decorate([
customElement('mdui-icon-open-in-full--rounded')
], IconOpenInFull_Rounded);
export { IconOpenInFull_Rounded };