File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/ui-library/src/components/button-group Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export const ButtonGroup = (
114
114
} ;
115
115
116
116
const defaultParams : BlrButtonGroupType = {
117
- size : 'md' ,
117
+ sizeVariant : 'md' ,
118
118
alignment : 'left' ,
119
119
} ;
120
120
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { BlrButtonGroupType } from '.';
6
6
import { BlrTextButtonRenderFunction } from '../text-button/renderFunction' ;
7
7
8
8
const sampleParams : BlrButtonGroupType = {
9
- size : 'md' ,
9
+ sizeVariant : 'md' ,
10
10
alignment : 'left' ,
11
11
} ;
12
12
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ import { TAG_NAME } from './renderFunction';
9
9
export class BlrButtonGroup extends LitElement {
10
10
static styles = [ styleCustom ] ;
11
11
12
- @property ( ) size : ButtonGroupSizesType = 'md' ;
12
+ @property ( ) sizeVariant : ButtonGroupSizesType = 'md' ;
13
13
@property ( ) alignment : ButtonGroupAlignmentType = 'center' ;
14
14
15
15
protected render ( ) {
16
16
const classes = classMap ( {
17
17
'blr-button-group' : true ,
18
18
[ this . alignment ] : this . alignment ,
19
- [ this . size ] : this . size ,
19
+ [ this . sizeVariant ] : this . sizeVariant ,
20
20
} ) ;
21
21
22
22
return html `
You can’t perform that action at this time.
0 commit comments