@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 316 B
TypeScript
import { FC } from 'react';
import { ClassStyleProps } from '../../utils/types';
type ToggleProps = ClassStyleProps & {
dataTestId?: string;
icon?: JSX.Element;
variant?: 'primary';
value?: boolean;
onChange?: (value: boolean) => void;
};
export declare const Toggle: FC<ToggleProps>;
export {};