@digithia/ui
Version:
Digithia ui package.
22 lines (21 loc) • 478 B
TypeScript
import { LitElement } from 'lit-element';
export declare enum IconType {
ADD = "ADD",
CLOSE = "CLOSE",
COPY = "COPY",
DELETE = "DELETE",
DOWNLOAD = "DOWNLOAD",
EDIT = "EDIT",
HEART = "HEART",
LETTER = "LETTER",
SHOW = "SHOW",
HIDE = "HIDE",
UPLOAD = "UPLOAD",
SUN = "SUN",
MOON = "MOON"
}
export declare abstract class DigUiIconButton extends LitElement {
animation: boolean;
focused: boolean;
hovered: boolean;
}