rsuite
Version:
A suite of react components
9 lines (8 loc) • 360 B
TypeScript
import React from 'react';
import { ButtonProps } from '../Button';
/**
* The `InputGroup.Button` component is used to specify an input field with an add-on.
* @see https://rsuitejs.com/components/input/#input-group
*/
declare const InputGroupButton: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<any>>;
export default InputGroupButton;