zextra
Version:
zikojs extra components
14 lines (11 loc) • 341 B
TypeScript
import { UIElement } from "ziko/dom";
declare class UILink extends UIElement {}
export declare const Link: (props?: {
href?: string;
target?: '_blank' | '_parent' | '_self' | '_top' ;
color?: string;
underline?: boolean;
inline?: boolean;
icon?: UIElement;
text?: string | UIElement | HTMLElement;
}) => UILink;