/// export interface InputIconProps { icon: string; fill?: string; } declare function InputIcon({ icon, fill, ...others }: InputIconProps): JSX.Element; export default InputIcon;