14 lines
509 B
TypeScript
14 lines
509 B
TypeScript
|
import Component from '../../components/button-group/button-group.component.js';
|
||
|
/**
|
||
|
* @summary Button groups can be used to group related buttons into sections.
|
||
|
* @documentation https://shoelace.style/components/button-group
|
||
|
* @status stable
|
||
|
* @since 2.0
|
||
|
*
|
||
|
* @slot - One or more `<sl-button>` elements to display in the button group.
|
||
|
*
|
||
|
* @csspart base - The component's base wrapper.
|
||
|
*/
|
||
|
declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
|
||
|
export default reactWrapper;
|