quarkd
Version:
Mobile UI Components built on Web Components.
25 lines (24 loc) • 549 B
TypeScript
import { QuarkElement } from "quarkc";
import "@quarkd/icons/lib/arrow-right";
export interface Props {
title: string;
desc?: string;
to?: string;
islink?: boolean;
icon?: string;
}
declare class QuarkCell extends QuarkElement {
title: string;
icon: string;
desc: string;
to: string;
islink: boolean;
handleNavigation: () => void;
renderIcon: () => any;
render(): any;
}
export default QuarkCell;
declare class QuarkCellGroup extends QuarkElement {
render(): any;
}
export { QuarkCellGroup };