quarkd
Version:
Mobile UI Components built on Web Components.
20 lines (19 loc) • 434 B
TypeScript
import { QuarkElement } from "quarkc";
export interface Props {
title?: string;
desc?: string;
buttontext?: string;
image?: string;
imagesize?: string;
type?: "global" | "local";
}
declare class QuarkEmpty extends QuarkElement {
title: string;
desc: string;
image: string;
imagesize: string;
buttontext: string;
type: "global" | "local";
render(): any;
}
export default QuarkEmpty;