@passflow/passflow-react-sdk
Version:
Passflow React UI Kit
11 lines • 330 B
TypeScript
import { MouseEvent, FC, PropsWithChildren } from 'react';
type LinkProps = PropsWithChildren<{
to: string;
search?: string;
replace?: boolean;
className?: string;
onClick?: (e: MouseEvent<HTMLAnchorElement>) => void;
}>;
export declare const Link: FC<LinkProps>;
export {};
//# sourceMappingURL=index.d.ts.map