UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

14 lines (13 loc) 292 B
import { QuarkElement } from "quarkc"; export interface Props { value: number; color?: string; showtext?: boolean; } declare class QuarkProgress extends QuarkElement { color: string; value: string; showtext: boolean; render(): any; } export default QuarkProgress;