@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
14 lines (13 loc) • 487 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { FormFeedbackAlign, FormFeedbackStatus } from "./form.shared";
export interface FormFeedbackProps extends ViewProps {
align?: FormFeedbackAlign;
status?: FormFeedbackStatus;
children?: ReactNode;
}
declare function FormFeedback(props: FormFeedbackProps): JSX.Element;
declare namespace FormFeedback {
var displayName: string;
}
export default FormFeedback;