geostyler
Version:
Framework for styling geodata
14 lines (13 loc) • 468 B
TypeScript
import { default as React } from 'react';
export interface NameFieldProps {
/** The placeholder text of the input field if no value was specified */
placeholder?: string;
/** The value to display in input field */
value?: string | undefined;
/** The callback method that is triggered when the state changes */
onChange?: (newValue: string) => void;
}
/**
* Input field for a name.
*/
export declare const NameField: React.FC<NameFieldProps>;