Skip to content

Commit

Permalink
fix(ui): rectify merge conflit (#970)
Browse files Browse the repository at this point in the history
  • Loading branch information
angsherpa456 committed Mar 13, 2024
1 parent 007fd68 commit 425be00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ui-library/src/components/button-icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type BlrButtonIconEventHandlers = {
* @fires blrBlur Button lost focus
* @fires blrClick Button was clicked
*/
export class BlrIconButton extends kebabCaseAttributes(LitElement) {
export class BlrButtonIcon extends kebabCaseAttributes(LitElement) {
static styles = [styleCustom];

@property() arialabel!: string;
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-library/src/components/button-text/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export type BlrButtonTextEventHandlers = {
* @fires blrBlur Button lost focus
* @fires blrClick Button was clicked
*/
export class BlrTextButton extends kebabCaseAttributes(LitElement) {
export class BlrButtonText extends kebabCaseAttributes(LitElement) {
static styles = [styleCustom];

@property() label = 'Button Label';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export type BlrInputFieldTextEventHandlers = {
* @fires blrTextValueChange InputFieldText value changed
* @fires blrSelect Text in InputFieldText got selected
*/
export class BlrTextInput extends kebabCaseAttributes(LitElement) {
export class BlrInputFieldText extends kebabCaseAttributes(LitElement) {
static styles = [styleCustom];

@property() inputFieldTextId!: string;
Expand Down

0 comments on commit 425be00

Please sign in to comment.