UNPKG

@nouance/payload-better-fields-plugin

Version:

A Payload plugin that aims to provide improved fields for the admin panel

13 lines (12 loc) 366 B
import 'react-phone-number-input/style.css'; import type { NumberFieldClientProps } from 'payload'; import type { Config } from './index.js'; type Props = { className?: string; config: Config; path: string; placeholder?: string; readOnly?: boolean; } & NumberFieldClientProps; export declare const TelephoneComponent: React.FC<Props>; export {};