@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 936 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 IconPhotoSizeSelectSmall_Rounded = class IconPhotoSizeSelectSmall_Rounded extends LitElement {
render() {
return svgTag('<path d="M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-4c0-1.1-.9-2-2-2H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z"/>');
}
};
IconPhotoSizeSelectSmall_Rounded.styles = style;
IconPhotoSizeSelectSmall_Rounded = __decorate([
customElement('mdui-icon-photo-size-select-small--rounded')
], IconPhotoSizeSelectSmall_Rounded);
export { IconPhotoSizeSelectSmall_Rounded };