origami-zen
Version:
Collection of reusable web components. Built for Origami CMS.
13 lines (12 loc) • 350 B
TypeScript
import { LitElement } from '@polymer/lit-element';
import { TemplateResult } from 'lit-html';
export interface props {
color?: string;
size?: string;
}
export default class Loading extends LitElement implements props {
color?: string;
size?: string;
static _boundAttributes: string[];
_render(): TemplateResult;
}