react-semantic-ui-datepickers
Version:
Datepickers built with Semantic UI for React and Dayzed
13 lines (12 loc) • 381 B
TypeScript
/// <reference types="react" />
import { FormInputProps } from 'semantic-ui-react';
declare type InputProps = FormInputProps & {
isClearIconVisible: boolean;
};
declare const CustomInput: {
({ icon, isClearIconVisible, onClear, onClick, value, ...rest }: InputProps): JSX.Element;
defaultProps: {
icon: string;
};
};
export default CustomInput;