@adventera/vectara-ui
Version:
Vectara's design system, codified as a React component library
15 lines (14 loc) • 534 B
TypeScript
import { ReactNode } from "react";
export type Props = {
children: ReactNode;
href: string;
className?: string;
target?: "_blank";
onClick?: React.MouseEventHandler<HTMLAnchorElement>;
track?: boolean;
title?: string;
id?: string;
role?: string;
};
export declare const VuiLinkInternal: ({ ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export declare const VuiLink: ({ children, href, target, onClick, className, track, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;