@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 796 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 IconWatchLater_Rounded = class IconWatchLater_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm3.55 13.8-4.08-2.51c-.3-.18-.48-.5-.48-.85V7.75c.01-.41.35-.75.76-.75s.75.34.75.75v4.45l3.84 2.31c.36.22.48.69.26 1.05-.22.35-.69.46-1.05.24z"/>');
}
};
IconWatchLater_Rounded.styles = style;
IconWatchLater_Rounded = __decorate([
customElement('mdui-icon-watch-later--rounded')
], IconWatchLater_Rounded);
export { IconWatchLater_Rounded };