UNPKG

@appello/web-ui

Version:

Web ui library for a better development experience

10 lines (9 loc) 267 B
import React from 'react'; export interface TextLinkProps { to?: string | VoidFunction; external?: boolean; children: React.ReactNode; className?: string; onNavigate: (to: string) => void; } export declare const TextLink: React.FC<TextLinkProps>;