UNPKG

easy-form-handler

Version:

A powerful, lightweight React form handling library with built-in validation, customizable styling, and intuitive components.

10 lines (9 loc) 225 B
import React from 'react'; interface HeadingProps { value?: string; className?: string; children?: React.ReactNode; [key: string]: any; } declare const Heading: React.FC<HeadingProps>; export default Heading;