@umbraco-ui/uui-button-group
Version:
An element to group buttons.
16 lines (15 loc) • 512 B
TypeScript
import { LitElement } from 'lit';
/**
* Place <uui-button> elements in the slot. They will be nicely displayed.
* @element uui-button-group
* @slot - The slot for buttons. It supports `<uui-button>` elements out of the box.
*/
export declare class UUIButtonGroupElement extends LitElement {
render(): import("lit-html").TemplateResult<1>;
static styles: import("lit").CSSResult[];
}
declare global {
interface HTMLElementTagNameMap {
'uui-button-group': UUIButtonGroupElement;
}
}