13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
import * as React from 'react';
|
|
|
|
import { StandardProps } from '../@types/common';
|
|
|
|
export interface ButtonToolbarProps extends StandardProps {
|
|
/** Primary content */
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
declare const ButtonToolbar: React.ComponentType<ButtonToolbarProps>;
|
|
|
|
export default ButtonToolbar;
|