@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 742 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 IconFormatIndentDecrease_TwoTone = class IconFormatIndentDecrease_TwoTone extends LitElement {
render() {
return svgTag('<path d="M7 16V8l-4 4zm4-9h10v2H11zm0 4h10v2H11zm0 4h10v2H11zm-8 4h18v2H3zM3 3h18v2H3z"/>');
}
};
IconFormatIndentDecrease_TwoTone.styles = style;
IconFormatIndentDecrease_TwoTone = __decorate([
customElement('mdui-icon-format-indent-decrease--two-tone')
], IconFormatIndentDecrease_TwoTone);
export { IconFormatIndentDecrease_TwoTone };