mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
12 lines
328 B
TypeScript
12 lines
328 B
TypeScript
|
import * as React from 'react';
|
||
|
import { DropdownProps } from './Dropdown';
|
||
|
|
||
|
export interface InputGroupButtonDropdownProps extends DropdownProps {
|
||
|
addonType: 'prepend' | 'append';
|
||
|
}
|
||
|
|
||
|
declare class InputGroupButtonDropdown extends React.Component<
|
||
|
InputGroupButtonDropdownProps
|
||
|
> {}
|
||
|
export default InputGroupButtonDropdown;
|