@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 903 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 IconFilterFrames_Rounded = class IconFilterFrames_Rounded extends LitElement {
render() {
return svgTag('<path d="M20 4h-4L12.71.71a.996.996 0 0 0-1.41 0L8 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 16H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.52l3.52-3.5L15.52 6H19c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM17 8H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z"/>');
}
};
IconFilterFrames_Rounded.styles = style;
IconFilterFrames_Rounded = __decorate([
customElement('mdui-icon-filter-frames--rounded')
], IconFilterFrames_Rounded);
export { IconFilterFrames_Rounded };