mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface ButtonToolbarProps {
|
|
role?: string;
|
|
}
|
|
|
|
declare class ButtonToolbar extends BsPrefixComponent<
|
|
'div',
|
|
ButtonToolbarProps
|
|
> {}
|
|
|
|
export default ButtonToolbar;
|