UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

14 lines (13 loc) 466 B
import { LinkProps } from "../link/types"; type Props = { children?: React.ReactNode; className?: string; href?: LinkProps["href"]; target?: LinkProps["target"]; track?: LinkProps["track"]; onClick?: () => void; title?: string; fullWidth?: boolean; }; export declare const VuiTopicButton: ({ children, className, href, onClick, title, fullWidth, target, track, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export {};