UNPKG

nextuiq

Version:

NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat

15 lines (14 loc) 445 B
import { default as React, ReactNode, FormEvent } from 'react'; export interface FormProps { onSubmit: (event: FormEvent<HTMLFormElement>) => void; children: ReactNode; className?: string; disabled?: boolean; loading?: boolean; autoComplete?: 'on' | 'off'; id?: string; name?: string; noValidate?: boolean; } declare const MemoizedForm: React.NamedExoticComponent<FormProps>; export { MemoizedForm as Form };