UNPKG

@slashid/react-primitives

Version:

Primitive components for the /id React SDK

13 lines 400 B
import { ReactNode } from "react"; import * as styles from "./link-button.css"; type Props = { children: ReactNode; onClick: (event: React.MouseEvent<HTMLButtonElement>) => void; className?: string; type?: "button" | "submit"; variant?: styles.Variants; testId?: string; }; export declare const LinkButton: React.FC<Props>; export {}; //# sourceMappingURL=link-button.d.ts.map