@localazy/strapi-plugin
Version:
The official Strapi Plugin by Localazy.
13 lines (12 loc) • 422 B
TypeScript
import PropTypes from 'prop-types';
import { LocalazyIdentity } from '../../user/model/localazy-identity';
interface LoginButtonProps {
onResultFetched: (result: LocalazyIdentity) => void;
}
declare const LoginButton: {
(props: LoginButtonProps): import("react/jsx-runtime").JSX.Element;
propTypes: {
onResultFetched: PropTypes.Validator<(...args: any[]) => any>;
};
};
export default LoginButton;