formkit-react
Version:
FormKit is a React library for building forms with ease.
13 lines (12 loc) • 348 B
TypeScript
import React from 'react';
interface Props {
name: string;
label?: string;
type?: string;
required?: boolean;
placeholder?: string;
defaultValue?: string;
pattern?: string;
}
export default function FormKitInput({ name, label, type, required, placeholder, defaultValue, pattern, }: Props): React.JSX.Element;
export {};