@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 873 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 IconMusicVideo_Rounded = class IconMusicVideo_Rounded extends LitElement {
render() {
return svgTag('<path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"/><path d="M10.84 16.98c1.26-.17 2.16-1.33 2.16-2.6V9h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v4.51c-.46-.35-1.02-.54-1.66-.51-1.11.07-2.09.92-2.3 2.02a2.512 2.512 0 0 0 2.8 2.96z"/>');
}
};
IconMusicVideo_Rounded.styles = style;
IconMusicVideo_Rounded = __decorate([
customElement('mdui-icon-music-video--rounded')
], IconMusicVideo_Rounded);
export { IconMusicVideo_Rounded };