@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 721 B
TypeScript
import { ButtonProps } from '../Button/Button';
import { FormFieldBaseProps } from './utils/formFieldBase';
interface FormButtonOwnProps extends ButtonProps {
}
declare type SelectedFormFieldCustomProps = Omit<FormFieldBaseProps, 'control' | 'styles' | 'accessibility' | 'design' | 'variables'>;
export interface FormButtonProps extends SelectedFormFieldCustomProps, FormButtonOwnProps {
}
export declare type FormButtonStylesProps = never;
export declare const formButtonClassName = "ui-form__button";
/**
* An FormButton renders a Button wrapped by FormField.
*/
export declare const FormButton: import("@fluentui/react-bindings").ComponentWithAs<"button", FormButtonProps & SelectedFormFieldCustomProps>;
export {};