UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

23 lines (22 loc) 505 B
import { QuarkElement } from "quarkc"; export interface Props { type?: "primary" | "success" | "danger" | "warning"; size?: "small" | "large"; round?: boolean; plain?: boolean; light?: boolean; color?: string; textcolor?: string; } declare class QuarkTag extends QuarkElement { type: string; color: string; textcolor: string; size: string; plain: boolean; round: boolean; light: boolean; wrap: any; render(): any; } export default QuarkTag;