@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 735 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 IconSouth_Rounded = class IconSouth_Rounded extends LitElement {
render() {
return svgTag('<path d="M18.3 14.29a.996.996 0 0 0-1.41 0L13 18.17V3c0-.55-.45-1-1-1s-1 .45-1 1v15.18L7.12 14.3a.996.996 0 1 0-1.41 1.41l5.59 5.59c.39.39 1.02.39 1.41 0l5.59-5.59c.38-.39.38-1.03 0-1.42z"/>');
}
};
IconSouth_Rounded.styles = style;
IconSouth_Rounded = __decorate([
customElement('mdui-icon-south--rounded')
], IconSouth_Rounded);
export { IconSouth_Rounded };