UNPKG

rsuite

Version:

A suite of react components

10 lines (9 loc) 409 B
import React from 'react'; import { ButtonProps } from '../Button'; export type InputGroupButtonProps = ButtonProps; /** * 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;