UNPKG

mui-dynamic-field

Version:

A dynamic and customizable input field component for React, built with Material UI & TypeScript.

8 lines (6 loc) 200 B
type regexTypes = "NUMBERS" | "PHONE" | "EMAIL" | "DECIMALS" | "COUNTRY_CODE" | "PASSWORD"; declare const REGEX: Record<regexTypes, { pattern: RegExp; message?: string; }>; export { REGEX };