UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 785 B
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 IconPhoneAndroid_Rounded = class IconPhoneAndroid_Rounded extends LitElement { render() { return svgTag('<path d="M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2.5 20h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm3.5-3H7V4h10v14z"/>'); } }; IconPhoneAndroid_Rounded.styles = style; IconPhoneAndroid_Rounded = __decorate([ customElement('mdui-icon-phone-android--rounded') ], IconPhoneAndroid_Rounded); export { IconPhoneAndroid_Rounded };