UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 1.24 kB
export class SvgPrintPreview extends HTMLElement { constructor() { super(); } connectedCallback() { this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M3.5 2.625h-.875V.875A.827.827 0 013.5 0h7a.827.827 0 01.875.875v1.75H10.5V.875h-7zm.875 7h3.974a5.388 5.388 0 011.08-.875H4.376zm0 .875v.875H7.19a6.57 6.57 0 01.478-.875zM8.056 14H3.5a.827.827 0 01-.875-.875V10.5H.875A.827.827 0 010 9.625v-5.25A.827.827 0 01.875 3.5h12.25a.827.827 0 01.875.875v4.07a4.748 4.748 0 00-3.5-.205v-.365h-7v5.25h3.947a6.34 6.34 0 00.61.875zm3.319-8.75a.875.875 0 001.75 0 .875.875 0 00-1.75 0zM12 9a4.425 4.425 0 014 2.994 5.062 5.062 0 01-2.05 2.456c-2.2 1.317-4.85.18-5.95-2.456A4.425 4.425 0 0112 9m1.95 1.557c0 .24.05.48.05.779a2.231 2.231 0 01-2 2.395 2.231 2.231 0 01-2-2.395 2.236 2.236 0 01.15-.839c-.05 0-.05.06-.1.06a3.862 3.862 0 00-1.2 1.437 3.788 3.788 0 001.25 1.378 3.005 3.005 0 003.9 0 4.702 4.702 0 001.15-1.378 3.862 3.862 0 00-1.2-1.437m-1.95.48a.817.817 0 00-.75-.9.913.913 0 000 1.797.856.856 0 00.75-.898"/></svg>`; } } customElements.define('svg-print-preview', SvgPrintPreview); export default SvgPrintPreview;