| 9 | import { alignPropType } from './types'; |
| 10 | |
| 11 | export interface SplitButtonProps |
| 12 | extends Omit<DropdownProps, 'title'>, |
| 13 | PropsFromToggle, |
| 14 | BsPrefixProps { |
| 15 | menuRole?: string; |
| 16 | renderMenuOnMount?: boolean; |
| 17 | rootCloseEvent?: 'click' | 'mousedown'; |
| 18 | target?: string; |
| 19 | title: React.ReactNode; |
| 20 | toggleLabel?: string; |
| 21 | type?: ButtonType; |
| 22 | flip?: boolean; |
| 23 | } |
| 24 | |
| 25 | const propTypes = { |
| 26 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…