@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 580 B
TypeScript
import React, { ComponentProps } from 'react';
import { Stack } from '@mantine/core';
import { useForm } from '@mantine/form';
export declare const SSOPasswordWithConfirm: ({ form, loading, tracking, ...props }: {
form: import("@mantine/form").UseFormReturnType<{
[key: string]: any;
password: string;
confirmPassword: string;
}, any>;
loading?: boolean;
tracking?: {
category: string;
action: string;
};
} & import("@mantine/core").StackProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element;