UNPKG

origami-zen

Version:

Collection of reusable web components. Built for Origami CMS.

18 lines (17 loc) 476 B
import { LitElement } from '@polymer/lit-element'; import { TemplateResult } from 'lit-html'; export interface props { type?: string; color?: string; size?: string; } export default class Icon extends LitElement implements props { type?: string; color?: string; size?: string; static _boundAttributes: string[]; _render({color, type}: { [key in keyof Icon]: any; }): TemplateResult; private readonly _symbol; }