UNPKG

lynx-form-x

Version:

LynxFormX is a lightweight and intuitive form library built for the Lynx framework for mobile development. It streamlines form management by automatically binding fields, handling validation, and providing easy-to-use hooks for custom field manipulation—a

9 lines (8 loc) • 274 B
import { type FC } from '@lynx-js/react'; import type { ViewProps } from '@lynx-js/types'; type SubmitButtonProps = { disableOnSubmit?: boolean; disabledClassName?: string; } & Partial<ViewProps>; export declare const SubmitButton: FC<SubmitButtonProps>; export {};