@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 811 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 IconGifBox_Outlined = class IconGifBox_Outlined extends LitElement {
render() {
return svgTag('<path d="M19 19H5V5h14v14zM5 3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5zm6.5 11h1v-4h-1v4zm2 0h1v-1.5H16v-1h-1.5V11h2v-1h-3v4zm-4-2v1h-1v-2h2c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h-1z"/>');
}
};
IconGifBox_Outlined.styles = style;
IconGifBox_Outlined = __decorate([
customElement('mdui-icon-gif-box--outlined')
], IconGifBox_Outlined);
export { IconGifBox_Outlined };