@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (9 loc) • 534 B
TypeScript
/// <reference types="react" />
import { InferComponentProps } from '../types.js';
import Input from '../input.js';
declare type InputWithSensitivityButtonProps = {
isVisible: boolean;
onToggle: () => void;
} & InferComponentProps<typeof Input>;
declare const StyledInputWithSensitivityButton: import("styled-components").StyledComponent<({ isVisible, onToggle, ...props }: InputWithSensitivityButtonProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
export default StyledInputWithSensitivityButton;