UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

21 lines (20 loc) 469 B
import { QuarkElement } from "quarkc"; export interface Props { avatar?: boolean; avatarshape?: "round" | "square"; title?: boolean; row: number; rowwidths?: string; hide?: boolean; } declare class Skeleton extends QuarkElement { row: number; rowwidths: string; avatar: boolean; avatarshape: string; hide: boolean; title: boolean; getRowWidth: (index: number) => string; render(): any; } export default Skeleton;