@harvest-profit/npk
Version:
NPK UI Design System
13 lines • 468 B
TypeScript
import React from 'react';
interface InputSegmentProps {
[key: string]: any;
onChange?: (value: string) => void;
onChangeFullValue?: (value: Date) => void;
setIsFocused?: (isFocused: boolean) => void;
value: string;
segment: 'year' | 'month' | 'monthName' | 'day' | 'hour' | 'minute' | 'TOD';
dateValue: Date;
}
declare const InputSegment: React.FC<InputSegmentProps>;
export default InputSegment;
//# sourceMappingURL=InputSegment.d.ts.map