@preamp/datepicker
Version:
VideoAmp's Component library
21 lines (20 loc) • 665 B
TypeScript
import * as React from 'react';
interface InputProps {
inputlabel: string;
inputRef: React.RefObject<{}>;
/** Unique identifier used for targeting the component */
dataUI?: string;
/** ID or key for the element. */
id?: string;
/** Optional style to apply - inline styles should NOT be used unless absolutely necessary. */
style?: React.CSSProperties;
/** Custom class name. */
className?: string;
}
export declare class CustomDatePickerInput extends React.PureComponent<InputProps> {
private inputRef;
constructor(props: InputProps);
onFocusInput: () => void;
render(): React.ReactElement<any>;
}
export {};