UNPKG

@slashid/react

Version:

React SDK for the /id platform

15 lines 574 B
import { ComponentProps } from "react"; import { Button } from "@slashid/react-primitives"; type Props = { variant: ComponentProps<typeof Button>["variant"]; label: string; hasError: boolean; isActive: boolean; loading: boolean; onClick: () => void; testId?: ComponentProps<typeof Button>["testId"]; className?: string; }; export declare const ActionButton: ({ testId, variant, label, hasError, isActive, loading, onClick, className, }: Props) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=action-button.d.ts.map