This commit is contained in:
Cory LaViska
2020-09-04 17:11:25 -04:00
parent a8f040f3f0
commit 5ae49175af
2 changed files with 3 additions and 3 deletions

4
src/components.d.ts vendored
View File

@@ -198,7 +198,7 @@ export namespace Components {
}
interface SlButtonGroup {
/**
* A label to use for the button groups `aria-label` attribute.
* A label to use for the button group's `aria-label` attribute.
*/
"label": string;
}
@@ -1601,7 +1601,7 @@ declare namespace LocalJSX {
}
interface SlButtonGroup {
/**
* A label to use for the button groups `aria-label` attribute.
* A label to use for the button group's `aria-label` attribute.
*/
"label"?: string;
}

View File

@@ -17,7 +17,7 @@ import { Component, Prop, h } from '@stencil/core';
export class ButtonGroup {
buttonGroup: HTMLElement;
/** A label to use for the button groups `aria-label` attribute. */
/** A label to use for the button group's `aria-label` attribute. */
@Prop() label = '';
connectedCallback() {