UNPKG

zod-form-radix

Version:

Radix UI integration for zod-form-kit

9 lines (8 loc) 439 B
import { type ZodFormProps, type ValidFormSchema } from 'zod-form-kit'; /** * ZodForm component with built-in Radix Themes adapter * * This component automatically registers the radixThemesAdapter and sets it as the default, * providing a seamless experience for users who want to use Radix UI components. */ export declare function ZodForm<T extends ValidFormSchema>(props: ZodFormProps<T>): import("react/jsx-runtime").JSX.Element;