@nouance/payload-better-fields-plugin
Version:
A Payload plugin that aims to provide improved fields for the admin panel
13 lines (12 loc) • 341 B
TypeScript
import type { NumberFieldClientProps } from 'payload';
import type { Config } from './index.js';
import './range.scss';
type Props = {
className?: string;
config?: Config;
path: string;
placeholder?: string;
readOnly?: boolean;
} & NumberFieldClientProps;
export declare const RangeComponent: React.FC<Props>;
export {};